{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arxiv-cli-tools",
    "name": "Arxiv Cli Tools",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/killgfat/arxiv-cli-tools",
    "canonicalUrl": "https://clawhub.ai/killgfat/arxiv-cli-tools",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arxiv-cli-tools",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-cli-tools",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-cli-tools"
    },
    "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-cli-tools",
    "agentPageUrl": "https://openagent3.xyz/skills/arxiv-cli-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-cli-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-cli-tools/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": "Metadata",
        "body": "KeyValuenamearxiv-cli-toolsdescriptionCommand-line interface for searching and downloading arXiv papersauthorOpenClawversion0.1.0licenseMITupstreamhttps://pypi.org/project/arxiv-cli-tools/"
      },
      {
        "title": "Option 1: pipx (推荐)",
        "body": "pipx install arxiv-cli-tools"
      },
      {
        "title": "Option 2: pip",
        "body": "pip install arxiv-cli-tools"
      },
      {
        "title": "搜索论文",
        "body": "arxiv-cli search \"prompt engineering\" -n 5 --summary\n\n常用选项:\n\n-n, --num - 结果数量限制\n--summary - 显示摘要\n--authors - 按作者过滤\n--categories - 按分类过滤"
      },
      {
        "title": "下载论文",
        "body": "arxiv-cli download --id 2101.01234 --id 2105.06789 --dest papers --skip-existing\n\n常用选项:\n\n--id - 论文ID（可多次使用）\n--dest - 下载目录\n--skip-existing - 跳过已存在的文件\n--pdf - 下载PDF格式"
      },
      {
        "title": "查看帮助",
        "body": "arxiv-cli --help\narxiv-cli search --help\narxiv-cli download --help"
      },
      {
        "title": "Examples",
        "body": "搜索最新5篇关于深度学习的论文:\n\narxiv-cli search \"deep learning\" -n 5 --summary\n\n按作者搜索:\n\narxiv-cli search \"attention mechanism\" --authors \"Vaswani\"\n\n下载特定论文到指定目录:\n\narxiv-cli download --id 1706.03762 --dest ~/papers"
      },
      {
        "title": "Notes",
        "body": "该工具基于 arxiv Python 客户端构建\n不需要 API 密钥\n请遵守 arXiv 的使用条款和速率限制"
      }
    ],
    "body": "SKILL.md - arxiv-cli-tools\nMetadata\nKey\tValue\nname\tarxiv-cli-tools\ndescription\tCommand-line interface for searching and downloading arXiv papers\nauthor\tOpenClaw\nversion\t0.1.0\nlicense\tMIT\nupstream\thttps://pypi.org/project/arxiv-cli-tools/\nInstallation\nOption 1: pipx (推荐)\npipx install arxiv-cli-tools\n\nOption 2: pip\npip install arxiv-cli-tools\n\nUsage\n搜索论文\narxiv-cli search \"prompt engineering\" -n 5 --summary\n\n\n常用选项:\n\n-n, --num - 结果数量限制\n--summary - 显示摘要\n--authors - 按作者过滤\n--categories - 按分类过滤\n下载论文\narxiv-cli download --id 2101.01234 --id 2105.06789 --dest papers --skip-existing\n\n\n常用选项:\n\n--id - 论文ID（可多次使用）\n--dest - 下载目录\n--skip-existing - 跳过已存在的文件\n--pdf - 下载PDF格式\n查看帮助\narxiv-cli --help\narxiv-cli search --help\narxiv-cli download --help\n\nExamples\n\n搜索最新5篇关于深度学习的论文:\n\narxiv-cli search \"deep learning\" -n 5 --summary\n\n\n按作者搜索:\n\narxiv-cli search \"attention mechanism\" --authors \"Vaswani\"\n\n\n下载特定论文到指定目录:\n\narxiv-cli download --id 1706.03762 --dest ~/papers\n\nNotes\n该工具基于 arxiv Python 客户端构建\n不需要 API 密钥\n请遵守 arXiv 的使用条款和速率限制"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/killgfat/arxiv-cli-tools",
    "publisherUrl": "https://clawhub.ai/killgfat/arxiv-cli-tools",
    "owner": "killgfat",
    "version": "0.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arxiv-cli-tools",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-cli-tools",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-cli-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-cli-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-cli-tools/agent.md"
  }
}