Waza: An 8-Skill Cap That Teaches AI Coding Assistants Senior-Engineer Judgment
Most AI coding skill libraries chase feature count; Waza imposes a hard cap of eight skills and a no-op deletion rule, producing prompts that waste less context and degrade less as models evolve. For teams juggling Claude Code, Codex, and Cursor, it is the only library that installs across all three with one command and the only one that covers UI design sense and writing polish.
AI coding models produce working code but lack the judgment and habits that distinguish senior engineers: stress-testing requirements before building, hunting root causes instead of patching symptoms, reviewing diffs against a specific project's constraints, and polishing documentation so it reads naturally. Waza packages these instincts into eight skills — `/think`, `/ui`, `/check`, `/hunt`, `/write`, `/learn`, `/read`, and `/health` — each triggered manually so the developer retains control over the workflow. The project enforces a hard cap of eight skills and subjects every instruction to a no-op test: if removing a sentence doesn't change model behavior, it gets cut.
The design philosophy is "give the target, not the path." Skills describe the desired outcome and constraints but never prescribe step-by-step procedures, because models improve and over-specification locks out better approaches. Skills chain together — `/think` → implement → `/check` → merge, or `/hunt` → fix → `/check` → release — but each transition requires a manual trigger, preventing runaway automation. The implementation is deliberately minimal: Markdown definitions, Shell helpers, and Python validation scripts, installable across Claude Code, Codex, and Cursor with a single `npx` command.
Compared to Superpowers (21.8k stars, enforced TDD that deletes code written before tests) and mattpocock/skills (240k stars, strongest domain modeling), Waza occupies a distinct niche. It is the only library offering frontend design (`/ui`), writing polish (`/write`), and Agent health auditing (`/health`), and it supports the widest range of AI coding tools. The project is part of tw93's "Programming Trilogy" alongside Kaku (code generation) and Kami (document publishing).
The hard cap of eight skills is a structural bet against feature creep — it forces the maintainer to improve depth rather than add surface area, which keeps prompts lean as models get more capable.
The no-op deletion rule treats prompt text as a cost center: every sentence that doesn't change behavior is dead weight consuming context windows, a discipline most prompt libraries ignore.
Manual skill-chain triggers solve a real failure mode in autonomous agents — the model running all steps without stopping when an intermediate step goes wrong — by making every transition a human checkpoint.
Project-aware code review (`/check`) sidesteps the generic-review problem by reading live repo metadata, making the review constraints dynamic per project rather than static across all codebases.
Waza's multi-tool installation (Claude Code, Codex, Cursor, Antigravity) addresses a fragmentation pain point that Superpowers and mattpocock/skills largely ignore by focusing on Claude Code alone.
The trilogy framing (Kaku/Waza/Kami) reflects an opinionated view of the AI coding workflow as three separable concerns — generation, habit, and publication — rather than one monolithic assistant.