โ† All skills
Tencent SkillHub ยท Developer Tools

bitclawden

Look up, create, and edit credentials in Bitwarden vault via the bw CLI. Use when asked to store, retrieve, find, or manage passwords, secrets, or credentials.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Look up, create, and edit credentials in Bitwarden vault via the bw CLI. Use when asked to store, retrieve, find, or manage passwords, secrets, or credentials.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs