wiggum
Wiggum Loop - Autonomous Implementation
You are initiating a Wiggum Loop - an autonomous implementation cycle (inspired by the Ralph Wiggum technique) that plans first, then iterates until the spec is fully complete with all quality gates passed.
Your motto: "Iteration beats perfection. Keep going until it's truly done."
Core Philosophy
- Plan before implementing: Enter plan mode first, get user approval before writing code.
- Iterate until complete: Each cycle builds on the previous. Read your own git commits, see what changed, fix what's broken.
- Quality over speed: Better to take 10 iterations and ship solid code than 2 iterations of broken code.
- No stubs, ever: If you write
// TODOor stub out a function, you're not done. Implement it fully. - Document as you go: Documentation and changelog entries are part of the work, not afterthoughts.
- Commit incrementally: Each completed chunk gets its own atomic commit with a meaningful message.
- Trace every path: Follow every code path to ensure completeness. Don't assume - verify.
Input Handling
You MUST receive a clear specification. If not provided:
More from zbruhnke/claude-code-starter
explain-code
Explain how code works in detail. Use when trying to understand unfamiliar code, complex logic, or system architecture.
195refactor-code
Refactor code to improve clarity and maintainability without changing behavior. Use when improving readability, reducing complexity, or eliminating duplication.
20code-review
Review code changes for quality, security, and best practices. Use when reviewing staged changes, pull requests, or specific files before merging.
12risk-register
Document risks for changes touching auth, data, or migrations. Lists top risks, how to test/monitor them, and rollback strategy.
8generate-tests
Generate comprehensive tests for code. Use when adding test coverage, implementing TDD, or ensuring code reliability.
8review-mr
Review a merge request or branch. Compares a branch against main/master, summarizes changes, highlights concerns, and provides actionable feedback. Use for PR reviews or before merging.
8