Try It¶
After setup, try the core workflow:
-
Start with an idea. Type
/kk:designand describe a feature you want to build. Claude will ask you refinement questions one at a time, then produce design docs and a task list indocs/wip/. -
Review the design. Run
/kk:review-design your-featureto catch gaps before writing code. -
Build it. Type
/kk:implement— Claude executes the task list with code review checkpoints between batches. -
Review the code.
/kk:review-codechecks for SOLID violations, security risks, and quality issues. Use/kk:review-code:isolatedfor independent sub-agent reviewers with zero authorship bias.
This is the core loop. See the kk plugin README for all available skills and the full workflow pipeline.
What Just Happened?¶
Each skill produced artifacts the next one consumed:
| Skill | Input | Output |
|---|---|---|
/kk:design | Your idea | design.md, tasks.md |
/kk:review-design | Design docs | Review findings, gap analysis |
/kk:implement | Task list | Code changes, review checkpoints |
/kk:review-code | Git diff | Findings, fix suggestions |
/kk:test | Code changes | Test files, coverage report |
/kk:document | All of the above | Updated ARCHITECTURE.md, ADRs |
Next Steps¶
- Skills — learn what each skill does in detail
- Profiles — understand language-specific behavior
- Configuration — customize for your workflow