gsd-cc 1.1.0 → 1.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-cc",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Get Shit Done on Claude Code — structured AI development with your Max plan",
5
5
  "author": "Philipp Briese (https://github.com/0ui-labs)",
6
6
  "homepage": "https://github.com/0ui-labs/GSD-CC#readme",
@@ -50,10 +50,19 @@ IF .gsd/auto.lock exists:
50
50
  ### No Project
51
51
  ```
52
52
  IF .gsd/ does not exist:
53
- Ask: "No project found. Do you know what you want to build, or do you
54
- want to explore your idea first?"
55
- If they have a clear idea → delegate to /gsd-cc-seed
56
- → If they're unsure, have a vague idea, or want to brainstorm → delegate to /gsd-cc-ideate
53
+ Present three starting points:
54
+
55
+ "No project found. How do you want to start?
56
+
57
+ 1) I have a vague idea or a problem — let's explore it together
58
+ 2) I know what I want to build — let's plan it
59
+ 3) I have an existing concept document — import it
60
+
61
+ Or just describe what's on your mind."
62
+
63
+ → "1" or signals uncertainty → delegate to /gsd-cc-ideate
64
+ → "2" or clear project description → delegate to /gsd-cc-seed
65
+ → "3" or mentions a document/file/spec → delegate to /gsd-cc-ingest
57
66
  → If they just describe their project → delegate to /gsd-cc-seed with their description
58
67
  ```
59
68
 
@@ -34,53 +34,104 @@ Say:
34
34
  Got it. Let me read through this carefully.
35
35
  ```
36
36
 
37
- ## Step 2: Analyze and Summarize
37
+ ## Step 2: Playback "Here's What I Understood"
38
38
 
39
- Read the entire document. Then present a structured summary back to the user:
39
+ Read the entire document. Then explain IN YOUR OWN WORDS what you understood — as a coherent narrative, not a bullet list. This is like telling a friend what the project is about after reading the spec.
40
40
 
41
41
  ```
42
- Here's what I understood from your document:
42
+ OK, I've read through everything. Let me tell you what I understood
43
+ correct me wherever I'm wrong.
43
44
 
44
- PROJECT: {one sentence what is this?}
45
+ {2-4 paragraphs in your own words explaining:
46
+ - What we're building and why it exists
47
+ - Who it's for and what problem it solves
48
+ - How it works at a high level
49
+ - What makes it different or interesting}
45
50
 
46
- WHAT'S CLEAR:
47
- ✓ {Area 1} — {brief summary of what's defined}
51
+ Did I get that right, or did I misunderstand something?
52
+ ```
53
+
54
+ **This is the most important step.** Write it like you're explaining the project to someone new. Use simple language. Don't parrot the document back — rephrase it to show you actually understood the intent.
55
+
56
+ **Wait for the user's response.** They might say:
57
+ - "Yes, exactly!" → proceed to Step 3
58
+ - "Almost, but X is wrong..." → correct your understanding, rephrase the relevant part, confirm again
59
+ - "No, that's not what I meant at all..." → ask what they actually mean, update your understanding, try the playback again
60
+
61
+ Do NOT proceed until the user confirms you understood correctly. Iterate as many times as needed.
62
+
63
+ ## Step 3: Analysis — Clear, Vague, Contradictions
64
+
65
+ Once the user confirms your understanding, show the structured analysis:
66
+
67
+ ```
68
+ Great. Here's what's clearly defined, what's still vague, and where
69
+ I found contradictions:
70
+
71
+ CLEAR:
72
+ ✓ {Area 1} — {brief summary}
48
73
  ✓ {Area 2} — {brief summary}
49
- ✓ {Area 3} — {brief summary}
50
74
  ...
51
75
 
52
- WHAT'S VAGUE OR MISSING:
53
- ? {Area 1} — {what's unclear or not mentioned}
54
- ? {Area 2} — {what's unclear}
76
+ VAGUE OR MISSING:
77
+ ? {Area 1} — {what's unclear}
78
+ ? {Area 2} — {what's missing}
55
79
  ...
56
80
 
57
81
  CONTRADICTIONS (if any):
58
- ⚠ {Description of contradiction}
82
+ ⚠ {Description "Section 2 says X but section 5 says Y"}
59
83
  ...
60
84
 
61
- Did I get this right? Anything I misunderstood?
85
+ I'd like to go through the unclear points with you one by one.
86
+ Ready?
62
87
  ```
63
88
 
64
- **This confirmation step is critical.** The user must verify that you understood their concept correctly before you generate any artifacts. Misunderstanding a concept and generating wrong artifacts is worse than asking.
89
+ Wait for confirmation.
65
90
 
66
- Wait for confirmation before proceeding.
91
+ ## Step 4: Guided Gap-Filling
67
92
 
68
- ## Step 3: Fill the Gaps
93
+ Go through each vague/missing point ONE AT A TIME. Never ask multiple questions at once.
69
94
 
70
- For each vague or missing area, ask targeted questions. Don't ask about things the document already covers — that's annoying.
95
+ ```
96
+ Let's start with the first open point.
97
+
98
+ {Topic}: {What's unclear, in plain language}
99
+ {Why it matters — one sentence explaining why this affects the project}
100
+
101
+ {ONE question}
102
+ ```
103
+
104
+ Wait for the answer. Then move to the next point:
105
+
106
+ ```
107
+ Got it. Next one:
108
+
109
+ {Topic}: ...
110
+ ```
71
111
 
72
112
  Adapt your questions to the user's level (same as /gsd-cc-profile — read the room from how the document is written).
73
113
 
74
- **For a technical spec with missing areas:**
75
- - "Your spec covers the API endpoints but doesn't mention authentication. What's the plan — JWT, sessions, OAuth?"
114
+ **For a technical spec:**
115
+ - "Your spec covers the API endpoints but doesn't mention authentication. What's the plan?"
76
116
 
77
- **For a non-technical brief with gaps:**
78
- - "You described what the dashboard shows, but not what happens when someone clicks a number. Should it open a detail view, filter something, or just be informational?"
117
+ **For a non-technical brief:**
118
+ - "You described what the dashboard shows, but what happens when someone clicks a number?"
79
119
 
80
120
  **For a vague concept:**
81
- - "You mention 'user management' — what does that mean to you? Just login/signup, or also roles, permissions, teams?"
121
+ - "You mention 'user management' — what does that mean to you? Just login/signup, or more?"
82
122
 
83
- Group related questions. Don't fire 15 questions at once. 3-4 at a time, then wait.
123
+ If the user says "I don't know" or "you decide" note it as an open question for later phases. Don't push.
124
+
125
+ After resolving contradictions and filling gaps, summarize what changed:
126
+
127
+ ```
128
+ OK, here's what we clarified:
129
+ • {Point 1}: {decision}
130
+ • {Point 2}: {decision}
131
+ • {Point 3}: left open for later
132
+
133
+ {Remaining open points} will be addressed during planning.
134
+ ```
84
135
 
85
136
  ## Step 4: Assess Coverage
86
137