# Send Arxiv Paper Processor to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arxiv-paper-processor",
    "name": "Arxiv Paper Processor",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/xukp20/arxiv-paper-processor",
    "canonicalUrl": "https://clawhub.ai/xukp20/arxiv-paper-processor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arxiv-paper-processor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-paper-processor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/download_arxiv_pdf.py",
      "scripts/download_arxiv_source.py",
      "scripts/download_papers_batch.py",
      "references/summary-example-en.md",
      "references/summary-example-zh.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arxiv-paper-processor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:25:37.440Z",
      "expiresAt": "2026-05-06T03:25:37.440Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-paper-processor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-paper-processor",
        "contentDisposition": "attachment; filename=\"arxiv-paper-processor-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arxiv-paper-processor"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/arxiv-paper-processor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arxiv-paper-processor",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-paper-processor",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-paper-processor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-paper-processor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-paper-processor/agent.md"
  }
}
```
## Documentation

### 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:

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)

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

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

If summary.md already exists and follows the required format, skip this paper and mark it complete.
Read metadata.md first.
If source/source_extract/ already exists with readable .tex files, use it directly.
Otherwise, if source/paper.pdf already exists, use PDF directly.
If neither exists, run download scripts (single-paper scripts or batch script) first.
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:

Step 1 (upstream): arxiv-search-collector produces the selected paper directories and metadata.
Step 2 (this skill): arxiv-paper-processor downloads artifacts and writes one summary.md per paper.
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xukp20
- Version: 0.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:25:37.440Z
- Expires at: 2026-05-06T03:25:37.440Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arxiv-paper-processor)
- [Send to Agent page](https://openagent3.xyz/skills/arxiv-paper-processor/agent)
- [JSON manifest](https://openagent3.xyz/skills/arxiv-paper-processor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arxiv-paper-processor/agent.md)
- [Download page](https://openagent3.xyz/downloads/arxiv-paper-processor)