Aller au contenu principal

Workflows

Step-by-step guides for common development scenarios

Main workflow

Explore → Specify → Plan → TDD → Audit → Commit

1
Explore
/work:work-explore
Understand the code
2
Specify
/work:work-specify
Specify the requirement
3
Plan
/work:work-plan
Plan the changes
4
TDD
/dev:dev-tdd
Tests first (mandatory)
5
Audit
/qa:qa-loop
Quality audit score 90
6
Commit
/work:work-commit
Validate

The main claude-base workflow follows 6 mandatory steps (+ 1 optional):

  1. Explore - Understand the existing code before modifying 1b. Brainstorm (optional) - Structured ideation before specification (alternatives, fuzzy ideas)
  2. Specify - Create a functional specification (User Stories, criteria)
  3. Plan - Plan changes before implementing
  4. TDD - Develop by writing tests BEFORE the code (mandatory)
  5. Audit - Adaptive /qa:qa-loop "score 90" until reaching the target score
  6. Commit - Create clean, descriptive commits (Conventional Commits)

Available workflows

WorkflowDescriptionCommands
Explore → Specify → Plan → TDD → Audit → CommitMain workflow (TDD mandatory)/work:work-explore, /work:work-specify, /work:work-plan, /dev:dev-tdd, /work:work-commit
New FeatureAdd a feature/work:work-flow-feature
Bug FixFix an issue/work:work-flow-bugfix
ReleasePrepare a version/work:work-flow-release
Product LaunchLaunch a product/work:work-flow-launch
TDDTest-driven development/dev:dev-tdd

Choosing the right workflow

See also