Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ You're never locked in. The system adapts.
| `/gsd:add-todo [desc]` | Capture idea for later |
| `/gsd:check-todos` | List pending todos |
| `/gsd:debug [desc]` | Systematic debugging with persistent state |
| `/gsd:add-tests <N> [instructions]` | Generate unit and E2E tests for completed phase |
| `/gsd:quick [--full]` | Execute ad-hoc task with GSD guarantees (`--full` adds plan-checking and verification) |
| `/gsd:health [--repair]` | Validate `.planning/` directory integrity, auto-repair with `--repair` |

Expand Down
1 change: 1 addition & 0 deletions docs/USER-GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ rapid prototyping phases where test infrastructure isn't the focus.
| `/gsd:check-todos` | List pending todos | Review captured ideas |
| `/gsd:settings` | Configure workflow toggles and model profile | Change model, toggle agents |
| `/gsd:set-profile <profile>` | Quick profile switch | Change cost/quality tradeoff |
| `/gsd:add-tests <N> [instructions]` | Generate unit and E2E tests for completed phase | After execution, before milestone completion |
| `/gsd:reapply-patches` | Restore local modifications after update | After `/gsd:update` if you had local edits |

---
Expand Down
15 changes: 15 additions & 0 deletions get-shit-done/workflows/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,20 @@ Validate built features through conversational UAT.

Usage: `/gsd:verify-work 3`

### Test Generation

**`/gsd:add-tests <phase> [additional instructions]`**
Generate unit and E2E tests for a completed phase.

- Reads phase SUMMARY.md, CONTEXT.md, and VERIFICATION.md
- Classifies changed files into TDD (unit), E2E (browser), or Skip
- Presents classification for approval before generating
- Runs tests after generation — flags bugs but doesn't fix them
- Commits passing tests

Usage: `/gsd:add-tests 3`
Usage: `/gsd:add-tests 3 focus on edge cases for auth`

### Milestone Auditing

**`/gsd:audit-milestone [version]`**
Expand Down Expand Up @@ -438,6 +452,7 @@ Example config:
/gsd:plan-phase 1 # Create plans for first phase
/clear
/gsd:execute-phase 1 # Execute all plans in phase
/gsd:add-tests 1 # Generate tests for completed phase
```

**Resuming work after a break:**
Expand Down