Opencli scholar
Skill semantic-craft/opencli-stack/plugins/academic-search/skill-variants/claude-code/opencli-scholar
OpenCLI 技能资产与运行时插件适配器的 monorepo(学术检索 + 报销流程)。Monorepo for OpenCLI skill assets and runtime plugin adapters.
npx -y skills add semantic-craft/opencli-stack --skill opencli-scholarAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 13 days oldThe repository was created 13 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Unified opencli-based access to academic databases — CNKI (中国知网), SSRN, Westlaw, arXiv. Routes to the right database given the task (Chinese legal scholarship → CNKI, English social science → SSRN, US case law → Westlaw, CS/ML interdisciplinary → arXiv). Use whenever searching, fetching papers, downloading PDFs, or extracting BibTeX from academic sources.
SKILL.md
4.2 KB, as published. Nobody here has run it
Academic Database Access (cross-cutting)
Overview
Four opencli-wrapped academic databases, one routing layer. All four share the same opencli CLI surface — search, paper detail, BibTeX, PDF download — differing only in the underlying source and its query conventions. Invoke this skill whenever any database operation is needed; the skill selects the right database based on the paper type and language.
When to Use
Any of the following triggers:
- Literature search for a research topic
- Fetching a specific paper's metadata, BibTeX, or PDF
- Bulk-fetching recent papers from a target journal (for
target-venue-calibration) - Verifying a claimed citation exists (composes with
claim-verification) - Monthly literature alert scans (via
/monthly-alertcommand)
Database Selection Matrix
| Language / Field | Database | Reference file |
|---|---|---|
| Chinese legal scholarship (CLSCI) | CNKI 中国知网 | references/cnki-database-access.md |
| English social science, finance, economics | SSRN | references/ssrn-database-access.md |
| US case law, law review articles | Westlaw | references/westlaw-database-access.md |
| CS / ML / AI interdisciplinary | arXiv | references/arxiv-database-access.md |
Routing Decision Tree
What are you looking for?
│
├─▶ 中文法学论文 / CLSCI venue paper
│ → cnki-database-access.md
│ (queries use 主题/关键词/作者, supports 被引 / 下载 sorting)
│
├─▶ English econ/law/social science working paper
│ → ssrn-database-access.md
│ (queries use abstract/title/author, supports RPS/Download sorting)
│
├─▶ US case, circuit opinion, law review article
│ → westlaw-database-access.md
│ (requires authenticated session; case citation format-aware)
│
└─▶ Machine-learning, theory, or interdisciplinary CS paper
→ arxiv-database-access.md
(queries arXiv API; supports category filter like cs.AI, cs.CL)
Common Operations (across all four)
All four database-access references document these common operations:
- Search — keyword / title / author / advanced query
- Paper detail — metadata, abstract, author list
- BibTeX — citation export in the database's native format
- PDF download — where permitted (Westlaw requires session, others open)
Database-specific quirks (authentication, rate limits, citation count proxy) are documented per-database in references/<db>-database-access.md.
Integration
- Composes with:
claim-verification(as the primary verification layer) - Composes with:
literature-context-engineering(for building the paper's literature map) - Composes with:
target-venue-calibration(bulk CNKI fetch for venue profile) - Tools: uses the
opencliCLI adapters installed fromopencli-plugin-academic-searchviabash install.sh - Commands:
/literature-scanand/monthly-alertroute through this skill
Prerequisites
opencliCLI installed and this repository's academic-search adapters installed withbash install.sh- Optional: Zotero MCP configured for cross-referencing imported items
- Westlaw only: authenticated Westlaw session
Output Expectations
- Search results in structured list (title, authors, venue, year, DOI/URL, citation count where available)
- BibTeX blocks in plain text, ready to paste into
.bibfile or Zotero - PDF paths when downloaded (checked into
01_文献/per the init-paper scaffold)
Escalation
- Database adapter returns empty / errors → run
opencli-repair, then check this repository's adapter code and reinstall withbash install.sh - Query term has no matches → widen with synonyms or cross-database (e.g., CNKI miss → try SSRN with English translation)
- Westlaw session expired → re-authenticate via the adapter's login flow