wiggum
Installation
SKILL.md
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.