#1Password setup on Raspberry Pi
1 messages ยท Page 1 of 1 (latest)
I don't see specific 1Password CLI docs in the Clawdbot repo, but this is a common setup issue. Let me think through common pitfalls:
Most likely culprits for RPi + 1Password CLI:
-
Architecture mismatch - RPi uses ARM64. Make sure you downloaded the arm64 binary, not x86_64. Check with:
uname -m(should showaarch64) -
Service account permissions - The service account needs explicit access to the shared vault. Did you grant it access in the 1Password web UI under Settings โ Service Accounts?
-
Token issues - Service account tokens start with
ops_(notoplike personal tokens). The full token should be in~/.config/op/config(Linux) or~/.op/config -
Sign-in required first - Even with service accounts, the CLI sometimes needs a one-time
op signin --account <shortname>with your personal account first to initialize, then the service account can be used for automation
Quick diagnostic - run these on the RPi:
# Check architecture
uname -m