{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bitclawden",
    "name": "bitclawden",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/typhonius/bitclawden",
    "canonicalUrl": "https://clawhub.ai/typhonius/bitclawden",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bitclawden",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitclawden",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. 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",
      "slug": "bitclawden",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T18:01:48.563Z",
      "expiresAt": "2026-05-18T18:01:48.563Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitclawden",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitclawden",
        "contentDisposition": "attachment; filename=\"bitclawden-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bitclawden"
      },
      "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/bitclawden"
    },
    "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/bitclawden",
    "agentPageUrl": "https://openagent3.xyz/skills/bitclawden/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bitclawden/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bitclawden/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": "Bitwarden CLI",
        "body": "Manage credentials in Bitwarden vault. Follow the official CLI docs — don't guess commands."
      },
      {
        "title": "Workflow",
        "body": "Verify CLI present: bw --version.\nCheck vault status: bw status.\nIf locked, tell the user to run bw unlock and set BW_SESSION.\nVerify access: bw status must show unlocked before any vault operation.\nAfter creating or editing items, run bw sync."
      },
      {
        "title": "Lookup",
        "body": "bw list items --search \"query\"\nbw get item \"name\"\nbw get password \"name\"\nbw get username \"name\"\nbw get totp \"name\"\nbw list items --folderid <folder-id>\nbw list folders"
      },
      {
        "title": "Create",
        "body": "# Login item (type 1=Login, 2=Secure Note, 3=Card, 4=Identity)\necho '{\"type\":1,\"name\":\"Example\",\"login\":{\"username\":\"user@example.com\",\"password\":\"s3cret\",\"uris\":[{\"uri\":\"https://example.com\"}]}}' | bw encode | bw create item\n\n# Folder\nbw create folder \"$(echo '{\"name\":\"Work\"}' | bw encode)\""
      },
      {
        "title": "Edit",
        "body": "bw get item <id> | jq '.login.password = \"newpass\"' | bw encode | bw edit item <id>\nbw get item <id> | jq '.folderId = \"<folder-id>\"' | bw encode | bw edit item <id>"
      },
      {
        "title": "Generate",
        "body": "bw generate -ulns --length 24\nbw generate --passphrase --words 4 --separator \"-\""
      },
      {
        "title": "Guardrails",
        "body": "Never paste secrets into logs, chat, or code.\nPrefer showing username and site — only reveal passwords if explicitly requested.\nAlways generate a strong password with bw generate unless the user provides one.\nIf a command returns \"Vault is locked\", stop and ask the user to unlock."
      }
    ],
    "body": "Bitwarden CLI\n\nManage credentials in Bitwarden vault. Follow the official CLI docs — don't guess commands.\n\nWorkflow\nVerify CLI present: bw --version.\nCheck vault status: bw status.\nIf locked, tell the user to run bw unlock and set BW_SESSION.\nVerify access: bw status must show unlocked before any vault operation.\nAfter creating or editing items, run bw sync.\nLookup\nbw list items --search \"query\"\nbw get item \"name\"\nbw get password \"name\"\nbw get username \"name\"\nbw get totp \"name\"\nbw list items --folderid <folder-id>\nbw list folders\n\nCreate\n# Login item (type 1=Login, 2=Secure Note, 3=Card, 4=Identity)\necho '{\"type\":1,\"name\":\"Example\",\"login\":{\"username\":\"user@example.com\",\"password\":\"s3cret\",\"uris\":[{\"uri\":\"https://example.com\"}]}}' | bw encode | bw create item\n\n# Folder\nbw create folder \"$(echo '{\"name\":\"Work\"}' | bw encode)\"\n\nEdit\nbw get item <id> | jq '.login.password = \"newpass\"' | bw encode | bw edit item <id>\nbw get item <id> | jq '.folderId = \"<folder-id>\"' | bw encode | bw edit item <id>\n\nGenerate\nbw generate -ulns --length 24\nbw generate --passphrase --words 4 --separator \"-\"\n\nGuardrails\nNever paste secrets into logs, chat, or code.\nPrefer showing username and site — only reveal passwords if explicitly requested.\nAlways generate a strong password with bw generate unless the user provides one.\nIf a command returns \"Vault is locked\", stop and ask the user to unlock."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/typhonius/bitclawden",
    "publisherUrl": "https://clawhub.ai/typhonius/bitclawden",
    "owner": "typhonius",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bitclawden",
    "downloadUrl": "https://openagent3.xyz/downloads/bitclawden",
    "agentUrl": "https://openagent3.xyz/skills/bitclawden/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bitclawden/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bitclawden/agent.md"
  }
}