# Send Arxiv Osiris 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-osiris",
    "name": "Arxiv Osiris",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nantes/arxiv-osiris",
    "canonicalUrl": "https://clawhub.ai/nantes/arxiv-osiris",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arxiv-osiris",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-osiris",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "arxiv_search.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arxiv-osiris",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T05:00:42.000Z",
      "expiresAt": "2026-05-07T05:00:42.000Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-osiris",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-osiris",
        "contentDisposition": "attachment; filename=\"arxiv-osiris-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arxiv-osiris"
      },
      "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-osiris"
    },
    "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-osiris",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-osiris",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-osiris/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-osiris/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-osiris/agent.md"
  }
}
```
## Documentation

### ArXiv Skill

Search and download scientific papers from arXiv.org - the largest free distribution of scientific preprints.

### What it does

Search papers by keywords, titles, abstracts
Download PDFs directly
Filter by category (physics, cs, math, etc.)
Get metadata including authors, dates, categories

### Installation

# Install Python dependency
pip install arxiv

### Search for papers

# Basic search
.\\arxiv.ps1 -Action search -Query "quantum computing"

# With max results
.\\arxiv.ps1 -Action search -Query "machine learning" -MaxResults 10

# With category filter (physics, cs, math, q-bio, etc.)
.\\arxiv.ps1 -Action search -Query "neural networks" -Categories "cs,stat"

### Download a paper

# By arXiv ID
.\\arxiv.ps1 -Action download -ArxivId "2310.12345"

### Python API

from arxiv import search, download

# Search
results = search("simulation hypothesis", max_results=5)
for paper in results:
    print(f"{paper.title} - {paper.pdf_url}")

# Download
paper.download("/path/to/save")

### Categories

Common arXiv categories:

cs.* - Computer Science
physics.* - Physics
math.* - Mathematics
q-bio.* - Quantitative Biology
q-fin.* - Quantitative Finance
stat.* - Statistics

### Examples

Search for consciousness papers: arxiv.ps1 -search "consciousness" -max 5
Find physics papers: arxiv.ps1 -search "quantum" -cats "physics" -max 10
Download paper: arxiv.ps1 -download "1706.03762" (Attention is All You Need)

### Notes

arXiv is free and open
Papers are preprints - may not be peer-reviewed
Great for staying current with research
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nantes
- Version: 1.0.4
## 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-30T05:00:42.000Z
- Expires at: 2026-05-07T05:00:42.000Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arxiv-osiris)
- [Send to Agent page](https://openagent3.xyz/skills/arxiv-osiris/agent)
- [JSON manifest](https://openagent3.xyz/skills/arxiv-osiris/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arxiv-osiris/agent.md)
- [Download page](https://openagent3.xyz/downloads/arxiv-osiris)