get-shit-done-cc 1.0.0
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.
- package/LICENSE +21 -0
- package/README.md +192 -0
- package/bin/install.js +53 -0
- package/commands/gsd/add-phase.md +201 -0
- package/commands/gsd/complete-milestone.md +105 -0
- package/commands/gsd/discuss-milestone.md +45 -0
- package/commands/gsd/discuss-phase.md +47 -0
- package/commands/gsd/execute-plan.md +108 -0
- package/commands/gsd/help.md +252 -0
- package/commands/gsd/insert-phase.md +218 -0
- package/commands/gsd/list-phase-assumptions.md +49 -0
- package/commands/gsd/new-milestone.md +58 -0
- package/commands/gsd/new-project.md +177 -0
- package/commands/gsd/pause-work.md +123 -0
- package/commands/gsd/plan-phase.md +60 -0
- package/commands/gsd/progress.md +182 -0
- package/commands/gsd/resume-work.md +50 -0
- package/get-shit-done/references/checkpoints.md +594 -0
- package/get-shit-done/references/cli-automation.md +527 -0
- package/get-shit-done/references/git-integration.md +126 -0
- package/get-shit-done/references/plan-format.md +397 -0
- package/get-shit-done/references/principles.md +97 -0
- package/get-shit-done/references/questioning.md +138 -0
- package/get-shit-done/references/research-pitfalls.md +215 -0
- package/get-shit-done/references/scope-estimation.md +451 -0
- package/get-shit-done/templates/config.json +17 -0
- package/get-shit-done/templates/context.md +385 -0
- package/get-shit-done/templates/continue-here.md +78 -0
- package/get-shit-done/templates/issues.md +32 -0
- package/get-shit-done/templates/milestone-archive.md +123 -0
- package/get-shit-done/templates/milestone.md +115 -0
- package/get-shit-done/templates/phase-prompt.md +290 -0
- package/get-shit-done/templates/project.md +207 -0
- package/get-shit-done/templates/research-prompt.md +133 -0
- package/get-shit-done/templates/roadmap.md +196 -0
- package/get-shit-done/templates/state.md +226 -0
- package/get-shit-done/templates/summary.md +200 -0
- package/get-shit-done/workflows/complete-milestone.md +490 -0
- package/get-shit-done/workflows/create-milestone.md +379 -0
- package/get-shit-done/workflows/create-roadmap.md +443 -0
- package/get-shit-done/workflows/discuss-milestone.md +144 -0
- package/get-shit-done/workflows/discuss-phase.md +254 -0
- package/get-shit-done/workflows/execute-phase.md +1261 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/get-shit-done/workflows/plan-phase.md +783 -0
- package/get-shit-done/workflows/research-phase.md +293 -0
- package/get-shit-done/workflows/resume-project.md +248 -0
- package/get-shit-done/workflows/transition.md +488 -0
- package/package.json +30 -0
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Surface Claude's assumptions about a phase before planning, enabling users to correct misconceptions early.
|
|
3
|
+
|
|
4
|
+
Key difference from discuss-phase: This is ANALYSIS of what Claude thinks, not INTAKE of what user knows. No file output - purely conversational to prompt discussion.
|
|
5
|
+
</purpose>
|
|
6
|
+
|
|
7
|
+
<process>
|
|
8
|
+
|
|
9
|
+
<step name="validate_phase" priority="first">
|
|
10
|
+
Phase number: $ARGUMENTS (required)
|
|
11
|
+
|
|
12
|
+
**If argument missing:**
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
Error: Phase number required.
|
|
16
|
+
|
|
17
|
+
Usage: /gsd:list-phase-assumptions [phase-number]
|
|
18
|
+
Example: /gsd:list-phase-assumptions 3
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Exit workflow.
|
|
22
|
+
|
|
23
|
+
**If argument provided:**
|
|
24
|
+
Validate phase exists in roadmap:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
cat .planning/ROADMAP.md | grep -i "Phase ${PHASE}"
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**If phase not found:**
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
Error: Phase ${PHASE} not found in roadmap.
|
|
34
|
+
|
|
35
|
+
Available phases:
|
|
36
|
+
[list phases from roadmap]
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Exit workflow.
|
|
40
|
+
|
|
41
|
+
**If phase found:**
|
|
42
|
+
Parse phase details from roadmap:
|
|
43
|
+
|
|
44
|
+
- Phase number
|
|
45
|
+
- Phase name
|
|
46
|
+
- Phase description/goal
|
|
47
|
+
- Any scope details mentioned
|
|
48
|
+
|
|
49
|
+
Continue to analyze_phase.
|
|
50
|
+
</step>
|
|
51
|
+
|
|
52
|
+
<step name="analyze_phase">
|
|
53
|
+
Based on roadmap description and project context, identify assumptions across five areas:
|
|
54
|
+
|
|
55
|
+
**1. Technical Approach:**
|
|
56
|
+
What libraries, frameworks, patterns, or tools would Claude use?
|
|
57
|
+
- "I'd use X library because..."
|
|
58
|
+
- "I'd follow Y pattern because..."
|
|
59
|
+
- "I'd structure this as Z because..."
|
|
60
|
+
|
|
61
|
+
**2. Implementation Order:**
|
|
62
|
+
What would Claude build first, second, third?
|
|
63
|
+
- "I'd start with X because it's foundational"
|
|
64
|
+
- "Then Y because it depends on X"
|
|
65
|
+
- "Finally Z because..."
|
|
66
|
+
|
|
67
|
+
**3. Scope Boundaries:**
|
|
68
|
+
What's included vs excluded in Claude's interpretation?
|
|
69
|
+
- "This phase includes: A, B, C"
|
|
70
|
+
- "This phase does NOT include: D, E, F"
|
|
71
|
+
- "Boundary ambiguities: G could go either way"
|
|
72
|
+
|
|
73
|
+
**4. Risk Areas:**
|
|
74
|
+
Where does Claude expect complexity or challenges?
|
|
75
|
+
- "The tricky part is X because..."
|
|
76
|
+
- "Potential issues: Y, Z"
|
|
77
|
+
- "I'd watch out for..."
|
|
78
|
+
|
|
79
|
+
**5. Dependencies:**
|
|
80
|
+
What does Claude assume exists or needs to be in place?
|
|
81
|
+
- "This assumes X from previous phases"
|
|
82
|
+
- "External dependencies: Y, Z"
|
|
83
|
+
- "This will be consumed by..."
|
|
84
|
+
|
|
85
|
+
Be honest about uncertainty. Mark assumptions with confidence levels:
|
|
86
|
+
- "Fairly confident: ..." (clear from roadmap)
|
|
87
|
+
- "Assuming: ..." (reasonable inference)
|
|
88
|
+
- "Unclear: ..." (could go multiple ways)
|
|
89
|
+
</step>
|
|
90
|
+
|
|
91
|
+
<step name="present_assumptions">
|
|
92
|
+
Present assumptions in a clear, scannable format:
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
## My Assumptions for Phase ${PHASE}: ${PHASE_NAME}
|
|
96
|
+
|
|
97
|
+
### Technical Approach
|
|
98
|
+
[List assumptions about how to implement]
|
|
99
|
+
|
|
100
|
+
### Implementation Order
|
|
101
|
+
[List assumptions about sequencing]
|
|
102
|
+
|
|
103
|
+
### Scope Boundaries
|
|
104
|
+
**In scope:** [what's included]
|
|
105
|
+
**Out of scope:** [what's excluded]
|
|
106
|
+
**Ambiguous:** [what could go either way]
|
|
107
|
+
|
|
108
|
+
### Risk Areas
|
|
109
|
+
[List anticipated challenges]
|
|
110
|
+
|
|
111
|
+
### Dependencies
|
|
112
|
+
**From prior phases:** [what's needed]
|
|
113
|
+
**External:** [third-party needs]
|
|
114
|
+
**Feeds into:** [what future phases need from this]
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
**What do you think?**
|
|
119
|
+
|
|
120
|
+
Are these assumptions accurate? Let me know:
|
|
121
|
+
- What I got right
|
|
122
|
+
- What I got wrong
|
|
123
|
+
- What I'm missing
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Wait for user response.
|
|
127
|
+
</step>
|
|
128
|
+
|
|
129
|
+
<step name="gather_feedback">
|
|
130
|
+
**If user provides corrections:**
|
|
131
|
+
|
|
132
|
+
Acknowledge the corrections:
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
Got it. Key corrections:
|
|
136
|
+
- [correction 1]
|
|
137
|
+
- [correction 2]
|
|
138
|
+
|
|
139
|
+
This changes my understanding significantly. [Summarize new understanding]
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
**If user confirms assumptions:**
|
|
143
|
+
|
|
144
|
+
```
|
|
145
|
+
Great, assumptions validated.
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Continue to offer_next.
|
|
149
|
+
</step>
|
|
150
|
+
|
|
151
|
+
<step name="offer_next">
|
|
152
|
+
Present next steps:
|
|
153
|
+
|
|
154
|
+
```
|
|
155
|
+
What's next?
|
|
156
|
+
1. Discuss context (/gsd:discuss-phase ${PHASE}) - Let me ask you questions to build comprehensive context
|
|
157
|
+
2. Plan this phase (/gsd:plan-phase ${PHASE}) - Create detailed execution plans
|
|
158
|
+
3. Re-examine assumptions - I'll analyze again with your corrections
|
|
159
|
+
4. Done for now
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Wait for user selection.
|
|
163
|
+
|
|
164
|
+
If "Discuss context": Note that CONTEXT.md will incorporate any corrections discussed here
|
|
165
|
+
If "Plan this phase": Proceed knowing assumptions are understood
|
|
166
|
+
If "Re-examine": Return to analyze_phase with updated understanding
|
|
167
|
+
</step>
|
|
168
|
+
|
|
169
|
+
</process>
|
|
170
|
+
|
|
171
|
+
<success_criteria>
|
|
172
|
+
- Phase number validated against roadmap
|
|
173
|
+
- Assumptions surfaced across five areas: technical approach, implementation order, scope, risks, dependencies
|
|
174
|
+
- Confidence levels marked where appropriate
|
|
175
|
+
- "What do you think?" prompt presented
|
|
176
|
+
- User feedback acknowledged
|
|
177
|
+
- Clear next steps offered
|
|
178
|
+
</success_criteria>
|