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,202 @@
1
+ <purpose>
2
+ Guide manual user acceptance testing of recently built features. Extract deliverables from SUMMARY.md, generate test checklist, guide user through each test, log issues to phase-scoped file.
3
+
4
+ The USER performs all testing — Claude generates the checklist, guides the process, and captures issues.
5
+ </purpose>
6
+
7
+ <process>
8
+
9
+ <step name="identify">
10
+ **Determine what to test:**
11
+
12
+ If $ARGUMENTS provided:
13
+ - Parse as phase number (e.g., "4") or plan number (e.g., "04-02")
14
+ - Find corresponding SUMMARY.md file(s)
15
+
16
+ If no arguments:
17
+ - Find most recently modified SUMMARY.md
18
+
19
+ ```bash
20
+ find .planning/phases -name "*SUMMARY.md" -type f -exec ls -lt {} + | head -5
21
+ ```
22
+
23
+ Read the SUMMARY.md to understand what was built.
24
+ </step>
25
+
26
+ <step name="extract">
27
+ **Extract testable deliverables from SUMMARY.md:**
28
+
29
+ Parse for:
30
+ 1. **Accomplishments** - Features/functionality added
31
+ 2. **Files Created/Modified** - What changed
32
+ 3. **User-facing changes** - UI, workflows, interactions
33
+
34
+ Focus on USER-OBSERVABLE outcomes, not implementation details.
35
+
36
+ Examples:
37
+ - "Check-in menu item added to navigation" → User can see/click Check-in in nav
38
+ - "HomePage refreshes after check-in" → After check-in, home shows updated state
39
+ </step>
40
+
41
+ <step name="generate">
42
+ **Generate manual test checklist:**
43
+
44
+ Create structured test plan:
45
+
46
+ ```
47
+ # User Acceptance Test: [Plan/Phase Name]
48
+
49
+ **Scope:** [What was built - from SUMMARY.md]
50
+ **Testing:** Manual user validation
51
+
52
+ ## Pre-flight
53
+ - [ ] Application builds and runs without errors
54
+ - [ ] Application launches to expected state
55
+
56
+ ## Feature Tests
57
+
58
+ ### [Feature 1 from deliverables]
59
+ **What to test:** [User-observable behavior]
60
+ **Steps:**
61
+ 1. [Specific action to take]
62
+ 2. [What to look for]
63
+ 3. [Expected result]
64
+
65
+ ### [Feature 2 from deliverables]
66
+ ...
67
+
68
+ ## Edge Cases
69
+ - [ ] [Relevant edge case based on feature]
70
+ - [ ] [Another edge case]
71
+
72
+ ## Visual/UX Check
73
+ - [ ] UI matches expected design
74
+ - [ ] No visual glitches or layout issues
75
+ - [ ] Responsive to interactions
76
+ ```
77
+
78
+ Present this checklist to user.
79
+ </step>
80
+
81
+ <step name="guide">
82
+ **Guide user through each test:**
83
+
84
+ For each test item, use AskUserQuestion:
85
+ - header: "[Feature name]"
86
+ - question: "[Test description] - Did this work as expected?"
87
+ - options:
88
+ - "Pass" — Works correctly
89
+ - "Fail" — Doesn't work as expected
90
+ - "Partial" — Works but with issues
91
+ - "Skip" — Can't test right now
92
+
93
+ **If Pass:** Move to next test
94
+
95
+ **If Fail or Partial:**
96
+ Follow up with AskUserQuestion:
97
+ - header: "Issue details"
98
+ - question: "What went wrong?"
99
+ - options:
100
+ - "Crashes/errors" — Application error or exception
101
+ - "Wrong behavior" — Does something unexpected
102
+ - "Missing feature" — Expected functionality not present
103
+ - "UI/visual issue" — Looks wrong but functions
104
+ - "Let me describe" — Free-form description needed
105
+ </step>
106
+
107
+ <step name="collect">
108
+ **Collect and categorize issues:**
109
+
110
+ For each failed/partial test, gather:
111
+ - Feature affected
112
+ - What went wrong (from user input)
113
+ - Severity:
114
+ - **Blocker** — Can't use the feature at all
115
+ - **Major** — Feature works but significant problem
116
+ - **Minor** — Small issue, feature still usable
117
+ - **Cosmetic** — Visual only, no functional impact
118
+ </step>
119
+
120
+ <step name="log">
121
+ **Log issues to phase-scoped file:**
122
+
123
+ If any issues found:
124
+
125
+ 1. Create `.planning/phases/XX-name/{phase}-{plan}-ISSUES.md` if doesn't exist
126
+ 2. Use template from `@~/.config/opencode/get-shit-done/templates/uat-issues.md`
127
+ 3. Add each issue:
128
+
129
+ ```markdown
130
+ ### UAT-[NNN]: [Brief description]
131
+
132
+ **Discovered:** [date] during user acceptance testing
133
+ **Phase/Plan:** [phase]-[plan] that was tested
134
+ **Severity:** [Blocker/Major/Minor/Cosmetic]
135
+ **Description:** [User's description of the problem]
136
+ **Expected:** [What should have happened]
137
+ **Actual:** [What actually happened]
138
+ ```
139
+
140
+ **Note:** Issues go to phase-scoped file, NOT global `.planning/ISSUES.md`. This keeps UAT findings tied to the specific work being tested and enables `/gsd:plan-fix` to address them.
141
+ </step>
142
+
143
+ <step name="summarize">
144
+ **Present test summary:**
145
+
146
+ ```
147
+ # Test Results: [Plan/Phase Name]
148
+
149
+ **Tests run:** [N]
150
+ **Passed:** [N]
151
+ **Failed:** [N]
152
+ **Partial:** [N]
153
+ **Skipped:** [N]
154
+
155
+ ## Issues Found
156
+ [List any issues with severity]
157
+
158
+ ## Verdict
159
+ [Based on results:]
160
+ - ALL PASS: "All tests passed. Feature validated."
161
+ - MINOR ISSUES: "Feature works with minor issues logged."
162
+ - MAJOR ISSUES: "Significant issues found - review before proceeding."
163
+ - BLOCKERS: "Blocking issues found - must fix before continuing."
164
+
165
+ ## Next Steps
166
+ [Based on verdict:]
167
+ - If clean: Suggest proceeding to next phase
168
+ - If issues: Suggest /gsd:plan-fix to address
169
+ ```
170
+ </step>
171
+
172
+ <step name="offer">
173
+ **Offer next actions based on results:**
174
+
175
+ Use AskUserQuestion:
176
+ - header: "Next"
177
+ - question: "What would you like to do?"
178
+ - options (based on results):
179
+
180
+ If all passed:
181
+ - "Continue to next phase" — Proceed with confidence
182
+ - "Test more" — Run additional manual tests
183
+ - "Done" — Finish testing session
184
+
185
+ If issues found:
186
+ - "Plan fixes" — Create plan to address issues (/gsd:plan-fix)
187
+ - "Log and continue" — Issues logged, proceed anyway
188
+ - "Review issues" — Look at logged issues in detail
189
+ - "Done" — Finish testing session
190
+ </step>
191
+
192
+ </process>
193
+
194
+ <success_criteria>
195
+ - [ ] Test scope identified from SUMMARY.md
196
+ - [ ] Checklist generated based on deliverables
197
+ - [ ] User guided through each test via AskUserQuestion
198
+ - [ ] All test results captured (pass/fail/partial/skip)
199
+ - [ ] Any issues logged to phase-scoped ISSUES.md
200
+ - [ ] Summary presented with verdict
201
+ - [ ] User knows next steps based on results
202
+ </success_criteria>
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "gsd-opencode",
3
+ "version": "1.3.31",
4
+ "description": "A meta-prompting, context engineering and spec-driven development system for OpenCode by TÂCHES.",
5
+ "keywords": [
6
+ "opencode",
7
+ "ai",
8
+ "meta-prompting",
9
+ "context-engineering",
10
+ "spec-driven-development"
11
+ ],
12
+ "homepage": "https://github.com/rokicool/gsd-opencode#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/rokicool/gsd-opencode/issues"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/rokicool/gsd-opencode.git"
19
+ },
20
+ "license": "MIT",
21
+ "author": "TÂCHES & roki",
22
+ "type": "commonjs",
23
+ "main": "index.js",
24
+ "bin": {
25
+ "gsd-opencode": "bin/install.js"
26
+ },
27
+ "files": [
28
+ "bin",
29
+ "command",
30
+ "get-shit-done"
31
+ ],
32
+ "scripts": {
33
+ "test": "echo \"Error: no test specified\" && exit 1"
34
+ },
35
+ "engines": {
36
+ "node": ">=16.7.0"
37
+ }
38
+ }