{
  "schemaVersion": "1.0",
  "item": {
    "slug": "qbittorrent",
    "name": "Qbittorrent",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/jmagar/qbittorrent",
    "canonicalUrl": "https://clawhub.ai/jmagar/qbittorrent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/qbittorrent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qbittorrent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/qbit-api.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/qbittorrent"
    },
    "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/qbittorrent",
    "agentPageUrl": "https://openagent3.xyz/skills/qbittorrent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qbittorrent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qbittorrent/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "qBittorrent WebUI API",
        "body": "Manage torrents via qBittorrent's WebUI API (v4.1+)."
      },
      {
        "title": "Setup",
        "body": "Config: ~/.clawdbot/credentials/qbittorrent/config.json\n\n{\n  \"url\": \"http://localhost:8080\",\n  \"username\": \"admin\",\n  \"password\": \"adminadmin\"\n}"
      },
      {
        "title": "List Torrents",
        "body": "# All torrents\n./scripts/qbit-api.sh list\n\n# Filter by status\n./scripts/qbit-api.sh list --filter downloading\n./scripts/qbit-api.sh list --filter seeding\n./scripts/qbit-api.sh list --filter paused\n\n# Filter by category\n./scripts/qbit-api.sh list --category movies\n\nFilters: all, downloading, seeding, completed, paused, active, inactive, stalled, errored"
      },
      {
        "title": "Get Torrent Info",
        "body": "./scripts/qbit-api.sh info <hash>\n./scripts/qbit-api.sh files <hash>\n./scripts/qbit-api.sh trackers <hash>"
      },
      {
        "title": "Add Torrent",
        "body": "# By magnet or URL\n./scripts/qbit-api.sh add \"magnet:?xt=...\" --category movies\n\n# By file\n./scripts/qbit-api.sh add-file /path/to/file.torrent --paused"
      },
      {
        "title": "Control Torrents",
        "body": "./scripts/qbit-api.sh pause <hash>         # or \"all\"\n./scripts/qbit-api.sh resume <hash>        # or \"all\"\n./scripts/qbit-api.sh delete <hash>        # keep files\n./scripts/qbit-api.sh delete <hash> --files  # delete files too\n./scripts/qbit-api.sh recheck <hash>"
      },
      {
        "title": "Categories & Tags",
        "body": "./scripts/qbit-api.sh categories\n./scripts/qbit-api.sh tags\n./scripts/qbit-api.sh set-category <hash> movies\n./scripts/qbit-api.sh add-tags <hash> \"important,archive\""
      },
      {
        "title": "Transfer Info",
        "body": "./scripts/qbit-api.sh transfer   # global speed/stats\n./scripts/qbit-api.sh speedlimit # current limits\n./scripts/qbit-api.sh set-speedlimit --down 5M --up 1M"
      },
      {
        "title": "App Info",
        "body": "./scripts/qbit-api.sh version\n./scripts/qbit-api.sh preferences"
      },
      {
        "title": "Response Format",
        "body": "Torrent object includes:\n\nhash, name, state, progress\ndlspeed, upspeed, eta\nsize, downloaded, uploaded\ncategory, tags, save_path\n\nStates: downloading, stalledDL, uploading, stalledUP, pausedDL, pausedUP, queuedDL, queuedUP, checkingDL, checkingUP, error, missingFiles"
      }
    ],
    "body": "qBittorrent WebUI API\n\nManage torrents via qBittorrent's WebUI API (v4.1+).\n\nSetup\n\nConfig: ~/.clawdbot/credentials/qbittorrent/config.json\n\n{\n  \"url\": \"http://localhost:8080\",\n  \"username\": \"admin\",\n  \"password\": \"adminadmin\"\n}\n\nQuick Reference\nList Torrents\n# All torrents\n./scripts/qbit-api.sh list\n\n# Filter by status\n./scripts/qbit-api.sh list --filter downloading\n./scripts/qbit-api.sh list --filter seeding\n./scripts/qbit-api.sh list --filter paused\n\n# Filter by category\n./scripts/qbit-api.sh list --category movies\n\n\nFilters: all, downloading, seeding, completed, paused, active, inactive, stalled, errored\n\nGet Torrent Info\n./scripts/qbit-api.sh info <hash>\n./scripts/qbit-api.sh files <hash>\n./scripts/qbit-api.sh trackers <hash>\n\nAdd Torrent\n# By magnet or URL\n./scripts/qbit-api.sh add \"magnet:?xt=...\" --category movies\n\n# By file\n./scripts/qbit-api.sh add-file /path/to/file.torrent --paused\n\nControl Torrents\n./scripts/qbit-api.sh pause <hash>         # or \"all\"\n./scripts/qbit-api.sh resume <hash>        # or \"all\"\n./scripts/qbit-api.sh delete <hash>        # keep files\n./scripts/qbit-api.sh delete <hash> --files  # delete files too\n./scripts/qbit-api.sh recheck <hash>\n\nCategories & Tags\n./scripts/qbit-api.sh categories\n./scripts/qbit-api.sh tags\n./scripts/qbit-api.sh set-category <hash> movies\n./scripts/qbit-api.sh add-tags <hash> \"important,archive\"\n\nTransfer Info\n./scripts/qbit-api.sh transfer   # global speed/stats\n./scripts/qbit-api.sh speedlimit # current limits\n./scripts/qbit-api.sh set-speedlimit --down 5M --up 1M\n\nApp Info\n./scripts/qbit-api.sh version\n./scripts/qbit-api.sh preferences\n\nResponse Format\n\nTorrent object includes:\n\nhash, name, state, progress\ndlspeed, upspeed, eta\nsize, downloaded, uploaded\ncategory, tags, save_path\n\nStates: downloading, stalledDL, uploading, stalledUP, pausedDL, pausedUP, queuedDL, queuedUP, checkingDL, checkingUP, error, missingFiles"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jmagar/qbittorrent",
    "publisherUrl": "https://clawhub.ai/jmagar/qbittorrent",
    "owner": "jmagar",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/qbittorrent",
    "downloadUrl": "https://openagent3.xyz/downloads/qbittorrent",
    "agentUrl": "https://openagent3.xyz/skills/qbittorrent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qbittorrent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qbittorrent/agent.md"
  }
}