---
name: Paper Analysis
slug: paper-analysis
category: Automation
description: Paper Analysis performs deep analysis of a single academic paper, extracting figures from the arXiv source and producing a structured review covering problem, method, experiments, and insights.
github: "https://github.com/Xiangyue-Zhang/auto-deep-researcher-24x7/tree/main/skills/paper-analyze"
language: Python
stars: 1279
forks: 111
install: "npx degit https://github.com/Xiangyue-Zhang/auto-deep-researcher-24x7/tree/main/skills/paper-analyze ~/.claude/skills/paper-analyze"
installs_to: ~/.claude/skills/paper-analyze
source_path: skills/paper-analyze/SKILL.md
collection_size: 8
category_size: 1523
collection_url: "https://dirskills.com/collections/Xiangyue-Zhang/auto-deep-researcher-24x7"
added: 2026-08-20T07:55:04.874Z
last_synced: 2026-08-20T07:55:04.874Z
canonical_url: "https://dirskills.com/skills/paper-analysis"
---

# Paper Analysis

Paper Analysis performs deep analysis of a single academic paper, extracting figures from the arXiv source and producing a structured review covering problem, method, experiments, and insights.

**Install:**

```bash
npx degit https://github.com/Xiangyue-Zhang/auto-deep-researcher-24x7/tree/main/skills/paper-analyze ~/.claude/skills/paper-analyze
```

## README

# paper-analyze

Perform deep analysis of a single academic paper.

## Usage

```
Claude Code: /paper-analyze <arxiv_id or url>
Codex: $paper-analyze
```

## Behavior

1. Fetch paper metadata from arXiv API
2. Attempt to download arXiv source package (.tar.gz)
3. Extract actual figures from source (not screenshots)
4. Read the full paper (PDF if source unavailable)
5. Generate structured analysis

## Figure Extraction

Priority order:
1. arXiv source package → extract .png/.jpg/.pdf figures
2. PDF extraction as fallback
3. Name files with arxiv_id prefix to avoid collisions

## Output Format

```markdown
# [Paper Title]

**arXiv**: [id] | **Authors**: ... | **Year**: ...

## Problem
What specific problem does this paper address?

## Motivation  
Why is this problem important? What gap exists?

## Method
Detailed technical approach with key equations/algorithms.

![Figure 1](figures/arxiv_id_fig1.png)

## Experiments
- Datasets, baselines, metrics
- Key results table
- Ablation findings

## Insights
- What can we learn and apply?
- Strengths and limitations
- Connections to our research
```
