Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Arxiv Paper Download Summarizer

ASecurity

Tool-only paper processing skill with a manual language parameter: supports batch artifact download for many papers or single-paper download, then the model manually reads source/PDF and writes summary.md in the selected language. Use when per-paper comprehension should be model…

19 stars
0 votes
0 copies
0 views
Added 9/19/2026
ai-agentspythongoshellbash

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill arxiv-paper-download-summarizer --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Arxiv Paper Download Summarizer?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Arxiv Paper Download Summarizer
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-arxiv-paper-download-summarizer/badge)](https://www.skillsdirectory.com/skills/rondoflow-arxiv-paper-download-summarizer)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: arxiv-paper-download-summarizer
description: "Tool-only paper processing skill with a manual language parameter: supports batch artifact download for many papers or single-paper download, then the model manually reads source/PDF and writes summary.md in the selected language. Use when per-paper comprehension should be model…"
category: "Community"
author: community
version: "0.1.1"
icon: puzzle
---

# ArXiv Paper Processor

Use this skill for per-paper manual summarization, with optional batch artifact download.

- Single-paper mode: process one paper directory (e.g. `<run_dir>/<arxiv_id>/`).
- Batch predownload mode: process many paper directories under one run dir before writing summaries.

## Language Parameter

- Use a workflow language parameter (for example `English` or `Chinese`) and apply it manually.
- The per-paper `summary.md` must be written in the selected language.
- If download scripts are called directly, pass `--language <LANG>` for traceability.

## Core Principle

Scripts only fetch artifacts. The model performs reading and writing.

## Non-negotiable Constraint

- Do not generate `summary.md` by script-based snippet extraction, regex harvesting, or template autofill.
- Do not use Python/shell scripts to auto-compose section text from abstract/introduction fragments.
- Scripts in this skill are only for artifact download (`source`/`pdf`) and trace logs.
- The final `summary.md` must come from model-side reading and synthesis of the paper content.

## Optional Batch Artifact Download (Many Papers)

Use this first when Stage B has many papers:

```bash
python3 scripts/download_papers_batch.py \
  --run-dir /path/to/run \
  --artifact source_then_pdf \
  --max-workers 3 \
  --min-interval-sec 5 \
  --language English
```

Key behavior:

- Supports `--artifact source`, `--artifact pdf`, or `--artifact source_then_pdf` (default).
- Supports concurrency (`--max-workers`) and safe throttling/retry (`--min-interval-sec`, retry args).
- Uses run-local throttle state by default (`<run_dir>/.runtime/arxiv_download_state.json`) to reduce 429 risk.
- Skips papers that already have usable `source/source_extract/*.tex` or existing `source/paper.pdf` (unless `--force`).
- Resume-friendly: if a paper already has a completed `summary.md`, you can skip that paper's summary-writing step.
- Writes batch log to `<run_dir>/download_batch_log.json` by default.

## Step 1: Download Source (Preferred)

```bash
python3 scripts/download_arxiv_source.py \
  --paper-dir /path/to/run/2602.00528 \
  --language English
```

This writes:

- `source/source_bundle.bin`
- `source/source_extract/`
- `source/download_source_log.json`

If usable source already exists and `--force` is not set, the script reuses local artifacts.

## Step 2: If Needed, Download PDF

```bash
python3 scripts/download_arxiv_pdf.py \
  --paper-dir /path/to/run/2602.00528 \
  --language English
```

This writes:

- `source/paper.pdf`
- `source/download_pdf_log.json`

If PDF already exists and `--force` is not set, the script reuses local artifacts.

## Step 3: Model Reads and Summarizes

1. If `summary.md` already exists and follows the required format, skip this paper and mark it complete.
2. Read `metadata.md` first.
3. If `source/source_extract/` already exists with readable `.tex` files, use it directly.
4. Otherwise, if `source/paper.pdf` already exists, use PDF directly.
5. If neither exists, run download scripts (single-paper scripts or batch script) first.
6. Manually write `summary.md` in the same paper directory, in the selected language.

Do not rely on rule-based auto summarization.
Do not rely on auto-extracted snippets as the primary writing basis.

## Quality Requirement

- Every section should include paper-specific details that are traceable to full-text reading.
- Section 4/5/10 should reflect concrete method and evaluation details, not generic wording.
- If key details are unclear in the source, explicitly note uncertainty instead of guessing.
- Match the detail level shown in `references/summary-example-en.md` and `references/summary-example-zh.md`.
- If your draft is clearly shorter or less specific than the examples, expand it before finishing.

## Required Output

- `<paper_dir>/summary.md` in fixed section format.
- Pay special attention to section `## 10. Brief Conclusion`: write a 3-4 sentence mini-conclusion that covers contribution, method, evaluation setup, and results with paper-specific details.
- In section `## 1. Paper Snapshot`, use exact keys: `ArXiv ID`, `Title`, `Authors`, `Publish date`, `Primary category`, `Reading basis`.
- Do not use key variants such as `Reading source`, `Author list`, `Published on`, or lowercase key names.

See `references/summary-format.md` for exact section requirements.

## Related Skills

This skill is a sub-skill of `arxiv-summarizer-orchestrator`.

Pipeline position:

1. Step 1 (upstream): `arxiv-search-collector` produces the selected paper directories and metadata.
2. Step 2 (this skill): `arxiv-paper-processor` downloads artifacts and writes one `summary.md` per paper.
3. Step 3 (downstream): `arxiv-batch-reporter` uses these per-paper summaries to generate the final collection report.

Use this skill together with Step 1 and Step 3 for full end-to-end execution.

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →