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 yipng05-max/-skills --skill paper-analyzergit clone --depth 1 https://github.com/yipng05-max/-skillsWrote 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/yipng05-max/-skills/paper-analyzer)<a href="https://agentmods.dev/skills/yipng05-max/-skills/paper-analyzer"><img src="https://agentmods.dev/badge/skills/yipng05-max/-skills/paper-analyzer.svg" alt="Measured on agentmods" 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.00140 | $0.01482 |
| Opus 5 | $0.00070 | $0.00741 |
| Sonnet 5 | $0.00028 | $0.00296 |
| Haiku 4.5 | $0.00014 | $0.00148 |
Grade A, and why
paper-analyzer 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 9d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
subprocess.run(["python3", "<skill_path>/scripts/export_excel.py", How it starts
The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.
论文结构化拆解分析
基于12个阅读要素对学术论文进行结构化拆解,结果保存为Excel文件存储于论文所在文件夹中。
工作流程
1. 读取论文
- 使用 Read 工具读取用户提供的论文文件(支持 PDF、Word 等格式)
- 对于 PDF 文件,如果 Read 工具无法直接读取,使用
pdftotext命令提取文本 - 对于 PDF 文件,如果页数较多,先读取前几页了解结构,再分批读取全文
- 确保完整阅读论文的各个部分:摘要、引言、文献综述、方法、结果、讨论、结论
- 记录论文所在的文件夹路径,用于后续保存Excel文件
2. 按12要素提取信息
阅读论文后,逐一提取12个阅读要素。要素定义详见 references/reading_elements.md。
提取要点:
- 研究背景: 从引言开头提取宏观背景,区分实践背景、理论背景、政策背景
- 研究问题: 识别核心研究问题,判断其类型(what/why/how/should)
- 研究结论: 从结论和讨论部分提取对研究问题的直接回答
- 文献综合: 从文献综述部分梳理作者如何分类整理已有研究
- 文献批评: 提取作者对已有研究的评价,重点关注研究gap的表述
- 研究方法: 从方法论部分提取具体研究方法和研究设计
- 理论视角与理论框架: 识别论文采用的理论基础和分析框架
- 一致性发现: 从讨论部分提取与已有研究一致的发现
- 不一致性发现: 从讨论部分提取与已有研究不一致的发现
- 研究贡献: 提取作者自述的研究贡献(新方法/新材料/新理论/新观点/新概念)
- 研究不足: 从结论或讨论的局限性部分提取
- 未来研究展望: 提取作者对后续研究的建议
如论文中某要素未明确提及,标注"论文未明确提及"并尝试基于论文内容进行合理推断,推断内容用括号标注。
3. 保存为Excel文件
分析完成后,将结果保存为Excel文件,存放于被分析论文所在的文件夹中。
使用 scripts/export_excel.py 脚本生成Excel。先用 Python 将分析数据写入临时JSON文件,再调用脚本。
单篇论文
生成文件名:论文拆解_<论文简称>.xlsx,包含一个工作表。
构造JSON数据并调用脚本:
python3 <skill_path>/scripts/export_excel.py --mode single --output "<论文所在文件夹>/论文拆解_<论文简称>.xlsx" --json '<json_string>'
JSON结构:
{
"title": "论文标题",
"author": "作者",
"source": "期刊/来源",
"year": "年份",
"elements": {
"研究背景": "内容...",
"研究问题": "内容...",
"研究结论": "内容...",
"文献综合": "内容...",
"文献批评": "内容...",
"研究方法": "内容...",
"理论视角与理论框架": "内容...",
"一致性发现": "内容...",
"不一致性发现": "内容...",
"研究贡献": "内容...",
"研究不足": "内容...",
"未来研究展望": "内容..."
}
}
多篇论文
生成文件名:论文拆解汇总_<N>篇.xlsx,包含每篇论文的独立工作表 + 最后一个"横向对比汇总"工作表。
python3 <skill_path>/scripts/export_excel.py --mode multi --output "<论文所在文件夹>/论文拆解汇总_<N>篇.xlsx" --json '<json_string>'
JSON结构:
{
"papers": [
{ "title": "...", "author": "...", "source": "...", "year": "...", "elements": { ... } },
...
],
"summary": {
"paper_labels": ["论文A简称", "论文B简称", ...],
"elements": {
"研究背景": ["论文A精简版", "论文B精简版", ...],
...12个要素各一个数组...
}
}
}
What ships with it
2 files 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.
- 9d ago First seen · 128 lines · 140 tokens per session scan A 0cbb0fcea717
paper-analyzer is a skill published in the GitHub repository yipng05-max/-skills (285 stars, last pushed 4mo ago), licensed MIT. It adds 140 tokens to every session and 1,482 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
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…
baoyu-youtube-transcript
A tool for downloading the written captions, subtitles, chapter information, speaker labels, and cover image from a YouTube video using its URL or ID.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
read
Reads URLs and PDFs by fetching source content, defaulting to concise summaries for plain read requests and clean Markdown when asked to convert, save, quote, cite, or feed downstream work. Use when users ask in any language to read, fetch, check, summarize, quote, cite, convert, or save a URL or PDF. Not for local…
overleaf-sync
A two-way connection between a local paper folder and Overleaf, a web-based LaTeX editor for writing research papers. It lets you move changes between the local files and the shared Overleaf project.