gsd-opencode 1.3.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/bin/install.js +222 -0
  2. package/command/gsd/add-phase.md +207 -0
  3. package/command/gsd/complete-milestone.md +105 -0
  4. package/command/gsd/consider-issues.md +201 -0
  5. package/command/gsd/create-roadmap.md +115 -0
  6. package/command/gsd/discuss-milestone.md +47 -0
  7. package/command/gsd/discuss-phase.md +60 -0
  8. package/command/gsd/execute-plan.md +128 -0
  9. package/command/gsd/help.md +315 -0
  10. package/command/gsd/insert-phase.md +227 -0
  11. package/command/gsd/list-phase-assumptions.md +50 -0
  12. package/command/gsd/map-codebase.md +84 -0
  13. package/command/gsd/new-milestone.md +59 -0
  14. package/command/gsd/new-project.md +316 -0
  15. package/command/gsd/pause-work.md +122 -0
  16. package/command/gsd/plan-fix.md +205 -0
  17. package/command/gsd/plan-phase.md +67 -0
  18. package/command/gsd/progress.md +316 -0
  19. package/command/gsd/remove-phase.md +338 -0
  20. package/command/gsd/research-phase.md +91 -0
  21. package/command/gsd/resume-work.md +40 -0
  22. package/command/gsd/verify-work.md +71 -0
  23. package/get-shit-done/references/checkpoints.md +287 -0
  24. package/get-shit-done/references/continuation-format.md +255 -0
  25. package/get-shit-done/references/git-integration.md +254 -0
  26. package/get-shit-done/references/plan-format.md +428 -0
  27. package/get-shit-done/references/principles.md +157 -0
  28. package/get-shit-done/references/questioning.md +162 -0
  29. package/get-shit-done/references/research-pitfalls.md +215 -0
  30. package/get-shit-done/references/scope-estimation.md +172 -0
  31. package/get-shit-done/references/tdd.md +263 -0
  32. package/get-shit-done/templates/codebase/architecture.md +255 -0
  33. package/get-shit-done/templates/codebase/concerns.md +310 -0
  34. package/get-shit-done/templates/codebase/conventions.md +307 -0
  35. package/get-shit-done/templates/codebase/integrations.md +280 -0
  36. package/get-shit-done/templates/codebase/stack.md +186 -0
  37. package/get-shit-done/templates/codebase/structure.md +285 -0
  38. package/get-shit-done/templates/codebase/testing.md +480 -0
  39. package/get-shit-done/templates/config.json +18 -0
  40. package/get-shit-done/templates/context.md +161 -0
  41. package/get-shit-done/templates/continue-here.md +78 -0
  42. package/get-shit-done/templates/discovery.md +146 -0
  43. package/get-shit-done/templates/issues.md +32 -0
  44. package/get-shit-done/templates/milestone-archive.md +123 -0
  45. package/get-shit-done/templates/milestone-context.md +93 -0
  46. package/get-shit-done/templates/milestone.md +115 -0
  47. package/get-shit-done/templates/phase-prompt.md +303 -0
  48. package/get-shit-done/templates/project.md +184 -0
  49. package/get-shit-done/templates/research.md +529 -0
  50. package/get-shit-done/templates/roadmap.md +196 -0
  51. package/get-shit-done/templates/state.md +210 -0
  52. package/get-shit-done/templates/summary.md +273 -0
  53. package/get-shit-done/templates/uat-issues.md +143 -0
  54. package/get-shit-done/workflows/complete-milestone.md +643 -0
  55. package/get-shit-done/workflows/create-milestone.md +416 -0
  56. package/get-shit-done/workflows/create-roadmap.md +481 -0
  57. package/get-shit-done/workflows/discovery-phase.md +293 -0
  58. package/get-shit-done/workflows/discuss-milestone.md +236 -0
  59. package/get-shit-done/workflows/discuss-phase.md +247 -0
  60. package/get-shit-done/workflows/execute-phase.md +1625 -0
  61. package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
  62. package/get-shit-done/workflows/map-codebase.md +434 -0
  63. package/get-shit-done/workflows/plan-phase.md +488 -0
  64. package/get-shit-done/workflows/research-phase.md +436 -0
  65. package/get-shit-done/workflows/resume-project.md +287 -0
  66. package/get-shit-done/workflows/transition.md +580 -0
  67. package/get-shit-done/workflows/verify-work.md +202 -0
  68. package/package.json +38 -0
@@ -0,0 +1,143 @@
1
+ # UAT Issues Template
2
+
3
+ Template for `.planning/phases/XX-name/{phase}-{plan}-ISSUES.md` - phase-scoped issues discovered during user acceptance testing.
4
+
5
+ **Purpose:** Capture issues found during /gsd:verify-work. Unlike global ISSUES.md (for deferred enhancements), this file tracks bugs and problems in specific delivered work.
6
+
7
+ **Location:** Same directory as the SUMMARY.md being tested.
8
+
9
+ ---
10
+
11
+ ## File Template
12
+
13
+ ```markdown
14
+ # UAT Issues: Phase [X] Plan [Y]
15
+
16
+ **Tested:** [date]
17
+ **Source:** [path to SUMMARY.md that was tested]
18
+ **Tester:** User via /gsd:verify-work
19
+
20
+ ## Open Issues
21
+
22
+ ### UAT-001: [Brief description]
23
+
24
+ **Discovered:** [date]
25
+ **Phase/Plan:** [XX]-[YY]
26
+ **Severity:** [Blocker/Major/Minor/Cosmetic]
27
+ **Feature:** [Which feature from the test checklist]
28
+ **Description:** [User's description of the problem]
29
+ **Expected:** [What should have happened]
30
+ **Actual:** [What actually happened]
31
+ **Repro:** [Steps to reproduce, if captured]
32
+
33
+ ### UAT-002: [Brief description]
34
+
35
+ ...
36
+
37
+ ## Resolved Issues
38
+
39
+ [Moved here after /gsd:plan-fix executes and fixes are verified]
40
+
41
+ ### UAT-001: [Brief description]
42
+ **Resolved:** [date] - Fixed in [phase]-[plan]-FIX.md
43
+ **Commit:** [hash]
44
+
45
+ ---
46
+
47
+ *Phase: XX-name*
48
+ *Plan: YY*
49
+ *Tested: [date]*
50
+ ```
51
+
52
+ ---
53
+
54
+ ## Severity Guide
55
+
56
+ | Severity | Definition | Example |
57
+ |----------|------------|---------|
58
+ | **Blocker** | Feature completely unusable | App crashes on button click |
59
+ | **Major** | Feature works but significant problem | Form submits but data not saved |
60
+ | **Minor** | Feature usable but has issues | Button text slightly cut off |
61
+ | **Cosmetic** | Visual only, no functional impact | Wrong shade of color |
62
+
63
+ ---
64
+
65
+ ## UAT Numbering
66
+
67
+ - **Prefix:** `UAT-` (distinguishes from ISS- enhancement issues)
68
+ - **Scope:** Per-file numbering (UAT-001, UAT-002, etc. within each file)
69
+ - **No global numbering:** Each {phase}-{plan}-ISSUES.md has its own sequence
70
+
71
+ ---
72
+
73
+ <good_examples>
74
+ ```markdown
75
+ # UAT Issues: Phase 5 Plan 2
76
+
77
+ **Tested:** 2025-01-15
78
+ **Source:** .planning/phases/05-auth/05-02-SUMMARY.md
79
+ **Tester:** User via /gsd:verify-work
80
+
81
+ ## Open Issues
82
+
83
+ ### UAT-001: Login form doesn't show validation errors
84
+
85
+ **Discovered:** 2025-01-15
86
+ **Phase/Plan:** 05-02
87
+ **Severity:** Major
88
+ **Feature:** User login form
89
+ **Description:** When I enter an invalid email, nothing happens. No error message appears.
90
+ **Expected:** Red error message below email field saying "Invalid email format"
91
+ **Actual:** Field border turns red but no text explanation
92
+ **Repro:**
93
+ 1. Go to /login
94
+ 2. Enter "notanemail" in email field
95
+ 3. Click Login button
96
+
97
+ ### UAT-002: Password field allows paste
98
+
99
+ **Discovered:** 2025-01-15
100
+ **Phase/Plan:** 05-02
101
+ **Severity:** Cosmetic
102
+ **Feature:** User login form
103
+ **Description:** Can paste into password field. Minor UX inconsistency.
104
+ **Expected:** Paste disabled (matches signup form)
105
+ **Actual:** Paste works in login but not signup
106
+ **Repro:** Ctrl+V in password field
107
+
108
+ ## Resolved Issues
109
+
110
+ [None yet]
111
+
112
+ ---
113
+
114
+ *Phase: 05-auth*
115
+ *Plan: 02*
116
+ *Tested: 2025-01-15*
117
+ ```
118
+ </good_examples>
119
+
120
+ <guidelines>
121
+ **When to create:**
122
+ - First time /gsd:verify-work finds an issue for a plan
123
+ - One file per plan tested
124
+
125
+ **Location:**
126
+ - `.planning/phases/XX-name/{phase}-{plan}-ISSUES.md`
127
+ - Lives alongside SUMMARY.md being tested
128
+
129
+ **Difference from global ISSUES.md:**
130
+ - Global ISSUES.md: Deferred enhancements (Rule 5 - nice-to-haves)
131
+ - UAT ISSUES.md: Actual problems found during testing
132
+
133
+ **Workflow:**
134
+ 1. /gsd:verify-work creates this file with issues
135
+ 2. /gsd:plan-fix reads this file and creates FIX.md plan
136
+ 3. After FIX.md executes, issues move to "Resolved" section
137
+ 4. File becomes historical record of what was found and fixed
138
+
139
+ **Resolution:**
140
+ - Don't delete resolved issues - move to "Resolved Issues" section
141
+ - Include fix reference (commit hash, plan that fixed it)
142
+ - File serves as audit trail
143
+ </guidelines>