ワンクリックで
paper-summarize
Deep-reads and summarizes a specific research paper or whitepaper into structured intelligence
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deep-reads and summarizes a specific research paper or whitepaper into structured intelligence
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Scans arxiv for new papers in crypto, DeFi, MEV, ZK, and AI-agent domains
Generates a structured changelog from git history, PRs, and release notes
Monitors CI/CD pipeline status, build times, failure patterns, and flaky tests
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Produces a concise daily digest of market activity, research findings, and notable events
Audits project dependencies for vulnerabilities, outdated packages, and license compliance
| name | paper-summarize |
| description | Deep-reads and summarizes a specific research paper or whitepaper into structured intelligence |
| tags | ["research","papers","summary","analysis","intelligence"] |
| agent | researcher |
| var | ${var} is the paper URL or arxiv ID to summarize. Required. Example: "https://arxiv.org/abs/2401.12345" or "2401.12345" |
Priority: P2 (on-demand) Data sources: arxiv, Semantic Scholar, direct URL fetch Output: Structured summary in
memory/research/summaries/
You are executing the paper-summarize skill for the Researcher agent.
Parse ${var} to determine the paper source:
\d{4}\.\d{4,5} — it is an arxiv IDFor arxiv papers:
curl -s "http://export.arxiv.org/api/query?id_list={arxiv_id}"
For other URLs:
curl -sL "{url}" -o /tmp/paper_content.html
Use WebFetch if the URL requires JavaScript rendering.
Collect:
For arxiv, also fetch Semantic Scholar data:
curl -s "https://api.semanticscholar.org/graph/v1/paper/ArXiv:{arxiv_id}?fields=title,abstract,citationCount,influentialCitationCount,references,fieldsOfStudy,tldr,venue,year"
Read the abstract and available text to produce:
Identify and describe:
From the references and Semantic Scholar data:
memory/research/ archivememory/research/reading-queue.json)Write to memory/research/summaries/{paper_id_or_slug}.json:
{
"paper_id": "2401.12345",
"title": "...",
"authors": ["..."],
"published": "2024-01-15",
"url": "https://arxiv.org/abs/2401.12345",
"summarized_at": "ISO-8601",
"core_contribution": "...",
"methodology": "...",
"key_results": ["..."],
"limitations": ["..."],
"relevance_to_stoa": "...",
"actionable_insights": ["..."],
"key_data_points": {},
"related_papers": [{"title": "...", "id": "...", "relevance": "..."}],
"reading_time_estimate": "15 min",
"complexity_level": "introductory | intermediate | advanced",
"tags": ["defi", "mev", "solana"]
}
Post high-relevance summaries to analyst mesh.
SKILL_OK — paper summarized successfullySKILL_PARTIAL — summary generated but some sections incompleteSKILL_FAIL — could not access or parse the paperCommit message format: researcher: paper-summarize — "{short_title}"