scholaraio: Skill for Claude Code

.claude/skills/enrich/SKILL.md

enrich is a skill for Claude Code from ZimoLiao/scholaraio. It costs 34 tokens per session (791 once invoked), scanned A, original, MIT.

A tool for enriching a research-paper library with extracted metadata. It can derive a paper’s table of contents, conclusion section, or missing abstract from stored paper content.

In plain words
What is it for?
Extracting paper outlines and conclusions, backfilling abstracts, reprocessing individual papers, and enriching an entire collection.
Why use it?
It helps fill gaps in paper records and makes large libraries easier to browse. It also supports reprocessing selected papers or processing the whole library with progress and retry handling.

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/enrich/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 enrich

README.md
[![agentmods](https://agentmods.dev/badge/skills/zimoliao/scholaraio/enrich/github.svg)](https://agentmods.dev/skills/zimoliao/scholaraio/enrich)
Your own site
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/enrich"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/enrich/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for enrich

Your own site · 80×15
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/enrich"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/enrich.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 791 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00034 $0.00791
Opus 5 $0.00017 $0.00396
Sonnet 5 $0.00007 $0.00158
Haiku 4.5 $0.00003 $0.00079

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

Security

Grade A, and why

enrich 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 11d 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/enrich/SKILL.md · 73 lines

What it actually says

富化论文内容

通过 LLM 提取论文的目录结构(TOC)或结论段(L3),丰富论文元数据。

注意import-endnote / import-zotero 导入时默认自动执行 toc + l3 + abstract backfill。以下命令用于选择性富化(如重新提取、补充特定论文、或处理全库)。

引用量补查:使用 /citations skill 中的 scholaraio refetch 命令。

执行逻辑

  1. 解析用户意图:

    • 提取目录:使用 enrich-toc
    • 提取结论:使用 enrich-l3
    • 补全摘要:使用 backfill-abstract(从 .md 提取 + LLM 校验)
  2. 确定处理范围:

    • 指定论文 ID → 处理单篇
    • 用户说"全部" → 使用 --all
    • 可选 --force 覆盖已有结果

批量模式说明:

  • --all 会按 config.llm.concurrency 做多篇并发处理
  • 并发只发生在“论文之间”,单篇内部提取逻辑不拆分并发
  • 批量模式会对单篇失败自动做指数退避重试
  1. 执行命令:

提取目录:

scholaraio enrich-toc [<paper-id> | --all] [--force] [--inspect]

提取结论:

scholaraio enrich-l3 [<paper-id> | --all] [--force] [--inspect] [--max-retries N]

补全摘要:

scholaraio backfill-abstract [--dry-run] [--doi-fetch]

参数说明:

  • --inspect — 展示提取过程详情(调试用)
  • --max-retries N — L3 单篇提取最大重试次数(默认 2);--all 时也作为每篇论文的批量重试预算
  • --doi-fetch — 从出版商网页抓取官方 abstract(覆盖现有,需联网)
  1. 展示处理结果。
    • enrich-toc 现在会显示开始提取、是否成功、以及提取出的 TOC 节数
    • 单篇处理不再只是打印论文名
    • 批量处理会显示并发 worker 数,以及最终的成功 / 失败 / 跳过汇总

示例

用户说:"帮我提取所有论文的结论" → 执行 enrich-l3 --all

用户说:"重新提取 Smith-2023-Survey 的目录" → 执行 enrich-toc "Smith-2023-Survey" --force

用户说:"帮我看看这篇论文 TOC 提取成功没有" → 执行 enrich-toc "<paper-id>" --force,并根据终端输出确认 TOC 提取完成: N 节

用户说:"补全摘要" → 执行 backfill-abstract,然后提示 embed --rebuild

用户说:"补查引用量" → 转交 /citations skill(使用 refetch 命令)

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. 11d ago First seen · 73 lines · 34 tokens per session scan A f1ffe37edf84

Subscribe to this mod's changes

enrich is a skill published in the GitHub repository ZimoLiao/scholaraio (570 stars, last pushed 11d ago), licensed MIT. It adds 34 tokens to every session and 791 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

research-workflow

This skill should be used when the user asks research questions, needs information lookup, wants comparisons, asks "what is", "how does", "explain", "compare", "best practices", "latest developments", or any query requiring web search, documentation lookup, or synthesis of multiple sources. Provides optimal routing…

yoloshii/gigaxity-deep-research · 102 tokens

thoughtdag

Open the current Codex session in ThoughtDAG (desktop app direct; local bridge fallback — data never leaves this machine), or query local session history with why / find / recall.

chenxiachan/thoughtdag · 39 tokens

gigaxity-deep-research

Deep research MCP server wrapping Qwen3-30B-A3B-Thinking via OpenRouter. Use when an agent needs cross-source synthesis with citations, exploratory expansion of an unfamiliar topic, chain-of-thought reasoning over evidence, or fast conversational lookups grounded in live web search. Exposes six MCP tools — two…

yoloshii/gigaxity-deep-research · 102 tokens

template-agentic-use

Agentic-use and skill-routing workflow for the Research Project Template. USE WHEN discovering relevant skills, making template easier for agents to navigate, auditing docs/prompts skill coverage, checking .cursor/skillmanifest.json, evaluating external skills, reviewing external agentic operating models such as…

docxology/template · 92 tokens

infrastructure-overview

Top-level skill for the research template infrastructure layer. Use in Cursor, Claude Code, or similar agents when editing or importing anything under infrastructure/, understanding the two-layer architecture, or wiring build/validation/rendering/publishing. Covers module discovery, import patterns, thin…

docxology/template · 80 tokens

infrastructure-search

Discovery utilities. Hosts subpackages — literature for Paperclip-style multi-source academic search; exa for Exa-backed web search, contents, answers, and find-similar; monid for the Monid gateway (discover/inspect/run) plus offline USD-per-1k search API pricing; and deepresearch for provider-neutral long-running…

docxology/template · 121 tokens