com um clique
paper-ingestion
统一的论文获取和解析入口。自动识别来源(arxiv/DOI/PDF/标题),选择最优获取方式,输出标准化 Markdown。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
统一的论文获取和解析入口。自动识别来源(arxiv/DOI/PDF/标题),选择最优获取方式,输出标准化 Markdown。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
SDP 双模型 6 审稿人 + 交叉审核系统。含拒稿信预演。当用户说"审稿"、"review"、"帮我看看这篇论文写得怎么样"时触发。
Nexus 统一入口。意图识别 + 模式路由 + 首次引导 + Autopilot 模式。当用户提出任何学术研究相关请求时触发(调研、找论文、构思 idea、写论文、审稿、做实验等)。
基于 Evidence Graph + Knowledge Graph 进行学术 idea 构思与评估。双阶段流程:Phase 1 用 ToT 思维树系统性探索,Phase 2 用 SDP 跨模型红队攻击。当用户说"帮我想 idea"、"brainstorm"、"研究方向"、"有什么可以做的"时触发。
Review code changes for correctness, regressions, edge cases, style issues, and unnecessary churn. Use when checking diffs, reviewing pull-request-like changes, or doing independent quality review. Triggers on "review this", "check my changes", "code review", "代码审查".
Perform safe, reviewable refactors. Use when restructuring code, moving responsibilities, renaming across modules, or reducing duplication without intended behavior changes. Triggers on "refactor X", "rename Y across the project", "extract helper", "重构".
typed knowledge-graph 抽象层 (Wave B.3)。把分散在 evidence_graph / corpus_ledger / story_skeleton 的结构升级成 paper / idea / claim / experiment / mechanism / baseline 节点 + supports / contradicts / derives_from / cites / replicates / falsifies 边。通过 4 个 MCP tool 维护 artifacts/research_wiki.json,并用 export_to_evidence_graph 投影回 evidence_graph schema。
| name | paper-ingestion |
| description | 统一的论文获取和解析入口。自动识别来源(arxiv/DOI/PDF/标题),选择最优获取方式,输出标准化 Markdown。 |
统一的论文获取和解析入口。无论论文来源,输出统一格式的结构化 Markdown。
自动解析用户输入,识别论文来源:
| 输入模式 | 识别为 | 示例 |
|---|---|---|
arxiv.org/abs/XXXX.XXXXX | arxiv | https://arxiv.org/abs/2401.12345 |
alphaxiv.org/overview/XXXX.XXXXX | arxiv | https://alphaxiv.org/overview/2401.12345 |
XXXX.XXXXX 或 XXXX.XXXXXvN | arxiv ID | 2401.12345v2 |
10.XXXX/... | DOI | 10.1145/1234567.1234568 |
aclanthology.org/... | ACL | https://aclanthology.org/2024.acl-long.1/ |
*.pdf 文件路径 | 本地 PDF | ~/papers/example.pdf |
| PDF URL | 远程 PDF | https://example.com/paper.pdf |
| 其他文本 | 标题搜索 | "Attention Is All You Need" |
# Step 1: 获取 AI 生成的结构化概览(推荐,足够大多数场景)
curl -s "https://alphaxiv.org/overview/{PAPER_ID}.md"
# Step 2: 如需更多细节(公式、表格),获取全文
curl -s "https://alphaxiv.org/abs/{PAPER_ID}.md"
# 获取元数据和摘要
curl -s "https://api.semanticscholar.org/graph/v1/paper/DOI:{DOI}?fields=title,authors,year,abstract,venue,citationCount,references"
# ACL 论文通常同时在 arxiv 上,优先走 arxiv 路径
# 否则下载 PDF 走 Tier 2
当 Tier 1 不可用时:
无论来源,最终输出到 parsed_mds/{paper_id}.md:
---
title: "Paper Title"
authors: ["Author A", "Author B"]
year: 2025
venue: "NeurIPS 2025"
doi: "10.xxxx/xxxxx"
arxiv_id: "2401.12345"
source_tier: 1 # 标记用了哪层获取
---
# Paper Title
## Abstract
[摘要全文]
## 1. Introduction
[章节内容]
## 2. Method
[章节内容,数学公式保留 LaTeX: $\mathcal{L} = ...$]
## 3. Experiments
[章节内容]
## 4. Conclusion
[章节内容]
## Figures & Tables
[图表描述,标注 Figure/Table 编号]
| 场景 | 处理 |
|---|---|
| AlphaXiv 404 | Fall through 到 Tier 2(PDF) |
| PDF 下载失败 | 提示用户手动上传 PDF |
| Semantic Scholar 无结果 | 尝试 Google Scholar 搜索 |
| 所有 Tier 失败 | 提示用户提供更多信息(完整标题/URL/PDF) |
parsed_mds/ 是否已有,避免重复工作