一键导入
woz-login
// Authenticate with the Woz service. Use when the user needs to log in or when authentication is required.
// Authenticate with the Woz service. Use when the user needs to log in or when authentication is required.
Report a WOZCODE bug. Same backend as /woz-feedback, tagged for bug triage. Session context (current session id, anonymous id, OS, arch, Node version) is auto-attached.
Share feedback about WOZCODE — feature requests, general thoughts, anything that's working or not. For broken-behavior reports use /woz-bug (same backend, bug-tagged).
Compare WOZCODE vs vanilla Claude Code on the user's codebase — real cost, turn, and time savings. TRIGGER on "compare woz", "how much does woz save", "benchmark woz", "woz vs claude", "show me savings", or /woz-benchmark.
Clear stored Woz credentials and log out.
Show WOZCODE savings report - calls saved, time saved, tokens saved, and lifetime totals.
Show current Woz authentication status.
| name | woz-login |
| description | Authenticate with the Woz service. Use when the user needs to log in or when authentication is required. |
| allowed-tools | Bash(node *), Bash(npx *) |
If the user passed --token <token> as arguments, skip directly to the Token Login section below.
First try the installed WOZCODE login command. This opens a browser for the user to log in:
node "${CODEX_HOME:-$HOME/.codex}/plugins/wozcode/scripts/wozcode-cli-codex.js" login
If the command exits with code 0, login succeeded — confirm to the user.
If Codex blocks the browser launch or the command fails before the browser opens, ask the user to run this command in their regular terminal outside Codex:
npx @wozcode/codex login
Tell the user to return after the command prints that authentication succeeded.
Use this when:
--token <token> as arguments to this skillOnce you have the token (from args or from the user), run:
node "${CODEX_HOME:-$HOME/.codex}/plugins/wozcode/scripts/wozcode-cli-codex.js" login --token '<token>'
If Codex blocks the installed command from running, ask the user to run this in their regular terminal outside Codex:
npx @wozcode/codex login --token '<token>'
Replace <token> with the actual token. The npm command still requires WOZCODE for Codex to be installed first.
Confirm success or relay any error to the user.