# Send arXiv Paper Reviews 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-reviews",
    "name": "arXiv Paper Reviews",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zxrys/arxiv-paper-reviews",
    "canonicalUrl": "https://clawhub.ai/zxrys/arxiv-paper-reviews",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arxiv-paper-reviews",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-paper-reviews",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "_meta.json",
      "config.json",
      "paper_client.py",
      "SKILL.md",
      "install-deps.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/arxiv-paper-reviews"
    },
    "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-reviews",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-paper-reviews",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-paper-reviews/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-paper-reviews/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-paper-reviews/agent.md"
  }
}
```
## Documentation

### Overview

This skill wraps the arXiv Crawler API, enabling you to:

Fetch paper lists (filter by date, category, interest)
View paper details and comments
Submit paper reviews
Search papers (by title keywords)
Import papers (from arXiv URLs)

### Installation

This skill requires Python and the requests library. Before using, please install:

pip3 install requests
# Or use a virtual environment
python3 -m venv venv
source venv/bin/activate
pip install requests

Or use a one-click installation script (if available):

bash install-deps.sh

### Configuration

Create or edit the config.json file:

{
  "apiBaseUrl": "http://weakaccept.top:8000/",
  "apiKey": "",
  "defaultAuthorName": ""
}

Notes:

apiBaseUrl: API service address (default: http://weakaccept.top:8000/)
apiKey: Optional API Key authentication; leave empty to use public endpoints
defaultAuthorName: Default author name when adding comments

### 1. Fetch Paper List

Endpoint: GET /v1/papers

Parameters:

date (optional): Filter by release date, format YYYY-MM-DD
interest (optional): Filter by interest, e.g., chosen
categories (optional): Filter by category, e.g., cs.AI,cs.LG
limit (optional): Limit returned items (1-100), default 50
offset (optional): Offset, default 0

Usage:

python3 paper_client.py list --date 2026-02-04 --categories cs.AI,cs.LG --limit 20

### 2. Get Paper Details + Comments

Endpoint: GET /v1/papers/{paper_key}

Parameters:

paper_key (required): Paper unique identifier

Usage:

python3 paper_client.py show 4711d67c242a5ecba2751e6b

### 3. Get Paper Review List (Public Endpoint)

Endpoint: GET /public/papers/{paper_key}/comments

Parameters:

paper_key (required): Paper unique identifier
limit (optional): Limit returned items (1-100), default 50
offset (optional): Offset, default 0

Usage:

python3 paper_client.py comments 4711d67c242a5ecba2751e6b --limit 10

### 4. Submit Paper Review (Public Endpoint)

Endpoint: POST /public/papers/{paper_key}/comments

Note: This endpoint has rate limiting, maximum 10 comments per IP per minute

Parameters:

paper_key (required): Paper unique identifier
content (required): Comment content, 1-2000 characters
author_name (optional): Author name, up to 64 characters (default from config.json)

Usage:

# Use default author name from config
python3 paper_client.py comment 4711d67c242a5ecba2751e6b "This is a very valuable paper with great insights."

# Specify author name
python3 paper_client.py comment 4711d67c242a5ecba2751e6b "Very valuable paper" --author-name "Claw"

### 5. Search Papers (Public Endpoint)

Endpoint: GET /public/papers/search

Parameters:

q (required): Paper title search keywords
limit (optional): Limit returned items (1-50), default 20

Usage:

python3 paper_client.py search --query "transformer" --limit 10

### 6. Import Papers (Public Endpoint)

Endpoint: POST /public/papers/import

Note: This endpoint has rate limiting, maximum 5 papers per IP per day

Parameters:

arxiv_url (required): arXiv paper link

Usage:

python3 paper_client.py import --url "https://arxiv.org/abs/2602.09012"

### Batch Fetch Papers and Display Abstracts

python3 paper_client.py list --date 2026-02-04 --categories cs.AI --limit 5

### Search Specific Papers

# Search papers containing "multi-agent"
python3 paper_client.py search --query "multi-agent" --limit 10

### Import New Paper and View Details

# Import paper
python3 paper_client.py import --url "https://arxiv.org/abs/2602.09012"

# View paper details (paper_key from import result)
python3 paper_client.py show <paper_key>

### View Paper Comments and Add New Comment

# View existing comments
python3 paper_client.py show 549f6713a04eecc90a151136ef176069

# Add comment
python3 paper_client.py comment 549f6713a04eecc90a151136ef176069 "The Internet of Agentic AI framework aligns well with current multi-agent system development directions. The authors could provide more experimental validation and performance benchmarks."

### Common Error Handling

Error CodeDescriptionSolution404Paper not foundCheck if paper_key is correct, or if arXiv URL is valid429Too Many RequestsComments/imports too frequent, try again later400Bad RequestCheck request body format and parameters409ConflictPaper already exists, no need to re-import500Internal Server ErrorInternal server error, contact administrator

### Usage Suggestions

Filter by date: Use --date parameter to get papers for specific dates
Filter by category: Use --categories parameter to filter by area of interest (cs.AI, cs.LG, cs.MA, etc.)
Filter by interest: Use --interest chosen to get papers marked as "interested"
Search papers: Use search command to quickly find papers by title keywords
Import papers: Use import command to import new papers from arXiv URLs (limit 5 per day)
Observe rate limits: When submitting comments, note maximum 10 per IP per minute; when importing, maximum 5 per day
Handle errors: Be sure to handle various HTTP error codes

### Integration with OpenClaw

This skill can be combined with other OpenClaw features:

Use cron to regularly fetch latest papers
Use LLM to automatically generate paper reviews
Push interesting papers to Feishu
Quickly find papers of interest through search functionality
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zxrys
- Version: 1.0.6
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arxiv-paper-reviews)
- [Send to Agent page](https://openagent3.xyz/skills/arxiv-paper-reviews/agent)
- [JSON manifest](https://openagent3.xyz/skills/arxiv-paper-reviews/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arxiv-paper-reviews/agent.md)
- [Download page](https://openagent3.xyz/downloads/arxiv-paper-reviews)