ワンクリックで
paper-analyzer
Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search traceable academic papers, download legally accessible PDFs from arXiv and open-access sources, convert PDFs or page images to Markdown with a PaddleOCR layout-parsing API (or local pdfminer fallback), and organize the results into an AI-readable literature library. Use when Claude Code needs to build a paper corpus, batch OCR PDFs to Markdown, ingest real literature into a knowledge base, fetch arXiv or Hugging Face paper leads, or turn a directory of papers into structured Markdown plus metadata.
Delegate complex coding tasks to Claude Code CLI
Delegate coding tasks to OpenAI Codex CLI
通过 compute-helper CLI 在远程服务器上自主执行、调试、迭代
Generates 2-4 candidate research directions from survey results, presents them with pros/cons for user selection, and converges to a publishable angle.
Academic research assistant for literature reviews, paper analysis, and scholarly writing.
| id | paper-analyzer |
| name | paper-analyzer |
| version | 1.0.0 |
| description | Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates |
| stages | ["survey","publication"] |
| tools | ["read_file","search_project","write_file","run_terminal"] |
| summary | Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates |
| primaryIntent | research |
| intents | ["research"] |
| capabilities | ["evaluation-benchmarking"] |
| domains | ["cs-ai"] |
| keywords | ["paper-analyzer","paper analysis","evaluation-benchmarking","cs-ai","paper","analyzer","deep","analysis","single","generate","structured","notes"] |
| source | builtin |
| status | verified |
| upstream | {"repo":"dr-claw","path":"skills/paper-analyzer","revision":"8322dc4ef575affaa374aa7922c0a0971c6db7d7"} |
| resourceFlags | {"hasReferences":false,"hasScripts":true,"hasTemplates":false,"hasAssets":false,"referenceCount":0,"scriptCount":2,"templateCount":0,"assetCount":0,"optionalScripts":true} |
Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates
Use this skill when the user request matches its research workflow scope. Prefer the bundled resources instead of recreating templates or reference material. Keep outputs traceable to project files, citations, scripts, or upstream evidence.
scripts/ as optional helpers. Run them only when their dependencies are available, keep outputs in the project workspace, and explain a manual fallback if execution is blocked.You are the Paper Analyzer for Dr. Claw.
Perform deep analysis of a specific paper, generating comprehensive notes including abstract translation, methodology breakdown, experiment evaluation, strengths/limitations analysis, and related work comparison.
Accept input: arXiv ID (e.g., "2402.12345"), full ID ("arXiv:2402.12345"), paper title, or file path.
curl -L "https://arxiv.org/pdf/[PAPER_ID]" -o /tmp/paper_analysis/[PAPER_ID].pdf
curl -L "https://arxiv.org/e-print/[PAPER_ID]" -o /tmp/paper_analysis/[PAPER_ID].tar.gz
curl -s "https://arxiv.org/abs/[PAPER_ID]" > /tmp/paper_analysis/arxiv_page.html
Analyze: abstract, methodology, experiments, results, contributions, limitations, future work, related papers.
python scripts/generate_note.py --paper-id "$PAPER_ID" --title "$TITLE" --authors "$AUTHORS" --domain "$DOMAIN"
python scripts/update_graph.py --paper-id "$PAPER_ID" --title "$TITLE" --domain "$DOMAIN" --score $SCORE
scripts/generate_note.py — Generate structured note templatescripts/update_graph.py — Update paper relationship graphThe generated note includes: core info, abstract (EN/CN), research background, method overview with architecture figures, experiment results with tables, deep analysis, related paper comparison, tech roadmap positioning, future work, and comprehensive evaluation (0-10 scoring).
Based on evil-read-arxiv — an automated paper reading workflow. MIT License.