






















@@ -35,36 +35,80 @@ Follow the official CLI get-started steps. Don't guess install commands.
353536361. Check OS + shell.
37372. Verify CLI present: `op --version`.
38-3. Confirm desktop app integration is enabled (per get-started) and the app is unlocked.
39-4. REQUIRED: create a fresh tmux session for all `op` commands (no direct `op` calls outside tmux).
40-5. Sign in / authorize inside tmux: `op signin` (expect app prompt).
41-6. Verify access inside tmux: `op whoami` (must succeed before any secret read).
42-7. If multiple accounts: use `--account` or `OP_ACCOUNT`.
38+3. Detect the auth mode the user has set up:
39+- **Service account:** `OP_SERVICE_ACCOUNT_TOKEN` is set (typical for headless setups, CI, gateways).
40+- **Desktop app integration:** the 1Password desktop app is running with CLI integration enabled (typical on macOS / Windows / Linux desktops).
41+- **Standalone signin:** neither of the above — `op signin` will prompt for an account password every session.
42+4. Run `op` according to the auth mode (see below).
43+5. Verify access: `op whoami` should succeed before any secret read.
44+6. If multiple accounts: use `--account` or `OP_ACCOUNT`.
434544-## REQUIRED tmux session (tmux)
46+## Running `op` per auth mode
454746-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.
48+### Service account (preferred for headless / gateway use)
474948-Example (see `tmux` skill for socket conventions, do not reuse old session names):
50+Direct exec. No tmux, no signin step.
51+52+```bash
53+export OP_SERVICE_ACCOUNT_TOKEN="ops_..."
54+op vault list
55+op read op://app-prod/db/password
56+```
57+58+### Desktop app integration
59+60+Direct exec. **Do not wrap in tmux** — the desktop app integration uses a per-user IPC channel that is established for the gateway's exec environment but is not always reliably reachable from tmux subshells, which run with a different environment context. The transport differs per platform (XPC via the 1Password Browser Helper on macOS, a Unix domain socket on Linux, a named pipe on Windows); the practical rule for an agent is the same on all three: run `op` directly. On macOS, a useful symptom indicator is the 1Password integration group container at `~/Library/Group Containers/2BUA8C4S2C.com.1password/t/`.
61+62+```bash
63+op vault list # may trigger Touch ID / Windows Hello / system auth on first call
64+op whoami
65+```
66+67+If a call returns `1Password CLI couldn't connect to the 1Password desktop app`, do not switch to tmux. Confirm the desktop app is running and unlocked, then retry direct exec.
68+69+### Standalone signin (no app, interactive password)
70+71+This is the only mode where tmux helps. `op signin` prints an `eval`-style export setting an `OP_SESSION_*` token for POSIX shells; later commands in the same shell are authenticated by that env var. The gateway's per-command shells lose that state between calls, so a persistent tmux pane keeps the session token alive — but only if the export is actually applied with `eval` in a POSIX shell. Sending `op signin` as a plain command leaves stdout printed to the pane and `op whoami` will fail.
72+73+The tmux flow is only actionable on macOS/Linux hosts where the `tmux` skill is available. The example intentionally opens `/bin/sh` so the POSIX `eval "$(op signin ...)"` output is valid even when the user's normal shell is fish. On Windows, prefer desktop app integration or service account auth. If the user only has standalone interactive signin on Windows, stop and ask them to provide a persistent PowerShell session mechanism or switch to desktop integration/service account auth; do not translate the tmux commands directly.
49745075```bash
5176SOCKET_DIR="${OPENCLAW_TMUX_SOCKET_DIR:-${TMPDIR:-/tmp}/openclaw-tmux-sockets}"
5277mkdir -p "$SOCKET_DIR"
78+chmod 700 "$SOCKET_DIR"
5379SOCKET="$SOCKET_DIR/openclaw-op.sock"
5480SESSION="op-auth-$(date +%Y%m%d-%H%M%S)"
558156-tmux -S "$SOCKET" new -d -s "$SESSION" -n shell
57-tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op signin --account my.1password.com" Enter
58-tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op whoami" Enter
59-tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- "op vault list" Enter
60-tmux -S "$SOCKET" capture-pane -p -J -t "$SESSION":0.0 -S -200
61-tmux -S "$SOCKET" kill-session -t "$SESSION"
82+tmux -S "$SOCKET" new -d -s "$SESSION" -n shell /bin/sh
83+tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- 'eval "$(op signin --account my.1password.com)"' Enter
84+tmux -S "$SOCKET" capture-pane -t "$SESSION":0.0 -p -S - | tail -40
6285```
638687+Do not queue follow-up commands while signin is prompting. Poll the pane with `capture-pane`
88+until signin has either completed and the shell prompt has returned, or it is clearly waiting for
89+human input. If the prompt requires a password, MFA, or account choice, pause and ask the user to
90+complete signin in their own terminal; give them the socket and session values so they can attach
91+locally. The agent should not run `tmux attach` from exec because attach consumes the current TTY and
92+prevents scripted `send-keys` / `capture-pane` control.
93+94+After the shell prompt returns, verify by sending the checks into the same pane:
95+96+```bash
97+tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- 'op whoami' Enter
98+tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- 'op vault list' Enter
99+tmux -S "$SOCKET" capture-pane -t "$SESSION":0.0 -p -S - | tail -80
100+```
101+102+Keep the tmux session running so later `op read` / `op run` commands reuse the same authenticated shell.
103+104+Use the same `SOCKET` and `SESSION` values for every follow-up command in this standalone signin flow. The `-S "$SOCKET"` flag selects the tmux server socket; keep it in a user-owned `0700` directory, do not share it between users, and choose a new session name for each new signin attempt.
105+64106## Guardrails
6510766108- Never paste secrets into logs, chat, or code.
67109- Prefer `op run` / `op inject` over writing secrets to disk.
68-- If sign-in without app integration is needed, use `op account add`.
69-- If a command returns "account is not signed in", re-run `op signin` inside tmux and authorize in the app.
70-- Do not run `op` outside tmux; stop and ask if tmux is unavailable.
110+- If sign-in without app integration is needed, use `op account add` first.
111+- If a command returns "account is not signed in":
112+- service account: re-export `OP_SERVICE_ACCOUNT_TOKEN`
113+- desktop app: confirm the app is running and integration is enabled
114+- standalone: re-run `op signin` inside the same tmux session and authorize
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。