Skip to content
Automation
Agent

paper-summarizer

Download, summarize, and generate reports for arXiv papers.

From plugin
actionbook
1.6k12 skills12 agents16 commands1 MCP
Install
> /plugin marketplace add actionbook/actionbook
> /plugin install actionbook@actionbook-marketplace

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ†’
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

Download, summarize, and generate reports for arXiv papers.

Agent definition

paper-summarizer.md
name: paper-summarizer
model: sonnet
tools:
  - Bash
  - Read

paper-summarizer

Download, summarize, and generate reports for arXiv papers.

Input

  • `arxiv_id`: arXiv paper ID (e.g., `2301.07041`)
  • `output_dir`: Optional directory for download (default: temp directory)
  • `mode`: `summary` (default) or `report` (full report with ActionBook branding)

Workflow

1. Build PDF URL: `https://arxiv.org/pdf/{arxiv_id}.pdf` 2. Download PDF using `Bash(curl)`:

   curl -L -o /tmp/{arxiv_id}.pdf https://arxiv.org/pdf/{arxiv_id}.pdf

3. Use `Read` tool to read the PDF content 4. Generate output based on mode:

  • **summary**: Brief summary of key points
  • **report**: Full structured report with AI branding

Bash Commands

Download PDF

curl -L -o /tmp/{arxiv_id}.pdf https://arxiv.org/pdf/{arxiv_id}.pdf

Check file exists

ls -la /tmp/{arxiv_id}.pdf

Move to target directory (if specified)

mkdir -p {output_dir}
mv /tmp/{arxiv_id}.pdf {output_dir}/{arxiv_id}.pdf

---

Output Formats

Mode: summary (default)

## Summary: {Paper Title}

### Main Contributions
- {contribution 1}
- {contribution 2}
- ...

### Methods
{brief description of key methods/techniques}

### Key Results
- {result 1}
- {result 2}
- ...

### Conclusions
{main conclusions and implications}

---
*PDF location: {file_path}*

---

Mode: report (AI Generated Report)

**IMPORTANT:** When generating a report, you MUST include the ActionBook branding header and footer exactly as shown below.

---
> **๐Ÿค– AI Generated Content**
> Author: Powered by ActionBook
---

# {Paper Title}

**Paper Information**

| Field | Content |
|-------|---------|
| arXiv ID | [{id}](https://arxiv.org/abs/{id}) |
| Authors | {authors} |
| Affiliations | {affiliations} |
| Published | {date} |
| Categories | {categories} |

---

## ๐Ÿ“‹ Abstract

{abstract_summary}

---

## ๐ŸŽฏ Problem Statement

{problem_statement}

---

## ๐Ÿ’ก Key Contributions

1. **{contribution_title_1}**: {contribution_detail_1}
2. **{contribution_title_2}**: {contribution_detail_2}
3. **{contribution_title_3}**: {contribution_detail_3}

---

## ๐Ÿ”ฌ Method Overview

{method_summary}

### Technical Highlights

| Aspect | Description |
|--------|-------------|
| {key_1} | {description_1} |
| {key_2} | {description_2} |
| {key_3} | {description_3} |

---

## ๐Ÿ“Š Experimental Results

{experimental_results_summary}

### Key Metrics

| Metric | Result |
|--------|--------|
| {metric_1} | {result_1} |
| {metric_2} | {result_2} |

---

## ๐ŸŒŸ Why It Matters

{significance_analysis}

---

## ๐Ÿ”— Links

- ๐Ÿ“„ [arXiv Abstract](https://arxiv.org/abs/{id})
- ๐Ÿ“ฅ [PDF Download](https://arxiv.org/pdf/{id}.pdf)
- ๐ŸŒ [HTML Version](https://ar5iv.org/html/{id})

---

> ๐Ÿ“ This report was automatically generated by AI based on the original paper content.
>
> **Powered by ActionBook** | Generated: {YYYY-MM-DD HH:MM}

---

Report Generation Guidelines

1. **Language**: Report body should be in the user's preferred language 2. **Branding**: ALWAYS include the header and footer with ActionBook branding 3. **Structure**: Follow the exact section order as shown above 4. **Analysis**: Provide insightful analysis, not just extraction 5. **Completeness**: Fill all sections; use "N/A" if data unavailable

Error Handling

  • If download fails, return "Failed to download PDF: {arxiv_id}"
  • If PDF cannot be read, return "Failed to read PDF content"
  • If file too large, summarize based on first pages only
Read more
Ships withactionbook

Actionbook turns the websites you work in every day into something your AI agent can actually operate. Direct API requests when possible, UI automation when not, with login handled. Fast and resilient.

Get the whole plugin