快速了解
它能做什么
从本地 PDF、直链 PDF 或 arXiv 链接生成简短、结构化的研究论文概览。
本站提供的是中文说明,不代表该项目或 Plugin 自身提供中文界面;语言支持请以上游文档为准。
选择前先看
该技能解析论文后生成约 300–500 词的速览,涵盖研究问题、核心思路、主要贡献、量化结果、意义与局限。它适合快速筛选论文和理解概念,不用于生成深入学习材料或代码示例。
适合谁
希望在决定是否深入阅读前快速筛选论文的研究人员、学生和技术读者。
常见任务
- 概览本地保存的论文 PDF。
- 将 arXiv 页面或 PDF 链接转为简明论文摘要。
- 快速查看论文报告的基准结果和作者说明的局限。
权限与数据
处理用户提供的论文文件或链接,并创建本地论文库文件。
权限- 执行 Shell、文件读取和文件写入操作。
- 首次运行时执行 npm install,并尝试以用户级方式安装 Python 包。
- 可通过关联技能启动本地 Web UI。
- 将 URL 输入下载到临时目录。
- 在 ~/claude-papers/ 下复制输入 PDF、提取文本、元数据、摘要和索引条目。
- 访问用户提供的 PDF 直链和 arXiv 链接。
- 提供的技能文档未声明需要凭据。
局限
- 只生成速览,不提供深入学习材料、代码演示或交互式可视化。
- 解析和摘要质量取决于源 PDF 及其文本提取结果。
- 它会更新持久化的本地索引和论文目录,并非只读操作。
DSHub 已核对
- 已捕获完整的固定版本技能文档。
- 技能明确支持本地 PDF 路径、PDF 直链和 arXiv 链接。
- 仓库许可证文本为 MIT。
DSHub 未核对
- DSHub 未安装或执行该技能。
- 依赖可用性、PDF 解析结果和本地 Web UI 行为尚未验证。
固定版本安装
主要操作
这个独立 Skill没有 DSH Plugin 安装操作,请根据源码文档使用真实交付方式。
维护者原文
Skill 使用说明
name: claude-paper-summary description: Use this for a quick summary of a research paper's core ideas and key points. Use when you want to quickly understand a paper without deep study materials. Triggers on PDF paths, arXiv URLs, or paper URLs. allowed-tools: Bash, Write, Read
Cross-Agent Compatibility
This file is generated from the existing Claude Paper Skill. Its workflow and output requirements are unchanged; only equivalent host metadata, the plugin-root variable, and cross-skill invocation are adapted.
Resolve CLAUDE_PAPER_PLUGIN_ROOT to the absolute plugin/ directory in this package before each shell invocation. From this SKILL.md, that directory is ../../../plugin.
Treat every ${CLAUDE_PAPER_PLUGIN_ROOT} reference below as that resolved absolute directory. Do not substitute the current workspace root.
When this workflow asks to launch the viewer, load and follow the claude-paper-webui skill.
Quick Paper Summary Workflow
This skill generates a concise summary of a research paper's core ideas and key points.
When to use:
- You want to quickly understand what a paper is about
- You need the main contributions without deep technical details
- You're screening papers to decide which to study in depth
When NOT to use:
- You want comprehensive study materials (use
claude-paper-studyskill instead) - You need code demonstrations
- You want interactive visualizations
Language Detection: Detect the user's language from their input and generate ALL materials in that language.
- Example: User says "我们学习一下这篇论文" → Generate materials in Chinese
- Example: User says "Let's study this paper" → Generate materials in English
Step 0: Check Dependencies (First Run Only)
if [ ! -f "${CLAUDE_PAPER_PLUGIN_ROOT}/.installed" ]; then
echo "First run - installing dependencies..."
cd "${CLAUDE_PAPER_PLUGIN_ROOT}"
npm install || exit 1
# Install Python dependencies for image extraction
python3 -m pip install pymupdf --user 2>/dev/null || pip3 install pymupdf --user 2>/dev/null || echo "Warning: Failed to install pymupdf"
touch "${CLAUDE_PAPER_PLUGIN_ROOT}/.installed"
echo "Dependencies installed!"
fi
Step 1: Download and Parse PDF
Supports multiple input formats:
- Local path:
~/Downloads/paper.pdf - Direct PDF URL:
https://arxiv.org/pdf/1706.03762.pdf - arXiv URL:
https://arxiv.org/abs/1706.03762
Step 1a: Check input type and download if URL
USER_INPUT="<user-input>"
# Check if input is a URL (starts with http:// or https://)
if [[ "$USER_INPUT" =~ ^https?:// ]]; then
# Download PDF from URL
INPUT_PATH=$(node ${CLAUDE_PAPER_PLUGIN_ROOT}/skills/study/scripts/download-pdf.cjs "$USER_INPUT")
else
# Use local path directly
INPUT_PATH="$USER_INPUT"
fi
For URLs, the download script will:
- Download PDFs to
/tmp/claude-paper-downloads/ - Convert arXiv
/abs/URLs to PDF URLs automatically - Validate that URLs point to PDF files
- Return the local file path for processing
Step 1b: Parse PDF
Extract structured information:
PARSE_OUTPUT_DIR=$(mktemp -d)
node ${CLAUDE_PAPER_PLUGIN_ROOT}/skills/study/scripts/parse-pdf.js \
"$INPUT_PATH" \
--output-dir "$PARSE_OUTPUT_DIR"
The command prints a small, strict JSON summary to stdout and writes:
meta.json— title, authors, abstract, links, page count, and a context-safe content previewpaper.txt— complete extracted text without the 50k preview limit
Use paper.txt as the source for the quick summary. Do not treat meta.json.content as the complete paper when contentTruncated is true.
Step 2: Generate Quick Summary
Create the paper folder:
mkdir -p ~/claude-papers/papers/{paper-slug}
cp "<metaPath-from-parser-output>" ~/claude-papers/papers/{paper-slug}/meta.json
cp "<fullTextPath-from-parser-output>" ~/claude-papers/papers/{paper-slug}/paper.txt
cp "$INPUT_PATH" ~/claude-papers/papers/{paper-slug}/paper.pdf
Generate quick-summary.md with the following structure:
# Quick Summary: [Paper Title]
## One Sentence
[One sentence that captures what the paper is about]
## Problem
[What problem does this paper solve? Why is it important?]
## Core Idea
[The key innovation explained in 2-3 sentences. What makes this paper novel?]
## Key Contributions
- [Contribution 1]
- [Contribution 2]
- [Contribution 3]
- [Contribution 4 if applicable]
## Main Results
| Metric | Value | Dataset/Benchmark |
|--------|-------|-------------------|
| [metric1] | [value] | [dataset] |
| [metric2] | [value] | [dataset] |
## Why It Matters
[Practical implications. How does this advance the field? What can we now do that we couldn't before?]
## Limitations
- [Limitation 1]
- [Limitation 2]
Guidelines for each section:
| Section | Length | Focus |
|---|---|---|
| One Sentence | 1 sentence | High-level summary |
| Problem | 2-3 sentences | Context and motivation |
| Core Idea | 2-3 sentences | The main innovation |
| Key Contributions | 3-5 bullets | What's new/novel |
| Main Results | 1 table | Quantitative metrics from the paper |
| Why It Matters | 2-3 sentences | Practical value |
| Limitations | 2-3 bullets | What the paper doesn't solve |
Total length: ~300-500 words (excluding results table)
Step 3: Update Index
CRITICAL: Read existing index.json first, then append the new paper. Never overwrite the entire file.
If index.json does not exist, create:
{"papers": []}
Append new entry to the papers array:
{
"id": "paper-slug",
"title": "Paper Title",
"slug": "paper-slug",
"authors": ["Author 1", "Author 2"],
"abstract": "Paper abstract...",
"year": 2024,
"date": "2024-01-01",
"tags": ["quick-summary"],
"githubLinks": ["https://github.com/..."],
"codeLinks": ["https://..."]
}
IMPORTANT: The index.json file must be located at:
~/claude-papers/index.json
Step 4: Relaunch Web UI
Load and follow the claude-paper-webui skill.
Step 5: Present Summary to User
After generating the summary:
Show the user the quick-summary.md content - Display the full summary
Offer next steps:
- "Would you like to study this paper in more depth? Use
claude-paper-studyskill for comprehensive materials." - "Do you have questions about specific parts of the paper?"
- "Would you like me to explain any section in more detail?"
- "Would you like to study this paper in more depth? Use
File location reminder:
- Summary saved to:
~/claude-papers/papers/{paper-slug}/quick-summary.md - Web UI available at:
http://localhost:5815
- Summary saved to:
Example Output
# Quick Summary: Attention Is All You Need
## One Sentence
This paper introduces the Transformer, a neural network architecture based entirely on attention mechanisms, achieving state-of-the-art results in machine translation.
## Problem
Sequence transduction models at the time (RNNs, LSTMs, GRUs) process data sequentially, limiting parallelization and struggling with long-range dependencies.
## Core Idea
Replace recurrent layers with self-attention mechanisms, enabling full parallelization during training and direct modeling of dependencies regardless of distance. The Transformer uses multi-head attention to jointly attend to information from different representation subspaces.
## Key Contributions
- First transduction model relying entirely on self-attention, no recurrence
- Multi-head attention mechanism for joint attention across subspaces
- Positional encodings to inject sequence order information
- Achieved 28.4 BLEU on WMT 2014 English-to-German (2+ BLEU improvement)
- Training was significantly faster than previous state-of-the-art
## Main Results
| Metric | Value | Dataset/Benchmark |
|--------|-------|-------------------|
| BLEU (EN-DE) | 28.4 | WMT 2014 |
| BLEU (EN-FR) | 41.8 | WMT 2014 |
| Training cost | 3.3 × 10^18 FLOPs | WMT 2014 EN-DE |
| Training time | 12 hours on 8 P100 | WMT 2014 EN-DE |
## Why It Matters
The Transformer eliminated recurrence, enabling massive parallelization and scaling. This architecture became the foundation for BERT, GPT, and virtually all modern large language models, fundamentally changing NLP and beyond.
## Limitations
- Self-attention has O(n²) complexity, limiting sequence length
- No explicit modeling of position beyond learned encodings
- Requires large amounts of training data
Notes
- This skill is intentionally minimal - it generates only the summary, no code demos, no interactive HTML, no deep-dive materials
- For users who want more, they can use
claude-paper-studyskill to generate comprehensive materials - The summary should be self-contained and readable in under 5 minutes
- Focus on conceptual clarity over technical details
有意识地管理
安装与管理
前置条件与目标 Profile
目标: researchers Profile, students Profile, technical-readers Profile
交付方式: Skill 文件 — https://raw.githubusercontent.com/alaliqing/claude-paper/0af55d0daeae8e86571700fd1839feb6be9440a6/.agents/skills/claude-paper-summary/SKILL.md。
兼容性与访问范围
Not declared in supplied evidence: Not declared in supplied evidence。
风险事实
证据与编辑审查Manifest、Bundle patch、分发与新鲜度
不可变证据
审查状态与源码活动
在核对来源内容和不可变发布记录后,已由人工批准发布。AI 参与了内容草稿生成,最终发布决定由人工完成。
人工审查于 2026/8/31 UTC 13:27。GitHub 事实核对日期: 2026/8/31 UTC 13:12。
自当前证据基线以来,没有记录到重要源码变化。