# Send arxiv_deep_reader 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-reader",
    "name": "arxiv_deep_reader",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Aurora-1412/arxiv-reader",
    "canonicalUrl": "https://clawhub.ai/Aurora-1412/arxiv-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arxiv-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "main.py",
      "requirements.txt",
      "config.py",
      "SKILL.md",
      ".env",
      "skills/loader.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arxiv-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T17:43:51.096Z",
      "expiresAt": "2026-05-11T17:43:51.096Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-reader",
        "contentDisposition": "attachment; filename=\"arxiv-reader-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arxiv-reader"
      },
      "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-reader"
    },
    "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-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-reader",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-reader/agent.md"
  }
}
```
## Documentation

### 1. 配置 .env

cp .env.example .env   # 或直接编辑 .env

确定你已经配置了：

LLM_API_KEY — OpenAI 或兼容 API 的密钥
LLM_BASE_URL — API 地址

### 2. 运行

uv venv
uv pip install -r "{baseDir}/requirements.txt"

# 单篇论文模式：指定 arxiv_id 或 URL
uv run python "{baseDir}/main.py" --arxiv-id 2401.12345
uv run python "{baseDir}/main.py" --arxiv-id https://arxiv.org/abs/2401.12345
uv run python "{baseDir}/main.py" --arxiv-id https://arxiv.org/pdf/2401.12345.pdf

# 指定以特定类别阅读
uv run python "{baseDir}/main.py" --arxiv-id xxxx --category yyy

# 查看所有类别
uv run python "{baseDir}/main.py" --list

### 添加新的阅读分类

在 skills/ 下新建文件夹，包含两个文件：

skills/your_new_category/
├── _metadata.md        # 分类描述（告诉 Classifier 什么论文属于这个类别）
└── reading_prompt.md   # 阅读指南（告诉 Reader Agent 重点关注什么）

重启即可自动识别，无需修改任何代码。

### Python包

LangChain 1.x — Agent 框架（基于 LangGraph）
LangChain OpenAI — LLM 接口（兼容 DeepSeek 等 OpenAI-compatible API）
arxiv — 官方 Python 库
arxiv-to-prompt 获取arxiv论文latex源码
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Aurora-1412
- Version: 1.0.3
## 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-05-04T17:43:51.096Z
- Expires at: 2026-05-11T17:43:51.096Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arxiv-reader)
- [Send to Agent page](https://openagent3.xyz/skills/arxiv-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/arxiv-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arxiv-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/arxiv-reader)