get-shit-done-cc 1.2.10 → 1.2.12
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.
|
@@ -17,10 +17,9 @@ This prevents issue pile-up by providing a triage mechanism with codebase awaren
|
|
|
17
17
|
</objective>
|
|
18
18
|
|
|
19
19
|
<context>
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
Roadmap phases: !`grep -E "^### Phase [0-9]" .planning/ROADMAP.md 2>/dev/null || echo "NO_ROADMAP"`
|
|
20
|
+
@.planning/ISSUES.md
|
|
21
|
+
@.planning/STATE.md
|
|
22
|
+
@.planning/ROADMAP.md
|
|
24
23
|
</context>
|
|
25
24
|
|
|
26
25
|
<process>
|
|
@@ -24,11 +24,6 @@ Roadmaps define the phase breakdown - what work happens in what order. This comm
|
|
|
24
24
|
|
|
25
25
|
<context>
|
|
26
26
|
@.planning/PROJECT.md
|
|
27
|
-
|
|
28
|
-
**Check for research:**
|
|
29
|
-
!`ls .planning/research/*.md 2>/dev/null || echo "NO_RESEARCH"`
|
|
30
|
-
|
|
31
|
-
**Load config:**
|
|
32
27
|
@.planning/config.json
|
|
33
28
|
</context>
|
|
34
29
|
|
|
@@ -22,9 +22,6 @@ Creates `.planning/` with PROJECT.md and config.json.
|
|
|
22
22
|
@~/.claude/get-shit-done/templates/config.json
|
|
23
23
|
</execution_context>
|
|
24
24
|
|
|
25
|
-
<context>
|
|
26
|
-
!`[ -d .planning ] && echo "PLANNING_EXISTS" || echo "NO_PLANNING"`
|
|
27
|
-
</context>
|
|
28
25
|
|
|
29
26
|
<process>
|
|
30
27
|
|
|
@@ -51,16 +48,13 @@ Creates `.planning/` with PROJECT.md and config.json.
|
|
|
51
48
|
</step>
|
|
52
49
|
|
|
53
50
|
<step name="question">
|
|
54
|
-
**
|
|
51
|
+
**1. Open (FREEFORM - do NOT use AskUserQuestion):**
|
|
55
52
|
|
|
56
|
-
|
|
53
|
+
Ask inline: "What do you want to build?"
|
|
57
54
|
|
|
58
|
-
|
|
59
|
-
- header: "Vision"
|
|
60
|
-
- question: "What do you want to build?"
|
|
61
|
-
- options: Contextual options if you have any hints, otherwise ["New app/tool", "Feature for existing project", "Let me describe it"]
|
|
55
|
+
Wait for their freeform response. This gives you the context needed to ask intelligent follow-up questions.
|
|
62
56
|
|
|
63
|
-
**2. Follow the thread:**
|
|
57
|
+
**2. Follow the thread (NOW use AskUserQuestion):**
|
|
64
58
|
|
|
65
59
|
Based on their response, use AskUserQuestion with options that probe what they mentioned:
|
|
66
60
|
- header: "[Topic they mentioned]"
|
package/commands/gsd/progress.md
CHANGED
|
@@ -14,15 +14,6 @@ Check project progress, summarize recent work and what's ahead, then intelligent
|
|
|
14
14
|
Provides situational awareness before continuing work.
|
|
15
15
|
</objective>
|
|
16
16
|
|
|
17
|
-
<context>
|
|
18
|
-
Planning structure: !`ls -la .planning/ 2>/dev/null || echo "NO_PLANNING_STRUCTURE"`
|
|
19
|
-
Phases: !`ls .planning/phases/ 2>/dev/null || echo "NO_PHASES"`
|
|
20
|
-
State exists: !`[ -f .planning/STATE.md ] && echo "EXISTS" || echo "MISSING"`
|
|
21
|
-
Roadmap exists: !`[ -f .planning/ROADMAP.md ] && echo "EXISTS" || echo "MISSING"`
|
|
22
|
-
Recent summaries: !`find .planning/phases -name "*-SUMMARY.md" -type f 2>/dev/null | sort | tail -3`
|
|
23
|
-
All plans: !`find .planning/phases -name "*-PLAN.md" -type f 2>/dev/null | sort`
|
|
24
|
-
All summaries: !`find .planning/phases -name "*-SUMMARY.md" -type f 2>/dev/null | sort`
|
|
25
|
-
</context>
|
|
26
17
|
|
|
27
18
|
<process>
|
|
28
19
|
|
|
@@ -31,11 +31,7 @@ Each subagent writes directly to `.planning/research/` preserving main context.
|
|
|
31
31
|
</execution_context>
|
|
32
32
|
|
|
33
33
|
<context>
|
|
34
|
-
**Load project vision:**
|
|
35
34
|
@.planning/PROJECT.md
|
|
36
|
-
|
|
37
|
-
**Check for existing research:**
|
|
38
|
-
!`ls .planning/research/ 2>/dev/null || echo "NO_RESEARCH_DIR"`
|
|
39
35
|
</context>
|
|
40
36
|
|
|
41
37
|
<process>
|
package/package.json
CHANGED