openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Bitwarden

Access and manage Bitwarden/Vaultwarden passwords securely using the rbw CLI.

综合技能

作者:Asleep @asleep123

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 4 · 3.8k · 34 current installs · 34 all-time installs

4

安装量(当前) 34

🛡 VirusTotal :良性 · OpenClaw :良性

Package:asleep123/bitwarden

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally consistent: it only instructs the agent to run the rbw CLI to access a Bitwarden/Vaultwarden vault and does not request unrelated credentials or install arbitrary code.

综合结论

This skill is coherent: it simply tells the agent to run the rbw CLI to manage your Bitwarden/Vaultwarden vault. Before enabling it, confirm you have a trusted rbw binary installed and understand that the agent will prompt for (and may temporarily hold) your master password, 2FA, and session tokens. If you prefer tighter control, only allow this skill to run when you explicitly invoke it (avoid enabling autonomous invocation for sensitive work…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Bitwarden」。简介:Access and manage Bitwarden/Vaultwarden passwords securely using the rbw CLI.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/asleep123/bitwarden/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: bitwarden
description: Access and manage Bitwarden/Vaultwarden passwords securely using the rbw CLI.
metadata: {"clawdbot":{"emoji":"🔒","os":["linux","macos"],"requires":{"bins":["rbw"]}}}
---

# Bitwarden Skill

Interact with Bitwarden or Vaultwarden vaults using the `rbw` CLI.

## Usage & Configuration

### 1. Setup (First Run)
```bash
rbw config set email <your_email>
rbw config set baseurl <vault_url> # Optional, defaults to bitwarden.com
rbw login
```
*Note: Login requires the Master Password and potentially 2FA (email/TOTP).*

### 2. Unlock
```bash
rbw unlock
```
*Note: `rbw` caches the session key in the agent. If interactive input is required (pinentry), see if you can setup `pinentry-curses` (CLI-based pinentry) as the pinentry provider.*

### 3. Management
- **List items:** `rbw list`
- **Get item:** `rbw get "Name"`
- **Get JSON:** `rbw get --full "Name"`
- **Search:** `rbw search "query"`
- **Add:** `rbw add ...`
- **Sync:** `rbw sync` (Refresh vault)
*Note: Always sync before getting details to ensure accuracy.*
## Tools

The agent uses `exec` to run `rbw` commands.
- For unlocking, use `tmux` if `rbw` prompts for a password via pinentry-curses.
- For adding items, `rbw add` may require `EDITOR` configuration or `tmux`.