Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add CanXiangCC/aminer-open-skill/plugin install aminer-daily-paperWrote 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.
[](https://agentmods.dev/commands/canxiangcc/aminer-open-skill/aminer-dp)<a href="https://agentmods.dev/commands/canxiangcc/aminer-open-skill/aminer-dp"><img src="https://agentmods.dev/badge/commands/canxiangcc/aminer-open-skill/aminer-dp/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.
<a href="https://agentmods.dev/commands/canxiangcc/aminer-open-skill/aminer-dp"><img src="https://agentmods.dev/badge/commands/canxiangcc/aminer-open-skill/aminer-dp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00015 | $0.00642 |
| Opus 5 | $0.00008 | $0.00321 |
| Sonnet 5 | $0.00003 | $0.00128 |
| Haiku 4.5 | $0.00002 | $0.00064 |
Grade A, and why
aminer-dp 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- aminer-dp — 100% identical, 2 lines differ
How it starts
The opening of the file, as written. The whole thing — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/aminer-dp — AMiner Daily Paper
User invoked the AMiner daily paper recommendation skill with the following arguments:
$ARGUMENTS
Your task
Strictly follow ${CLAUDE_PLUGIN_ROOT}/SKILL.md (English) or ${CLAUDE_PLUGIN_ROOT}/SKILL.zh.md (Chinese). Key rules summarized below — but read the SKILL file if you need detail.
1. Pre-flight
Verify the AMINER_API_KEY env var is set:
[ -z "${AMINER_API_KEY+x}" ] && echo "AMINER_API_KEY missing" || echo "AMINER_API_KEY exists"
If missing, stop and tell the user to set it (token from https://open.aminer.cn). Do not call the script.
2. Parse $ARGUMENTS into structured fields
Extract any of: topics, scholar / author_name, org / author_org, papers, size, language_sort.
Critical rules — do NOT violate:
topics: keep the user's exact wording. If they wrote具身智能, 环境保护, pass those Chinese strings through. Never translate them into unrelated English fields (e.g. don't map them to "Knowledge Distillation" or "Smart agriculture"). If you add an English alias, it must be a faithful translation of the same concept (e.g. 具身智能 → embodied intelligence).language_sort: includezhorenonly when the user explicitly asks for Chinese-/English-biased ranking (e.g. "优先中文论文" / "prefer English papers"). Otherwise omit it entirely.scholar/org: use English-canonical names where reasonable (e.g.Jie Tang,Tsinghua University). If a Chinese name is ambiguous and no org is given, ask the user before guessing.- If
$ARGUMENTSis empty, call the script with no extra fields — the API will return personalized recs based on the API key.
3. Run the entrypoint
Reconstruct the trigger and execute (one call per topic group; ≤3 closely related terms per group):
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/handle_trigger.py" \
--base-dir "${CLAUDE_PLUGIN_ROOT}" \
--text "/aminer-dp <reconstructed fields>"
4. Present the result
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.
- 10d ago First seen · 53 lines · 15 tokens per session scan A 38b729e97892
aminer-dp is a command published in the GitHub repository CanXiangCC/aminer-open-skill (60 stars, last pushed 2d ago), licensed MIT. It adds 15 tokens to every session and 642 once invoked, about $0.0001 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.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.