{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arxiv-research",
    "name": "ArXiv Research",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nantes/arxiv-research",
    "canonicalUrl": "https://clawhub.ai/nantes/arxiv-research",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arxiv-research",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-research",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "arxiv-osiris/arxiv_search.py",
      "arxiv-osiris/SKILL.md",
      "arxiv-osiris/_meta.json",
      "arxiv_search.py",
      "SKILL.md",
      "_meta.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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-research"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/arxiv-research",
    "agentPageUrl": "https://openagent3.xyz/skills/arxiv-research/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-research/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-research/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "ArXiv Research Skill",
        "body": "Search and download scientific papers from arXiv.org - the largest free distribution of scientific preprints."
      },
      {
        "title": "What it does",
        "body": "Search papers by keywords, titles, abstracts\nDownload PDFs directly\nFilter by category (physics, cs, math, etc.)\nGet metadata including authors, dates, categories"
      },
      {
        "title": "Installation",
        "body": "# Install Python dependency\npip install arxiv"
      },
      {
        "title": "Search for papers",
        "body": "# Basic search\npython arxiv_search.py search \"quantum computing\"\n\n# With max results\npython arxiv_search.py search \"machine learning\" --max 10\n\n# With category filter (physics, cs, math, q-bio, etc.)\npython arxiv_search.py search \"neural networks\" --cats cs,stat"
      },
      {
        "title": "Download a paper",
        "body": "# By arXiv ID\npython arxiv_search.py download \"2310.12345\""
      },
      {
        "title": "Python API",
        "body": "from arxiv import search, download\n\n# Search\nresults = search(\"simulation hypothesis\", max_results=5)\nfor paper in results:\n    print(f\"{paper.title} - {paper.pdf_url}\")\n\n# Download\npaper.download(\"/path/to/save\")"
      },
      {
        "title": "Categories",
        "body": "Common arXiv categories:\n\ncs.* - Computer Science\nphysics.* - Physics\nmath.* - Mathematics\nq-bio.* - Quantitative Biology\nq-fin.* - Quantitative Finance\nstat.* - Statistics"
      },
      {
        "title": "Examples",
        "body": "Search for consciousness papers: python arxiv_search.py search \"consciousness\" --max 5\nFind physics papers: python arxiv_search.py search \"quantum\" --cats physics --max 10\nDownload paper: python arxiv_search.py download \"1706.03762\" (Attention is All You Need)"
      },
      {
        "title": "Notes",
        "body": "arXiv is free and open\nPapers are preprints - may not be peer-reviewed\nGreat for staying current with research"
      }
    ],
    "body": "ArXiv Research Skill\n\nSearch and download scientific papers from arXiv.org - the largest free distribution of scientific preprints.\n\nWhat it does\nSearch papers by keywords, titles, abstracts\nDownload PDFs directly\nFilter by category (physics, cs, math, etc.)\nGet metadata including authors, dates, categories\nInstallation\n# Install Python dependency\npip install arxiv\n\nUsage\nSearch for papers\n# Basic search\npython arxiv_search.py search \"quantum computing\"\n\n# With max results\npython arxiv_search.py search \"machine learning\" --max 10\n\n# With category filter (physics, cs, math, q-bio, etc.)\npython arxiv_search.py search \"neural networks\" --cats cs,stat\n\nDownload a paper\n# By arXiv ID\npython arxiv_search.py download \"2310.12345\"\n\nPython API\nfrom arxiv import search, download\n\n# Search\nresults = search(\"simulation hypothesis\", max_results=5)\nfor paper in results:\n    print(f\"{paper.title} - {paper.pdf_url}\")\n\n# Download\npaper.download(\"/path/to/save\")\n\nCategories\n\nCommon arXiv categories:\n\ncs.* - Computer Science\nphysics.* - Physics\nmath.* - Mathematics\nq-bio.* - Quantitative Biology\nq-fin.* - Quantitative Finance\nstat.* - Statistics\nExamples\nSearch for consciousness papers: python arxiv_search.py search \"consciousness\" --max 5\nFind physics papers: python arxiv_search.py search \"quantum\" --cats physics --max 10\nDownload paper: python arxiv_search.py download \"1706.03762\" (Attention is All You Need)\nNotes\narXiv is free and open\nPapers are preprints - may not be peer-reviewed\nGreat for staying current with research"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nantes/arxiv-research",
    "publisherUrl": "https://clawhub.ai/nantes/arxiv-research",
    "owner": "nantes",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arxiv-research",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-research",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-research/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-research/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-research/agent.md"
  }
}