ワンクリックで
paper
Analyze academic papers using the Feynman Technique. Use when you need to create a clear, structured explanation of an academic paper.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyze academic papers using the Feynman Technique. Use when you need to create a clear, structured explanation of an academic paper.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Rank movie showtimes by the user's format preferences and find the best contiguous seats by their saved seat preferences. Use when the user wants to find movie tickets/seats (currently Regal/regmovies.com). Booking is human-in-the-loop — usher proposes seats and a deep link; the user logs in and pays.
Manage experimental spike projects in a centralized, searchable location. Use when you need to create, find, or navigate to spike/experiment directories.
Cross-project task and idea tracker built on beads. Use when you need to capture ideas, tasks, reading lists, or track async work across projects.
Research historical events from local history sources (Chrome, terminal). Use when you need to find what happened, when it happened, or retrace activity.
Telegram-based messaging for Claude workflows. Use when you need to send or receive messages and files between Claude Desktop and Claude Code.
Deterministic secret storage for guppi skills. Use when you need to store, retrieve, or manage API tokens and secrets across guppi skills.
| name | paper |
| description | Analyze academic papers using the Feynman Technique. Use when you need to create a clear, structured explanation of an academic paper. |
| allowed-tools | Bash(guppi-paper:*), Bash(curl:*), WebFetch, Read, Write |
| version | 0.1.1 |
| author | Sam Dengler |
| license | MIT |
Analyzes academic papers using the Feynman Technique, producing structured markdown explanations with reading time estimates, simplified explanations, critical analysis, and technical deep dives.
When invoked as /paper <url>, follow these steps:
Parse arguments: Extract the paper source (URL or local file path) from $ARGUMENTS. Check for a --no-pdf flag (if present, skip step 7).
Fetch the paper:
guppi-paper prompt <path> (uses pymupdf). If text/markdown, read directly. Skip download..pdf, contains /pdf/, or is a known PDF-serving pattern like arxiv.org/pdf/): Download with curl -sL -o /tmp/<id>.pdf <url>, then extract text with guppi-paper prompt /tmp/<id>.pdf and use the output.WebFetch to retrieve and convert the content to markdown.WebFetch returns binary/garbage content, the URL is likely a PDF — fall back to the curl + guppi-paper prompt approach.Derive folder name: From the paper title, create a descriptive kebab-case slug (e.g., agent-first-database-systems). Do NOT use the arxiv ID or URL path — use the actual paper title.
Create output directory: Create the folder in the current working directory.
Save source material: Save the original content into the output directory:
<slug>/<slug>.<ext><slug>/<slug>.pdf<slug>/<slug>-source.mdRun the analysis: Analyze the paper following the Feynman Technique instructions below. Write the result to <slug>/<slug>-analysis.md.
PDF conversion (unless --no-pdf flag): Run guppi-paper pdf <path-to-analysis-markdown> to convert the analysis to PDF.
Analyze the paper systematically through these steps:
Estimate reading time based on word count, page length, subject complexity, number of figures/tables/equations, and density of mathematical content.
Explain the core concept as if teaching someone with no background in the field. Use simple language, avoid jargon. What problem is being solved and why does it matter?
Explain the main contribution and methodology as if teaching an intelligent 12-year-old:
Use analogies and real-world examples.
Structure the response with clear markdown headers. Include:
guppi-paper prompt <source>Output the hydrated analysis prompt to stdout. Accepts a URL or local file path.
guppi-paper prompt https://arxiv.org/pdf/2509.07604
guppi-paper prompt ./paper.pdf
guppi-paper prompt https://arxiv.org/pdf/2509.07604 | pbcopy
guppi-paper pdf <markdown-file>Convert a markdown analysis file to PDF via pandoc.
guppi-paper pdf agent-first-database-systems-analysis.md
guppi-paper skill install # Register with guppi-cli
guppi-paper skill show # Display SKILL.md contents