| name | start-dev |
| description | Adaptive development workflow that runs discover -> research -> plan -> implement -> verify with explicit quality gates. |
start-dev
Use this skill as a practical default for non-trivial feature delivery.
Goal
Move from request to verified implementation with minimal rework.
Workflow
- Discover:
- Map affected modules
- Identify constraints and existing patterns
- Research:
- Validate version-sensitive APIs and framework behavior from official docs
- Plan:
- Define smallest reversible change
- List files and risks
- Implement:
- Execute in small increments
- Keep tests and build green
- Verify:
- Run targeted tests, then broader checks
- Summarize residual risk honestly
Delegation Pattern
explore for codebase mapping
architect for design tradeoffs
executor for implementation
test-engineer for test strategy
code-reviewer or verifier for final quality pass
Quality Gates
- Requirements are explicit before coding.
- Plan includes rollback strategy.
- Verification commands and results are captured.
- No completion claim without evidence.