/install literature-manager
Literature Manager
Manage academic literature collections: search → download → convert → organize → verify.
Dependencies
pdftotext(poppler-utils) — PDF text extractioncurl— downloadingpython3— JSON processing in auditfile(coreutils) — PDF validationuvx markitdown[pdf](optional) — fallback PDF→MD converter (note: plainuvx markitdowndoes NOT work for PDFs — must useuvx markitdown[pdf])
Quick Start
# Download a single paper by DOI
bash scripts/download.sh "10.1038/s41592-024-02200-1" output_dir/
# Convert PDF to markdown
bash scripts/convert.sh paper.pdf output.md
# Verify a single PDF+MD pair
bash scripts/verify.sh paper.pdf paper.md
# Full audit of a references/ folder
bash scripts/audit.sh /path/to/references/
Workflow
1. Search
Use web_fetch on Google Scholar:
https://scholar.google.com/scholar?q=QUERY&as_ylo=YEAR
Extract: title, authors, year, journal, DOI, PDF links.
For each result, identify the best open-access PDF source (see Download Strategy).
2. Download
Run scripts/download.sh \x3CDOI_or_URL> \x3Coutput_dir/> per paper. The script tries sources in order:
- Direct publisher PDF (Nature, eLife, Frontiers, PNAS, bioRxiv, arXiv)
- EuropePMC (
PMC_ID→ PDF) - bioRxiv/arXiv preprint
- Sci-Hub —
https://sci-hub.box/\x3CDOI>(use when publisher is paywalled)
# Sci-Hub download example:
curl -L "https://sci-hub.box/10.1038/nature12345" -o paper.pdf
⚠️ Legal note: Sci-Hub may violate publisher terms of service or copyright law in some jurisdictions. Use only if you understand and accept the legal implications in your context.
If all sources fail (including Sci-Hub), flag as permanent paywall. Provide the user with the DOI and ask for manual download.
3. Convert
Run scripts/convert.sh \x3Cinput.pdf> \x3Coutput.md>. Uses pdftotext (reliable) with uvx markitdown[pdf] as fallback.
# Correct markitdown command for PDFs:
uvx markitdown[pdf] input.pdf > output.md
# ⚠️ The following will NOT work for PDFs (missing [pdf] extra):
# uvx markitdown input.pdf
Prefer uvx markitdown[pdf] over pdftotext when full fidelity (tables, figures captions) matters.
4. Organize
Standard folder structure:
references/
├── README.md # Human index (summaries per category)
├── index.json # Machine index (structured metadata)
├── RESOURCES.md # Code repos + datasets
├── resources.json # Structured version
├── \x3Ccategory-1>/
│ ├── papers/ # PDFs
│ └── markdown/ # Converted text
└── \x3Ccategory-N>/
├── papers/
└── markdown/
Categories are user-defined. Number-prefix for sort order (e.g., 01-theoretical-frameworks/).
index.json schema per paper
{
"id": "short_id",
"title": "Full title",
"authors": ["Author1", "Author2"],
"year": 2024,
"journal": "Journal Name",
"doi": "10.xxxx/...",
"category": "category_name",
"subcategory": "optional",
"pdf_path": "category/papers/filename.pdf",
"markdown_path": "category/markdown/filename.md",
"tags": ["tag1", "tag2"],
"one_line_summary": "English one-liner",
"key_concepts": ["concept1"],
"relevance_to_project": "English description"
}
README.md pattern
Per category section, per paper: title, authors, year, journal, DOI, short summary in user's language.
4b. DOI-Based Filenames & Path Mapping
Downloaded files are often named using DOI format rather than AuthorYear:
10-1038_ncomms3018.md # DOI: 10.1038/ncomms3018
10-1016_j-neuron-2015-03-034.md
When markdown_path entries in index.json become stale (e.g., after folder reorganization), maintain a separate mapping file:
// temp/paper_md_mapping.json
{
"author2024_keyword": "references/new-downloads/10-1038_s41592-024-02200-1.md",
...
}
To build this mapping: cross-reference each paper's DOI in index.json against actual files on disk. Use find + Python to automate.
index.json Known Pitfalls
id: nullcorruption: If many entries haveid=nulland share the samepdf_path, the index was likely corrupted during a batch write. Rebuild from actual files on disk.- DOI errors: Verify DOIs resolve correctly — typos in DOI fields are common (e.g., wrong suffix digits). Always cross-check with publisher page.
- Dead
markdown_path: After restructuring folders,markdown_pathin index.json often points to old locations. Use the mapping file above as the source of truth.
5. Verify
Run scripts/audit.sh \x3Creferences_dir/> for full verification:
- Every PDF is valid (
file -b= PDF) - Every PDF title matches filename (
pdftotext | head) - Every PDF has matching markdown (and vice versa)
- index.json is valid, complete, paths exist, no duplicate IDs
- README.md stats match actual counts
6. Collect Resources
For tool/method papers, find GitHub repos and public datasets. Store in RESOURCES.md + resources.json.
Sub-agent Strategy
For large batches, parallelize:
- Download: 1 sub-agent per batch of ~5-8 papers
- Organize: 1 sub-agent to build indexes
- Verify: 1 independent sub-agent (never the same as organizer)
Always use a separate sub-agent for verification (QC should not self-grade).
⚠️ Sub-agent Rules (Learned from Practice)
- One batch at a time — do not spawn multiple note-writing batches simultaneously; LLM rate limits will cause silent failures
- Set a cron monitor whenever spawning long-running agents — agents can fail silently without triggering auto-announce; cron catches this
- Cron monitor pattern:
1. Spawn agent(s) 2. Immediately set a cron job (every 10-15 min, isolated agentTurn) → Check if expected output files exist → Re-spawn failed agents → When all complete: announce + delete cron 3. After task finishes, confirm cron was removed
Adding Papers Incrementally
To add papers to an existing collection:
- Download + convert new papers into correct category folder
- Append entries to index.json
- Update README.md stats
- Run audit to verify consistency
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install literature-manager - 安装完成后,直接呼叫该 Skill 的名称或使用
/literature-manager触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Literature Manager 是什么?
Search, download, convert, organize, and audit academic literature collections. Use when asked to find papers, build a literature library, add papers to refe... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 905 次。
如何安装 Literature Manager?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install literature-manager」即可一键安装,无需额外配置。
Literature Manager 是免费的吗?
是的,Literature Manager 完全免费(开源免费),可自由下载、安装和使用。
Literature Manager 支持哪些平台?
Literature Manager 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Literature Manager?
由 IsonaEi(@isonaei)开发并维护,当前版本 v1.1.1。