woz-reviewlisted
Install: claude install-skill WithWoz/wozcode-plugin
# WozPairProgrammer — Deep Review (multi-persona, before-pushing pass)
Run the heavyweight reviewer on the user's current branch. Reviews the full diff vs base (committed + staged + working + untracked) by fanning out to **seven narrow-lens reviewer personas in parallel**, followed by a sequential **wide-lens cross-cutting pass** that sees the narrow personas' findings as priors. Each persona gets pre-fetched knowledge-base context, personal-curation notes, and the slice of CLAUDE.md relevant to its scope.
**Narrow-lens personas (run concurrently):**
1. **Cross-file consistency** — symmetric pairs, rename drift, callers vs callees
2. **Duplication & DRY** — new helpers that should reuse existing utilities, near-duplicate blocks
3. **Codebase reuse & schema-family** — new exports blind to existing repo utilities; sibling Zod schemas that should share a base
4. **Type safety** — `Record<string, unknown>` catch-alls, inline shape casts, null/undefined drift, `||` vs `??`
5. **SDK / library type reuse** — custom types that duplicate Anthropic SDK exports
6. **Correctness & edge cases** — regex semantics, off-by-one, race conditions, error swallowing, security
7. **Comment & docs hygiene** — JSDoc bloat, stale comments after renames, narrative history
**Wide-lens pass (sequential, after the narrow batch):**
- **Cross-cutting & architecture** — trust boundaries (prompt injection), cache-key vs effective-state drift, silent-skip after legacy removal, producer/consumer pairs touch