Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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.
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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Manage credentials in Bitwarden vault. Follow the official CLI docs โ don't guess commands.
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.
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
# 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)"
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>
bw generate -ulns --length 24 bw generate --passphrase --words 4 --separator "-"
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.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.