How you actually drive a feature from idea to production
Eight commands, six phases, one checkpoint at each step.
| /spec | Define what to build | Spec before code |
| /plan | Break it into tasks | Small, atomic tasks |
| /build | Implement incrementally | One slice at a time |
| /test | Prove it works | Tests are proof |
| /review | Review before merge | Improve code health |
| /webperf | Audit performance | Measure, then optimize |
| /code-simplify | Simplify | Clarity over cleverness |
| /ship | Deploy | Faster is safer |
Install once. Drive each phase with a command. Repeat per feature.
$ /build auto
Generates the plan and implements every task in one approved pass. Still test-driven, still committed per task, still pauses on failures.
$ npx skills add addyosmani/agent-skills