Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add AkaliKong/PaperClaw --skill read-arxiv-papergit clone --depth 1 https://github.com/AkaliKong/PaperClawWrote 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/skills/akalikong/paperclaw/read-arxiv-paper)<a href="https://agentmods.dev/skills/akalikong/paperclaw/read-arxiv-paper"><img src="https://agentmods.dev/badge/skills/akalikong/paperclaw/read-arxiv-paper/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/skills/akalikong/paperclaw/read-arxiv-paper"><img src="https://agentmods.dev/badge/skills/akalikong/paperclaw/read-arxiv-paper.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.00058 | $0.03698 |
| Opus 5 | $0.00029 | $0.01849 |
| Sonnet 5 | $0.00012 | $0.00740 |
| Haiku 4.5 | $0.00006 | $0.00370 |
Grade A, and why
read-arxiv-paper scanned grade A with 1 finding 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 12d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -L "https://arxiv.org/src/${ARXIV_ID}" -o "${CACHE_DIR}/source.tar.gz" How it starts
The opening of the file, as written. The whole thing — 355 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Read & Analyze arXiv Paper
This skill deeply reads an arXiv paper and produces a structured knowledge card, tailored for a PhD researcher in Generative Recommendation & LLM fields.
🌐 语言要求:知识卡片中所有自然语言内容(TL;DR、贡献总结、方法描述、实验分析、评论等)必须使用中文撰写。仅 BibTeX、论文标题原文、专有术语等保留英文。
⚠️ 关键规则:严格单篇精读 & 质量守卫
规则 1:一次只精读一篇论文
- 每次对话只处理一篇论文。如果用户要求批量精读多篇论文,必须拒绝并建议用户逐篇提交。
- 回复示例:"为保证精读质量,建议每次对话只精读一篇论文。请先告诉我要精读哪一篇,其余论文可以在后续对话中逐一精读。"
- 唯一例外:用户明确只需要"速览/快速总结"(非精读)时,可以处理多篇,但此时不生成完整知识卡片。
规则 2:反省略质量守卫
- 禁止跳过或省略论文的任何关键章节。必须完整阅读 Abstract、Introduction、Method、Experiments、Conclusion 五个核心部分。
- 禁止因上下文空间不足而默默降低输出质量。如果发现论文内容过长(如单文件 > 100KB),应主动告知用户并采取以下策略:
- 优先完整读取 Method 和 Experiments 部分
- 对 Related Work 可以略读
- 但绝不能跳过实验结果表格和消融实验
- 知识卡片的每个章节都必须包含具体的、有实质内容的信息,禁止使用笼统的概括性语句代替具体描述。
- 如果某个章节确实无法填充(如论文没有消融实验),显式标注"论文未提供",而不是默默跳过。
Part 1: Identify the Paper
You will receive one of:
- A full arXiv URL:
https://arxiv.org/abs/2501.07372 - A short arXiv ID:
2501.07372 - A paper entry from a daily report (which already contains title, authors, abstract)
Normalize to extract the arxiv_id (e.g., 2501.07372).
Detect if it's a top-lab paper (auto deep-read regardless of score):
- Top labs include: Google DeepMind, Google Brain, OpenAI, Meta AI (FAIR), Microsoft Research, Apple ML, Anthropic, Mistral, Cohere, Amazon Science, Alibaba DAMO/Tongyi, Tencent AI Lab, ByteDance Research, Baidu Research, Huawei Noah's Ark, Salesforce Research, Adobe Research, NVIDIA Research, CMU, MIT, Stanford, Berkeley, Oxford, Cambridge, ETH Zurich, Tsinghua, PKU, Zhejiang University, SJTU, Fudan, RUC, USTC, NUS, NTU
- If the paper is from any of the above, mark it as
[TOP-LAB]and proceed to full deep-read unconditionally.
Part 2: Download the Paper Source
Step 2a: Try TeX source first (preferred)
# Download TeX source
ARXIV_ID="2501.07372"
CACHE_DIR="/data/workspace/research/cache/${ARXIV_ID}"
mkdir -p "${CACHE_DIR}"
# Check if already downloaded
if [ ! -f "${CACHE_DIR}/source.tar.gz" ]; then
curl -L "https://arxiv.org/src/${ARXIV_ID}" -o "${CACHE_DIR}/source.tar.gz"
fi
# Unpack
cd "${CACHE_DIR}" && tar -xzf source.tar.gz 2>/dev/null || true
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 12d ago First seen · 355 lines · 58 tokens per session scan A cedba9c1765a
read-arxiv-paper is a skill published in the GitHub repository AkaliKong/PaperClaw (22 stars, last pushed 6mo ago), licensed MIT. It adds 58 tokens to every session and 3,698 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
instrument-data-to-allotrope
Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…
exploratory-data-analysis
Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…
matlab
Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.
phylogenetics
Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.
research-engineer
An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.
mapping-to-snomed
Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…