1password

steipete/agent-scripts · updated Apr 8, 2026

$npx skills add https://github.com/steipete/agent-scripts --skill 1password
0 commentsdiscussion
summary

Follow the official CLI get-started steps. Don't guess install commands.

skill.md

1Password CLI

Follow the official CLI get-started steps. Don't guess install commands.

References

  • references/get-started.md (install + app integration + sign-in flow)
  • references/cli-examples.md (real op examples)

Workflow

  1. Check OS + shell.
  2. Verify CLI present: op --version.
  3. Confirm desktop app integration is enabled (per get-started) and the app is unlocked.
  4. REQUIRED: create a fresh tmux session for all op commands (no direct op calls outside tmux).
  5. Sign in / authorize inside tmux: op signin (expect app prompt).
  6. Verify access inside tmux: op whoami (must succeed before any secret read).
  7. If multiple accounts: use --account or OP_ACCOUNT.

REQUIRED tmux session (T-Max)

The shell tool uses a fresh TTY per command. To avoid re-prompts and failures, always run op inside a dedicated tmux session with a fresh socket/session name.

Example (see tmux skill for socket conventions, do not reuse old session names):

SOCKET_DIR="${CLAWDBOT_TMUX_SOCKET_DIR:-${TMPDIR:-/tmp}/clawdbot-tmux-sockets}"
mkdir -p "$SOCKET_DIR"
SOCKET="$SOCKET_DIR/clawdbot-op.sock"
SESSION="op-auth-$(date +%Y%m%d-%H%M%S)"

tmux -S "$SOCKET" new -d -s "$SESSION" -n shell
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op signin --account my.1password.com" Enter
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op whoami" Enter
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op vault list" Enter
tmux -S "$SOCKET" capture-pane -p -J -t "$SESSION":0.0 -S -200
tmux -S "$SOCKET" kill-session -t "$SESSION"

Guardrails

  • Never paste secrets into logs, chat, or code.
  • Prefer op run / op inject over writing secrets to disk.
  • If sign-in without app integration is needed, use op account add.
  • If a command returns "account is not signed in", re-run op signin inside tmux and authorize in the app.
  • Do not run op outside tmux; stop and ask if tmux is unavailable.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.874 reviews
  • Omar Martin· Dec 24, 2024

    Keeps context tight: 1password is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Pratham Ware· Dec 16, 2024

    Useful defaults in 1password — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Dev Rao· Dec 16, 2024

    1password fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • William Ghosh· Dec 12, 2024

    1password is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Noor Nasser· Dec 8, 2024

    We added 1password from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Noor Wang· Nov 27, 2024

    1password reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • William Agarwal· Nov 15, 2024

    I recommend 1password for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Soo Li· Nov 15, 2024

    1password has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Ama Johnson· Nov 7, 2024

    Registry listing for 1password matched our evaluation — installs cleanly and behaves as described in the markdown.

  • William Anderson· Nov 3, 2024

    Solid pick for teams standardizing on skills: 1password is focused, and the summary matches what you get after install.

showing 1-10 of 74

1 / 8