scholaraio: Skill for Claude Code

.claude/skills/scrub/SKILL.md

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

A review-and-repair workflow for poor metadata in an existing ScholarAIO paper library. Metadata means details such as a paper's title, authors, and publication year.

In plain words
What is it for?
Use it after importing or enriching papers to review bad titles, author names, or years. It is for incremental cleanup, not normal importing, citation refresh, or paper-content extraction.
Why use it?
It helps correct placeholder, garbled, or suspicious metadata without blindly rewriting records that have already been reviewed. A marker records which items were checked.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/zimoliao/scholaraio/scrub/github.svg)](https://agentmods.dev/skills/zimoliao/scholaraio/scrub)
Your own site
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/scrub"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/scrub/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 scrub

Your own site · 80×15
<a href="https://agentmods.dev/skills/zimoliao/scholaraio/scrub"><img src="https://agentmods.dev/badge/skills/zimoliao/scholaraio/scrub.svg" alt="Reviewed on agentmods" width="80" 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,777 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.00040 $0.01777
Opus 5 $0.00020 $0.00889
Sonnet 5 $0.00008 $0.00355
Haiku 4.5 $0.00004 $0.00178

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

Security

Grade A, and why

scrub 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 10d 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/scrub/SKILL.md · 223 lines

How it starts

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

Scrub Metadata

Use this skill when the library contains already-ingested papers whose metadata is still clearly low quality after ingest or enrich, especially for non-standard documents that MinerU or fallback parsers converted successfully but described poorly.

scrub is a review-and-repair workflow, not a blind batch rewrite. It should reuse existing ScholarAIO repair and rename primitives, and it should treat .scrubbed as the durable marker for "reviewed and currently acceptable."

When To Use

Use this skill when the user wants to:

  • clean bad metadata after enrich
  • repair placeholder or garbled titles
  • fix suspicious author names
  • fill in missing years when the paper content supports it
  • incrementally review a large library without reprocessing already-reviewed papers

Do not use this skill for:

  • normal ingest
  • DOI or citation-count refresh
  • paper-content enrichment such as TOC/L3 extraction
  • directory normalization when metadata is already trustworthy and rename alone is enough

Workflow

1. Find unreviewed candidates

Skip papers that already contain .scrubbed.

You can list suspicious, unreviewed papers with a Python helper that resolves papers_dir from the active ScholarAIO config:

python - <<'PY'
from scholaraio.services.audit import list_scrub_suspects
from scholaraio.core.config import load_config

cfg = load_config()

for issue in list_scrub_suspects(cfg.papers_dir):
    print(f"{issue.paper_id}\t{issue.rule}\t{issue.message}")
PY

If the user asked for a broad quality pass, it is also reasonable to start with:

scholaraio audit

Then narrow to papers that are both:

  • not already .scrubbed
  • obviously bad enough to justify manual review

2. Inspect one paper at a time

For candidates with readable metadata, inspect:

scholaraio show "<paper-id>" --layer 1

Before changing anything, record the stable paper UUID shown in the L1 header as stable_id. repair preserves this UUID even when the directory name changes.

Read the full file on GitHub · 223 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. 10d ago First seen · 223 lines · 40 tokens per session scan A edc3d7d9f15c

Subscribe to this mod's changes

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

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

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

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