Workflow
Debug and Fix
Reproduce a hard bug, fix it test-first, and verify the completed behavior through UAT.
Ordered Steps
- 1diagnoseReproduce and minimize the failure before changing code.Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.
- 2tddLock the failure with a test, implement the fix, and refactor safely.Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
- 3gsd-verify-workRun a verification pass against the expected user-facing behavior.Validate built features through conversational UAT