woz-login
Authenticate with the Woz service. Use when the user needs to log in or when authentication is required.
git clone --depth 1 https://github.com/WithWoz/wozcode-plugin /tmp/woz-login && cp -r /tmp/woz-login/skills/woz-login ~/.claude/skills/woz-loginSKILL.md
# Woz Login Flow
If the user passed `--token <token>` as arguments, skip directly to the Token Login section below.
## Browser Login (Preferred)
Run the Woz authentication flow. This opens a browser for the user to log in:
```bash
node --no-warnings=ExperimentalWarning ${CLAUDE_PLUGIN_ROOT}/scripts/wozcode-cli.js login
```
If the command exits with code 0, login succeeded — confirm to the user.
## Token Login
Use this when:
- The user passed `--token <token>` as arguments to this skill
- The browser login above timed out or failed and the user provides a token
If the browser login failed:
1. The auth URL is visible in the output above
2. Tell the user to open that URL in their browser and complete the login
3. Ask the user to copy the token shown on the auth page after login
Once you have the token (from args or from the user), run:
```bash
node --no-warnings=ExperimentalWarning ${CLAUDE_PLUGIN_ROOT}/scripts/wozcode-cli.js login --token '<token>'
```
Replace `<token>` with the actual token.
Confirm success or relay any error to the user.WOZCODE free-plan fallback agent — active when the monthly free-plan cap is exhausted. Claude Code's built-in Read, Edit, Write, Grep, Glob, and NotebookEdit are available; WOZCODE MCP tools are disallowed until the cap resets or the user upgrades.
WozCode enhanced coding agent with smart search, batch editing, and SQL introspection. Use as the default main thread agent.
Fast read-only agent for file searches, symbol lookups, and codebase questions like "where is X defined?", "where is X called?", or "how does X flow through the system?". Prefer over shell-based exploration when answering would take 3+ Search/Sql calls. Cheaper model (haiku) so delegation pays for itself on any real scan.
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.
Semantically search past Claude Code sessions to recall commands, solutions, and context from prior conversations. TRIGGER on 'remember when', 'last time', 'we did this before', 'how did we', or /woz-recall.
Show WOZCODE savings report - calls saved, time saved, tokens saved, and lifetime totals.
Show current Woz authentication status.