@@ -33,7 +33,7 @@ docker build --build-arg OPENCLAW_IMAGE_VERSION=2026.5.26 -t openclaw-docker:loc
3333| ` rg ` | APT package (` ripgrep ` ) | Fast recursive text and file search for code and logs. |
3434| ` rbw ` | Release binary | Unofficial Bitwarden CLI for retrieving secrets from Vaultwarden. |
3535| ` rbw-agent ` | Release binary | Background agent used by ` rbw ` to unlock and cache vault access. |
36- | ` rbw_master_password_from_env .py` | Local helper script | Pinentry-compatible helper that reads ` BITWARDEN_MASTER_PASSWORD ` . |
36+ | ` pinentry .py` | Local helper script | Pinentry-compatible helper that reads ` BITWARDEN_MASTER_PASSWORD ` . |
3737| ` karakeep ` | Global npm package | Karakeep CLI for interacting with Karakeep services. |
3838| ` summarize ` | Global npm package | Summarization CLI used by skills and media workflows. |
3939| ` ffmpeg ` | APT package | Audio and video processing dependency for media workflows. |
@@ -101,14 +101,14 @@ without relying on a browser or desktop integration.
101101` rbw-agent ` normally asks ` pinentry ` to prompt for the master password. In this
102102container, interactive pinentry prompts are awkward and often unavailable, so
103103the pinentry command should be replaced with
104- ` /usr/local/bin/rbw_master_password_from_env .py ` . The script emulates the small
104+ ` /usr/local/bin/pinentry .py ` . The script emulates the small
105105pinentry protocol surface that ` rbw-agent ` needs and returns the master password
106106from the ` BITWARDEN_MASTER_PASSWORD ` environment variable instead.
107107
108108``` sh
109109rbw config set email john@doe.com
110110rbw config set base_url https://vault.doe.com
111- rbw config set pinentry /usr/local/bin/rbw_master_password_from_env .py
111+ rbw config set pinentry /usr/local/bin/pinentry .py
112112rbw login
113113rbw unlock
114114```
@@ -127,7 +127,7 @@ instead:
127127 "notifications_url" : null ,
128128 "lock_timeout" : 3600 ,
129129 "sync_interval" : 300 ,
130- "pinentry" : " /usr/local/bin/rbw_master_password_from_env .py" ,
130+ "pinentry" : " /usr/local/bin/pinentry .py" ,
131131 "client_cert_path" : null
132132}
133133```
0 commit comments