{
  "schemaVersion": "1.0",
  "item": {
    "slug": "aria2",
    "name": "Aria2 Downloader",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ahiven/aria2",
    "canonicalUrl": "https://clawhub.ai/ahiven/aria2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/aria2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aria2",
    "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/aria2"
    },
    "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/aria2",
    "agentPageUrl": "https://openagent3.xyz/skills/aria2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aria2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aria2/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": "Aria2 下载管理",
        "body": "aria2 以 daemon 模式运行，通过 RPC 接口管理任务。"
      },
      {
        "title": "配置",
        "body": "配置文件: 请根据实际情况调整 aria2.conf 路径\nRPC 端口: 6800 (默认)\nRPC 密钥: 请在指令中使用 <YOUR_RPC_SECRET> 或配置环境变量\n下载目录: 根据主机情况调整"
      },
      {
        "title": "磁力链接或 HTTP",
        "body": "# 请将 <YOUR_RPC_SECRET> 替换为实际密钥\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.addUri\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",[\"<URL>\"]]}'"
      },
      {
        "title": "种子文件",
        "body": "# 先 base64 编码\nTORRENT_B64=$(base64 -w0 /path/to/file.torrent)\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d \"{\\\"jsonrpc\\\":\\\"2.0\\\",\\\"id\\\":\\\"1\\\",\\\"method\\\":\\\"aria2.addTorrent\\\",\\\"params\\\":[\\\"token:e603c18b871468e81ec2b2458d3356e5\\\",\\\"$TORRENT_B64\\\"]}\""
      },
      {
        "title": "所有活动任务",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellActive\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\"]}' | jq '.result[] | {gid, status, completedLength, totalLength, downloadSpeed, files: [.files[].path]}'"
      },
      {
        "title": "指定任务 (用 GID)",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellStatus\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}' | jq '{status, completedLength, totalLength, downloadSpeed}'"
      },
      {
        "title": "等待中的任务",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellWaiting\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",0,10]}'"
      },
      {
        "title": "已完成/已停止的任务",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellStopped\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",0,10]}'"
      },
      {
        "title": "暂停",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.pause\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}'"
      },
      {
        "title": "继续",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.unpause\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}'"
      },
      {
        "title": "删除",
        "body": "curl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.remove\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}'"
      },
      {
        "title": "下载完成后自动流程",
        "body": "本 Skill 需要配合主机端的自动转存脚本使用。建议在 aria2.conf 中配置 on-download-complete 钩子。"
      },
      {
        "title": "检查服务状态",
        "body": "# 检查 aria2 daemon 是否运行\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.getVersion\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\"]}'\n\n## 快速命令格式\n\n用户发送类似以下格式时直接添加下载：\n- `/aria2 magnet:?xt=urn:btih:...`\n- `/aria2 https://example.com/file.zip`\n- `下载这个磁力 magnet:?xt=...`"
      }
    ],
    "body": "Aria2 下载管理\n\naria2 以 daemon 模式运行，通过 RPC 接口管理任务。\n\n配置\n配置文件: 请根据实际情况调整 aria2.conf 路径\nRPC 端口: 6800 (默认)\nRPC 密钥: 请在指令中使用 <YOUR_RPC_SECRET> 或配置环境变量\n下载目录: 根据主机情况调整\n添加下载任务\n磁力链接或 HTTP\n# 请将 <YOUR_RPC_SECRET> 替换为实际密钥\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.addUri\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",[\"<URL>\"]]}'\n\n种子文件\n# 先 base64 编码\nTORRENT_B64=$(base64 -w0 /path/to/file.torrent)\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d \"{\\\"jsonrpc\\\":\\\"2.0\\\",\\\"id\\\":\\\"1\\\",\\\"method\\\":\\\"aria2.addTorrent\\\",\\\"params\\\":[\\\"token:e603c18b871468e81ec2b2458d3356e5\\\",\\\"$TORRENT_B64\\\"]}\"\n\n查看任务状态\n所有活动任务\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellActive\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\"]}' | jq '.result[] | {gid, status, completedLength, totalLength, downloadSpeed, files: [.files[].path]}'\n\n指定任务 (用 GID)\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellStatus\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}' | jq '{status, completedLength, totalLength, downloadSpeed}'\n\n等待中的任务\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellWaiting\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",0,10]}'\n\n已完成/已停止的任务\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.tellStopped\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",0,10]}'\n\n控制任务\n暂停\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.pause\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}'\n\n继续\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.unpause\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}'\n\n删除\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.remove\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\",\"<GID>\"]}'\n\n下载完成后自动流程\n\n本 Skill 需要配合主机端的自动转存脚本使用。建议在 aria2.conf 中配置 on-download-complete 钩子。\n\n检查服务状态\n# 检查 aria2 daemon 是否运行\ncurl -s http://localhost:6800/jsonrpc -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":\"1\",\"method\":\"aria2.getVersion\",\"params\":[\"token:e603c18b871468e81ec2b2458d3356e5\"]}'\n\n## 快速命令格式\n\n用户发送类似以下格式时直接添加下载：\n- `/aria2 magnet:?xt=urn:btih:...`\n- `/aria2 https://example.com/file.zip`\n- `下载这个磁力 magnet:?xt=...`"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ahiven/aria2",
    "publisherUrl": "https://clawhub.ai/ahiven/aria2",
    "owner": "ahiven",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/aria2",
    "downloadUrl": "https://openagent3.xyz/downloads/aria2",
    "agentUrl": "https://openagent3.xyz/skills/aria2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aria2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aria2/agent.md"
  }
}