con un clic
paper-update
论文增量更新 — 更新已导入的论文版本,同步更新关联的概念页、方法页和作者页。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
论文增量更新 — 更新已导入的论文版本,同步更新关联的概念页、方法页和作者页。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Entry point for new users — guides through initialization, architecture review, and cleanup. Use when the user first opens this project or says "开始" / "初始化" / "怎么用".
Wiki 增强研究构思 — 基于 wiki 知识库的研究想法生成。扫描论文局限性和开放问题,通过结构化路径生成研究想法,过滤后保存为 wiki idea 页面。支持反重复机制(banlist)。
论文导入 — 将学术论文导入 Wiki 知识库,自动创建论文页、概念页、方法页、数据集页、作者页,条件触发 Survey 和 Comparison 页面。
学术论文 Wiki 知识库 — 架构概览、页面类型、引用规范、故障排查。具体流程见 paper-ingest、paper-update、wiki-lint、wiki-ask 四个子 Skill。
快速联网查询工具,基于 Tavily Search API。支持天气查询、事实检索、新闻动态、官方文档查找、实时行情等场景。用户要求搜索、联网、查官网、核实事实、获取最新信息时使用。
面向本地知识库目录的检索和问答助手。核心流程:(1)分层索引导航 (2)遇到PDF/Excel时必须先读取references学习处理方法 (3)处理文件后再检索。按文件类型组合使用 grep、Read、pdfplumber、pandas 进行渐进式检索,避免整文件加载。用户问题涉及"从知识库目录回答问题/检索信息/查资料"时使用。
| name | paper-update |
| description | 论文增量更新 — 更新已导入的论文版本,同步更新关联的概念页、方法页和作者页。 |
更新已导入 Wiki 的论文版本(如 v1 → v2),保留旧结论并标注新内容。
| 工具 | 用途 |
|---|---|
register_source | 注册原始资料,计算 SHA-256 哈希 |
pdf_parser | 解析 PDF 提取文本和元信息 |
read_wiki_page | 读取 wiki 页面 |
save_wiki_page | 保存 wiki 页面 |
list_wiki_pages | 列出 wiki 页面 |
rebuild_index | 重建 wiki/index.md |
append_log | 追加操作日志 |
register_source(file_path="papers/attention_v2.pdf", ...)
如果返回 already_registered,比较 hash:
pdf_parser(file_path="papers/attention_v2.pdf", max_pages=30)
read_wiki_page 读取现有论文页面用 save_wiki_page 更新论文页面:
[Updated in v2]source_hash 为新 hashupdated 时间戳version 字段(如有)检查并更新受影响的页面:
rebuild_index()
append_log(operation="update", details="Updated: Attention Is All You Need (v1→v2). Changes: added Section 5 experiments.", pages_affected="papers/attention-is-all-you-need")
[Updated in vX] 标注变更点