#1Password setup on Raspberry Pi

1 messages ยท Page 1 of 1 (latest)

hexed sealBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> โœ… Mark Solution

lament girderBOT
#

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:

  1. Architecture mismatch - RPi uses ARM64. Make sure you downloaded the arm64 binary, not x86_64. Check with: uname -m (should show aarch64)

  2. 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?

  3. Token issues - Service account tokens start with ops_ (not op like personal tokens). The full token should be in ~/.config/op/config (Linux) or ~/.op/config

  4. 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