scholaraio: Skill for Claude Code

.claude/skills/explore/SKILL.md

explore is a skill for Claude Code from ZimoLiao/scholaraio. It costs 40 tokens per session (1,126 once invoked), scanned A, original, MIT.

A literature-exploration workflow that fetches research papers from OpenAlex, a public catalogue of scholarly works, and organizes them into separate exploration libraries. It can filter papers by journals, authors, institutions, concepts, keywords, years, source type, and citations, then cluster or search the results.

In plain words
What is it for?
Use it to survey a field, gather papers from selected journals or researchers, find work by topic or keyword, build topic clusters, search an exploration library, and update it with newer papers.
Why use it?
It reduces the manual work of collecting and narrowing a body of research. Incremental updates and DOI-based deduplication help keep an exploration library current without adding the same paper twice.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is ZimoLiao/scholaraio's own configuration. It tells Claude Code how to work on scholaraio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything scholaraio configures →

Part of the scholaraio plugin — 47 skills, 1 hook, 1 MCP server shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to ZimoLiao/scholaraio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ZimoLiao/scholaraio/main/.claude/skills/explore/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ZimoLiao/scholaraio

Made for: Claude Code.

Or install scholaraio, the plugin that ships this one along with the rest of its 47 skills, 1 hook, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for explore

README.md
[![agentmods](https://agentmods.dev/badge/skills/zimoliao/scholaraio/explore.svg)](https://agentmods.dev/skills/zimoliao/scholaraio/explore)
Your own site
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/explore"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/explore.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,126 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.01126
Opus 5 $0.00020 $0.00563
Sonnet 5 $0.00008 $0.00225
Haiku 4.5 $0.00004 $0.00113

Measured 7d ago against content hash e2e7f09a8a3f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

explore scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/explore/SKILL.md · 129 lines

How it starts

The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.

多维文献探索

从 OpenAlex 拉取文献(支持多维过滤),本地嵌入 + BERTopic 聚类 + 多模式搜索,用于文献调研。数据与主库完全隔离。

执行逻辑

拉取论文

支持多种过滤维度,可任意组合:

# 按期刊 ISSN
scholaraio explore fetch --issn <ISSN> --name <名称> [--year-range <起-止>]

# 按研究概念
scholaraio explore fetch --concept <OpenAlex-concept-ID> --name <名称>

# 按作者
scholaraio explore fetch --author <OpenAlex-author-ID> --name <名称>

# 按机构
scholaraio explore fetch --institution <OpenAlex-institution-ID> --name <名称>

# 按关键词
scholaraio explore fetch --keyword "acoustic metamaterial" --name <名称>

# 多维组合 + 高引过滤
scholaraio explore fetch --institution I123 --year-range 2020-2025 --min-citations 50 --name <名称>

# 增量更新(追加新论文,DOI 去重)
scholaraio explore fetch --issn 0022-1120 --name jfm --incremental

全部过滤参数:

  • --issn — 期刊 ISSN
  • --concept — OpenAlex concept ID
  • --topic-id — OpenAlex topic ID
  • --author — OpenAlex author ID
  • --institution — OpenAlex institution ID
  • --keyword — 标题/摘要关键词搜索
  • --source-type — 来源类型(journal/conference/repository)
  • --oa-type — 论文类型(article/review 等)
  • --min-citations — 最小引用量
  • --year-range — 年份过滤(如 2020-2025)
  • --name — 探索库名称(默认从 filter 推导)
  • --incremental — 增量更新模式

常用期刊 ISSN:

  • JFM (Journal of Fluid Mechanics): 0022-1120
  • PoF (Physics of Fluids): 1070-6631
  • JCP (Journal of Computational Physics): 0021-9991
  • IJMF (Int J Multiphase Flow): 0301-9322

生成嵌入

scholaraio explore embed --name <名称> [--rebuild]

主题聚类

scholaraio explore topics --name <名称> --build
scholaraio explore topics --name <名称> --rebuild --nr-topics <N>
scholaraio explore topics --name <名称>
scholaraio explore topics --name <名称> --topic <ID> [--limit N]

搜索(三种模式)

# 语义搜索(默认)
scholaraio explore search --name <名称> "<查询词>" [--limit N]

# 关键词搜索(FTS5)
scholaraio explore search --name <名称> "<查询词>" --mode keyword

# 融合搜索(语义 + 关键词 RRF 排序)
scholaraio explore search --name <名称> "<查询词>" --mode unified

生成可视化

scholaraio explore viz --name <名称>

列出所有探索库

scholaraio explore list

Read the full file on GitHub · 129 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 129 lines · 40 tokens per session scan A e2e7f09a8a3f

Subscribe to this mod's changes

explore is a skill published in the GitHub repository ZimoLiao/scholaraio (569 stars, last pushed 7d ago), licensed MIT. It adds 40 tokens to every session and 1,126 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

infrastructure-validation

Skill for the validation infrastructure module providing PDF validation, markdown validation, output integrity checks, link verification, documentation audits, issue categorization, and repository scanning. Use when validating research outputs, checking document quality, running audits, or verifying cross-references.

docxology/template · 54 tokens

provenance-dag

Content-addressed provenance DAG for research lineage tracking. Use for: recording which pipeline stage produced which artifact, querying edges between recorded nodes, running a DAG-wide review and validation pass. CLI: python -m infrastructure.provenance {list,record-artifact,review,validate}. Library…

docxology/template · 103 tokens

scientific-connectors

Search 8+ scientific databases through a uniform Connector interface. Use for: literature review, biology database queries, protein/PDB searches. CLI: python -m infrastructure.search.connectors {list-dbs,search}. Config: set queries in projects/{name}/manuscript/config.yaml connectorsearch: block. Orchestrator…

docxology/template · 87 tokens

infrastructure-search-literature

Paperclip-style multi-source literature search across arXiv, Crossref, local JSON corpora, and (opt-in) the Paperclip API. Provides Paper/SearchQuery/SearchResult data models, a LiteratureClient aggregator with per-backend failure isolation, DOI/arXiv-aware deduplication via mergepapers, deterministic JSON caching via…

docxology/template · 123 tokens

template-formal

Strongly-typed multiagent ant-robot colony exemplar — ADTs, session-typed protocols, affine-discipline resource handles, storage-as-functor framing, Active-Inference-flavored decision loop, mypy-as-oracle negative controls.

docxology/template · 53 tokens

template-academic-paper-reviewer

Read-only manuscript review, methodology review, re-review, and calibration workflow for template projects. USE WHEN the user asks for peer review, referee-style critique, methods/statistics review, or verification that revisions addressed prior comments.

docxology/template · 52 tokens