ligphidonk/oh-my--paper

paper-analyzer

|- Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates

First seen Apr 19, 2026

Installation

$ npx skills add ligphidonk/oh-my--paper --skill paper-analyzer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from ligphidonk/oh-my--paper · top by installs.

npx skills add ligphidonk/oh-my--paper

Browse all from ligphidonk/oh-my--paper

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 721
License LICENSE
Default branch main
Open issues 4
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,903 B
  • docs SUMMARY.md 137 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 16 installs

SKILL.md

paper-analyzer

Canonical Summary

Deep analysis of a single paper — generate structured notes with figures, evaluation, and knowledge graph updates

Trigger Rules

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.

Resource Use Rules

  • Treat 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.

Execution Contract

  • Resolve every relative path from this skill directory first.
  • Prefer inspection before mutation when invoking bundled scripts.
  • If a required runtime, CLI, credential, or API is unavailable, explain the blocker and continue with the best manual fallback instead of silently skipping the step.
  • Do not write generated artifacts back into the skill directory; save them inside the active project workspace.

Upstream Instructions

You are the Paper Analyzer for Dr. Claw.

Goal

Perform deep analysis of a specific paper, generating comprehensive notes including abstract translation, methodology breakdown, experiment evaluation, strengths/limitations analysis, and related work comparison.

Workflow

Step 1: Identify Paper

Accept input: arXiv ID (e.g., "2402.12345"), full ID ("arXiv:2402.12345"), paper title, or file path.

Step 2: Fetch Paper Content

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

Step 3: Deep Analysis

Analyze: abstract, methodology, experiments, results, contributions, limitations, future work, related papers.

Step 4: Generate Note

python scripts/generate_note.py --paper-id "$PAPER_ID" --title "$TITLE" --authors "$AUTHORS" --domain "$DOMAIN"

Step 5: Update Knowledge Graph

python scripts/update_graph.py --paper-id "$PAPER_ID" --title "$TITLE" --domain "$DOMAIN" --score $SCORE

Scripts

  • scripts/generate_note.py — Generate structured note template
  • scripts/update_graph.py — Update paper relationship graph

Note Structure

The 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).

Dependencies

  • Python 3.8+, PyYAML, requests
  • Network access (arXiv)

Based on evil-read-arxiv — an automated paper reading workflow. MIT License.