# Send bitclawden to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/bitclawden",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitclawden",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Bitwarden CLI

Manage credentials in Bitwarden vault. Follow the official CLI docs — don't guess commands.

### Workflow

Verify CLI present: bw --version.
Check vault status: bw status.
If locked, tell the user to run bw unlock and set BW_SESSION.
Verify access: bw status must show unlocked before any vault operation.
After creating or editing items, run bw sync.

### Lookup

bw list items --search "query"
bw get item "name"
bw get password "name"
bw get username "name"
bw get totp "name"
bw list items --folderid <folder-id>
bw list folders

### Create

# Login item (type 1=Login, 2=Secure Note, 3=Card, 4=Identity)
echo '{"type":1,"name":"Example","login":{"username":"user@example.com","password":"s3cret","uris":[{"uri":"https://example.com"}]}}' | bw encode | bw create item

# Folder
bw create folder "$(echo '{"name":"Work"}' | bw encode)"

### Edit

bw get item <id> | jq '.login.password = "newpass"' | bw encode | bw edit item <id>
bw get item <id> | jq '.folderId = "<folder-id>"' | bw encode | bw edit item <id>

### Generate

bw generate -ulns --length 24
bw generate --passphrase --words 4 --separator "-"

### Guardrails

Never paste secrets into logs, chat, or code.
Prefer showing username and site — only reveal passwords if explicitly requested.
Always generate a strong password with bw generate unless the user provides one.
If a command returns "Vault is locked", stop and ask the user to unlock.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: typhonius
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T18:01:48.563Z
- Expires at: 2026-05-18T18:01:48.563Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bitclawden)
- [Send to Agent page](https://openagent3.xyz/skills/bitclawden/agent)
- [JSON manifest](https://openagent3.xyz/skills/bitclawden/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bitclawden/agent.md)
- [Download page](https://openagent3.xyz/downloads/bitclawden)