Academic Research Hub
Overview
Academic Research Hub provides unified access to multiple academic databases (arXiv, PubMed, Semantic Scholar, etc.) for searching papers, downloading PDFs, extracting citations, and generating bibliographies. It is the recommended tool for literature review and reference management in NeuroClaw.
Prerequisite: Install OpenClawCLI (Windows, MacOS)
Installation
Best Practices:
# Standard installation
pip install arxiv scholarly pubmed-parser semanticscholar requests
# If you encounter permission errors, use a virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install arxiv scholarly pubmed-parser semanticscholar requests
Never use --break-system-packages as it can damage your system's Python installation.
Quick Reference
| Task |
Command |
| Search arXiv |
python scripts/research.py arxiv "quantum computing" |
| Search PubMed |
python scripts/research.py pubmed "covid vaccine" |
| Search Semantic Scholar |
python scripts/research.py semantic "machine learning" |
| Download papers |
python scripts/research.py arxiv "topic" --download |
| Get citations |
python scripts/research.py arxiv "topic" --citations |
| Generate bibliography |
python scripts/research.py arxiv "topic" --format bibtex |
| Save results |
python scripts/research.py arxiv "topic" --output results.json |
Core Features
- Multi-source search (arXiv, PubMed, Semantic Scholar, Google Scholar)
- Full-text PDF download
- Citation extraction (BibTeX, RIS, JSON, plain text)
- Comprehensive metadata retrieval (title, authors, abstract, DOI, citation count, etc.)
When to Call This Skill
- Need to search for recent papers on a specific topic
- Build literature reviews or bibliographies
- Download PDFs for local reading
- Extract citations for
paper-writing
- Use inside
research-idea or method-design workflows
Benchmark Adapter Guidance
Use this skill as the preferred retrieval backbone for benchmark-style academic search tasks, but do not reimplement a full multi-source aggregator unless the task truly needs unsupported sources or an output schema the script does not emit directly.
- Reuse
scripts/research.py first for the sources it already supports: arxiv, pubmed, and semantic.
- Treat the script outputs as normalized retrieval inputs, then add only a thin adapter layer for:
- benchmark-specific file naming and output directories,
- light field renaming or schema normalization,
- per-task date-window filtering,
- source-level merge/dedup metadata,
- degraded-run logging when one source is unavailable.
- Do not replace the whole workflow with a brand-new all-in-one crawler if the task can be satisfied by composing this skill with a small adapter.
- If a task requires an unsupported source such as OpenReview, keep this skill for the supported sources and implement only the missing source plus the final merge/export layer.
- Preferred pattern for benchmark tasks:
- call
research.py separately for each supported source,
- cache or save raw source outputs,
- normalize to the benchmark schema,
- add unsupported sources only as narrow supplemental branches,
- export one final task-specific JSON artifact.
Benchmark-Facing Default Mainline
For tasks like recent multi-platform paper search:
- Use
research.py arxiv ... --output ...json.
- Use
research.py pubmed ... --output ...json.
- Use
research.py semantic ... --output ...json.
- Apply a thin adapter script to enforce:
- last-N-days filtering,
- newest-first sorting,
- benchmark key names such as
semantic_scholar,
- task-level metadata and degraded status,
- final merged export path.
- Add OpenReview only if the task explicitly requires it and keep failure there as an expected degraded branch rather than rebuilding the entire supported-source stack.
Complementary / Related Skills
multi-search-engine → general web/academic search
Reference
- Official documentation and APIs: arXiv, PubMed, Semantic Scholar
- OpenClawCLI: https://clawhub.ai/
Created At: 2026-03-25 18:20 HKT
Last Updated At: 2026-03-25 18:20 HKT
Author: chengwang96
1---2name: academic-research-hub3description: Use this skill when users need to search academic papers, download research documents, extract citations, or gather scholarly information. Triggers include: requests to "find papers on", "search research about", "download academic articles", "get citations for", or any request involving academic databases like arXiv, PubMed, Semantic Scholar, or Google Scholar. Also use for literature reviews, bibliography generation, and research discovery.4license: Proprietary5---6# Academic Research Hub
7
8## Overview
9
10Academic Research Hub provides unified access to multiple academic databases (arXiv, PubMed, Semantic Scholar, etc.) for searching papers, downloading PDFs, extracting citations, and generating bibliographies. It is the recommended tool for literature review and reference management in NeuroClaw.
11
12**Prerequisite:** Install [OpenClawCLI](https://clawhub.ai/) (Windows, MacOS)
13
14## Installation
15
16**Best Practices:**
17
18```bash
19# Standard installation
20pip install arxiv scholarly pubmed-parser semanticscholar requests
21
22# If you encounter permission errors, use a virtual environment
23python -m venv venv
24source venv/bin/activate # On Windows: venv\Scripts\activate
25pip install arxiv scholarly pubmed-parser semanticscholar requests
26```
27
28**Never use `--break-system-packages`** as it can damage your system's Python installation.
29
30## Quick Reference
31
32| Task | Command |
33|-------------------------|------------------------------------------------------|
34| Search arXiv | `python scripts/research.py arxiv "quantum computing"` |
35| Search PubMed | `python scripts/research.py pubmed "covid vaccine"` |
36| Search Semantic Scholar | `python scripts/research.py semantic "machine learning"` |
37| Download papers | `python scripts/research.py arxiv "topic" --download` |
38| Get citations | `python scripts/research.py arxiv "topic" --citations` |
39| Generate bibliography | `python scripts/research.py arxiv "topic" --format bibtex` |
40| Save results | `python scripts/research.py arxiv "topic" --output results.json` |
41
42## Core Features
43
44- Multi-source search (arXiv, PubMed, Semantic Scholar, Google Scholar)
45- Full-text PDF download
46- Citation extraction (BibTeX, RIS, JSON, plain text)
47- Comprehensive metadata retrieval (title, authors, abstract, DOI, citation count, etc.)
48
49## When to Call This Skill
50
51- Need to search for recent papers on a specific topic
52- Build literature reviews or bibliographies
53- Download PDFs for local reading
54- Extract citations for `paper-writing`
55- Use inside `research-idea` or `method-design` workflows
56
57## Benchmark Adapter Guidance
58
59Use this skill as the preferred retrieval backbone for benchmark-style academic search tasks, but do not reimplement a full multi-source aggregator unless the task truly needs unsupported sources or an output schema the script does not emit directly.
60
61- Reuse `scripts/research.py` first for the sources it already supports: `arxiv`, `pubmed`, and `semantic`.
62- Treat the script outputs as normalized retrieval inputs, then add only a thin adapter layer for:
63 - benchmark-specific file naming and output directories,
64 - light field renaming or schema normalization,
65 - per-task date-window filtering,
66 - source-level merge/dedup metadata,
67 - degraded-run logging when one source is unavailable.
68- Do not replace the whole workflow with a brand-new all-in-one crawler if the task can be satisfied by composing this skill with a small adapter.
69- If a task requires an unsupported source such as OpenReview, keep this skill for the supported sources and implement only the missing source plus the final merge/export layer.
70- Preferred pattern for benchmark tasks:
71 1. call `research.py` separately for each supported source,
72 2. cache or save raw source outputs,
73 3. normalize to the benchmark schema,
74 4. add unsupported sources only as narrow supplemental branches,
75 5. export one final task-specific JSON artifact.
76
77### Benchmark-Facing Default Mainline
78
79For tasks like recent multi-platform paper search:
80
811. Use `research.py arxiv ... --output ...json`.
822. Use `research.py pubmed ... --output ...json`.
833. Use `research.py semantic ... --output ...json`.
844. Apply a thin adapter script to enforce:
85 - last-N-days filtering,
86 - newest-first sorting,
87 - benchmark key names such as `semantic_scholar`,
88 - task-level metadata and degraded status,
89 - final merged export path.
905. Add OpenReview only if the task explicitly requires it and keep failure there as an expected degraded branch rather than rebuilding the entire supported-source stack.
91
92## Complementary / Related Skills
93
94- `multi-search-engine` → general web/academic search
95
96## Reference
97
98- Official documentation and APIs: arXiv, PubMed, Semantic Scholar
99- OpenClawCLI: https://clawhub.ai/
100
101---
102Created At: 2026-03-25 18:20 HKT
103Last Updated At: 2026-03-25 18:20 HKT
104Author: chengwang96