gsd-cc 0.9.0 → 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/bin/install.js CHANGED
@@ -27,7 +27,7 @@ ${cyan} ██████╗ ███████╗██████╗
27
27
  `;
28
28
 
29
29
  // Sub-skills that get their own top-level directory under .claude/skills/
30
- const SUB_SKILLS = ['apply', 'auto', 'config', 'discuss', 'help', 'ideate', 'plan', 'profile', 'seed', 'status', 'tutorial', 'unify', 'update'];
30
+ const SUB_SKILLS = ['apply', 'auto', 'config', 'discuss', 'help', 'ideate', 'plan', 'profile', 'seed', 'status', 'tutorial', 'unify', 'update', 'vision'];
31
31
 
32
32
  // Shared directories that go into gsd-cc-shared/
33
33
  const SHARED_DIRS = ['checklists', 'prompts', 'templates'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-cc",
3
- "version": "0.9.0",
3
+ "version": "1.0.0",
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",
@@ -184,6 +184,7 @@ Execute S01? (manual or auto)
184
184
  ## Delegating to Sub-Skills
185
185
 
186
186
  When routing to a sub-skill, tell the user what you're doing and then invoke the skill:
187
+ - Vision document → `/gsd-cc-vision`
187
188
  - Decision profile → `/gsd-cc-profile`
188
189
  - Brainstorming → `/gsd-cc-ideate`
189
190
  - Ideation → `/gsd-cc-seed`
@@ -34,9 +34,12 @@ Load ONLY these files — nothing else:
34
34
  | `.gsd/S{nn}-PLAN.md` | Slice overview for context |
35
35
  | `.gsd/DECISIONS.md` | Decisions that affect implementation |
36
36
  | `.gsd/S{nn}-T{prev}-SUMMARY.md` | Previous task summaries (all that exist for this slice) |
37
+ | `.gsd/VISION.md` | User's detailed intentions (if it exists) — check alignment during implementation |
37
38
 
38
39
  **Do NOT load:** PLANNING.md, ROADMAP.md, PROJECT.md, RESEARCH.md, CONTEXT.md, or files from other slices. These are not needed during execution and waste context window space.
39
40
 
41
+ **Vision alignment:** If the task implements something described in VISION.md, ensure the implementation matches the user's intention. If you must deviate, note it in the task summary: "Vision says X, implemented Y because Z."
42
+
40
43
  ## Step 3: Read and Announce the Plan
41
44
 
42
45
  Parse the task plan XML. Display to the user:
@@ -23,6 +23,7 @@ Check for "GSD-CC language: {lang}" in CLAUDE.md (loaded automatically). All out
23
23
  3. Read `.gsd/PLANNING.md` — for overall project context
24
24
  4. Read `.gsd/DECISIONS.md` — for decisions already made
25
25
  5. Read `.gsd/type.json` — for project type and rigor
26
+ 6. Read `.gsd/VISION.md` — if it exists, this is the user's detailed intention for every aspect of the project. Use it to inform your questions and to check if a gray area is already answered by the vision. If the vision says "big red send button", don't ask "how should the send button look?" — it's already decided.
26
27
 
27
28
  ## Step 2: Identify Gray Areas
28
29
 
@@ -25,6 +25,7 @@ Read these files (all that exist):
25
25
  4. `.gsd/DECISIONS.md` — all decisions made so far
26
26
  5. `.gsd/S{nn}-CONTEXT.md` — discuss phase output (if it exists)
27
27
  6. `.gsd/type.json` — rigor and type config
28
+ 7. `.gsd/VISION.md` — if it exists, the user's detailed intentions. Acceptance criteria should align with vision details. If a task implements something the user described in the vision, reference it.
28
29
 
29
30
  ## Step 2: Research
30
31
 
@@ -30,73 +30,99 @@ If `.gsd/PROFILE.md` already exists, ask: "You already have a profile. Update it
30
30
 
31
31
  Go deep. This interview should take 15-25 minutes. Don't rush. Ask ONE question at a time. Follow up on interesting answers. The goal is to understand the person, not fill out a form.
32
32
 
33
- ### Section 1: Background & Context
33
+ **CRITICAL: Adapt your language to the user's level.** The questions below are guidelines, not scripts. A senior engineer can handle "monolith or microservices?" A first-time builder needs "should it start simple or be built for growth from day one?" Read the room from the first answer and adjust everything that follows.
34
34
 
35
- - "What's your technical background? Self-taught, bootcamp, CS degree, something else?"
36
- - "How long have you been building software?"
37
- - "What's the biggest project you've shipped?"
38
- - "Do you code full-time or is this a side project / business tool?"
35
+ ### Section 1: Who Are You?
39
36
 
40
- Adapt the rest of the interview based on their level. A senior engineer gets different questions than a first-time vibe coder.
37
+ Start casual. Get a feel for who you're talking to.
41
38
 
42
- ### Section 2: Architecture & Design Philosophy
39
+ - "Tell me a bit about yourself — do you build software for a living, or is this more of a side thing?"
40
+ - "Have you built something before that you were proud of? What was it?"
41
+ - "How do you usually work — do you plan everything first, or do you figure it out as you go?"
43
42
 
44
- - "When you start a new project, what do you set up first?"
45
- - "Monolith or microservices and why?"
46
- - "How do you feel about ORMs? Raw SQL? Query builders?"
47
- - "REST, GraphQL, tRPC, gRPC what's your instinct and why?"
48
- - "How much abstraction is too much? When does DRY become harmful?"
49
- - "Do you prefer convention over configuration (Rails-style) or explicit control (Express-style)?"
50
- - "What's a popular pattern or tool that you think is overrated?"
51
- - "What's an unpopular opinion you hold about software architecture?"
43
+ **Based on their answers, determine their level:**
44
+ - **Beginner/Vibe Coder:** No CS background, maybe built a few things with AI help, thinks in terms of "I want it to do X" not "I need an API endpoint"
45
+ - **Intermediate:** Has shipped a few projects, knows some frameworks, has opinions but not strong ones
46
+ - **Advanced:** Years of experience, strong opinions, can discuss tradeoffs in depth
52
47
 
53
- ### Section 3: Tech Stack Preferences
48
+ **Adapt ALL following questions to their level.** The sections below show both styles — pick the right one.
54
49
 
55
- - "What languages do you reach for? What languages do you avoid?"
56
- - "Frontend framework preference? Why?"
57
- - "Database preference? SQL vs NoSQL — when and why?"
58
- - "How do you feel about TypeScript? Strict mode?"
59
- - "Testing: TDD, test-after, or 'I'll add tests when it breaks'?"
60
- - "CSS approach: Tailwind, CSS modules, styled-components, vanilla?"
61
- - "Package preferences: do you prefer fewer dependencies or best-in-class for each need?"
50
+ ### Section 2: How Do You Like Things Built?
62
51
 
63
- ### Section 4: Quality & Standards
52
+ **For beginners:**
53
+ - "When you imagine your project — should it be simple and just work, or do you want it built so it can grow into something bigger later?"
54
+ - "Do you care about what's under the hood, or just that it works?"
55
+ - "If Claude has to pick between two ways to build something — one is quicker but messier, one takes longer but is cleaner — which would you prefer?"
56
+ - "Are there apps or tools you use that you think are really well made? What do you like about them?"
57
+ - "Is there software you've used that frustrated you? What was annoying about it?"
64
58
 
65
- - "What does 'done' mean to you? When is code ready to ship?"
66
- - "How much error handling is enough? Do you handle every edge case upfront or ship and iterate?"
67
- - "Logging and observability: how much do you add from the start?"
68
- - "Performance: optimize early or only when there's a measured problem?"
69
- - "Security: what do you always do, what do you skip for MVPs?"
70
- - "Code comments: a lot, a little, or 'the code should speak for itself'?"
59
+ **For advanced users:**
60
+ - "What drives your architecture decisions simplicity, scalability, developer experience, something else?"
61
+ - "Where do you fall on the 'build it right vs. ship it fast' spectrum? Does it depend on context?"
62
+ - "What's a popular approach that you think is overrated?"
63
+ - "What's an unpopular opinion you hold about how software should be built?"
71
64
 
72
- ### Section 5: Process & Decision-Making
65
+ ### Section 3: Tools & Technologies
73
66
 
74
- - "When you face two valid approaches, how do you decide? Gut feeling? Research? Ask someone?"
75
- - "How do you handle scope creep? Are you strict about MVP or do you let features grow?"
76
- - "When something isn't working, how long do you try before switching approaches?"
77
- - "What makes you rage-quit a library or tool?"
78
- - "What's a mistake you've made that changed how you build things?"
67
+ **For beginners:**
68
+ - "Do you have a preference for how things look? Modern and clean? Colorful? Simple?"
69
+ - "Is this going to be a website, an app, something that runs on your computer, or something else?"
70
+ - "Have you used or heard about specific tools or languages that you'd like to use or avoid?"
71
+ - "Do you want Claude to pick the best tools, or do you want to have a say?"
79
72
 
80
- ### Section 6: Aesthetics & UX (if relevant)
73
+ **For advanced users:**
74
+ - "What's your go-to stack? What do you reach for by default?"
75
+ - "Any technologies you refuse to use? Why?"
76
+ - "How do you feel about dependencies — fewer is better, or best tool for each job?"
77
+ - "Testing philosophy — when and how much?"
81
78
 
82
- - "How important is UI polish for v1?"
83
- - "Do you prefer minimal/clean or feature-rich/dense interfaces?"
84
- - "Mobile-first or desktop-first?"
85
- - "Dark mode?"
86
- - "What apps or websites do you think are really well-designed?"
79
+ ### Section 4: Quality & "Good Enough"
87
80
 
88
- ### Section 7: Red Lines & Non-Negotiables
81
+ **For beginners:**
82
+ - "When would you say something is 'done'? When it works? When it looks nice? When it handles weird situations?"
83
+ - "If something goes wrong while someone uses your app — should it crash, show an error message, or try to fix itself?"
84
+ - "How polished does it need to be for version 1? Perfect, or good enough to use?"
85
+ - "Is speed important? Should it feel instant?"
89
86
 
90
- - "What should Claude NEVER do in your projects?"
91
- - "What patterns or approaches are absolute no-gos for you?"
92
- - "Any libraries or tools you refuse to use? Why?"
93
- - "Is there anything where you'd rather have ugly-but-working than clean-but-incomplete?"
87
+ **For advanced users:**
88
+ - "What's your bar for shipping? What's your bar for 'done done'?"
89
+ - "Error handling strategy defensive from day one, or add as needed?"
90
+ - "Performance optimize early or measure first?"
91
+ - "Security baseline — what do you always do, what do you defer?"
94
92
 
95
- ### Section 8: Wildcards
93
+ ### Section 5: How You Think & Decide
96
94
 
97
- - "If you could mass-delete one concept from modern software development, what would it be?"
98
- - "What do beginners understand better than experts?"
99
- - "Is there a 'wrong' way of doing things that you secretly think is fine?"
95
+ **For everyone (adapt tone):**
96
+ - "When there's no obvious right answer — how do you usually decide? Gut feeling? Research? Ask someone?"
97
+ - "Have you ever built something and halfway through realized you should have done it differently? What happened?"
98
+ - "What makes you give up on a tool or approach and try something else?"
99
+ - "Is there something about how things are usually done that you think is stupid or overcomplicated?"
100
+
101
+ ### Section 6: Look & Feel
102
+
103
+ **For everyone:**
104
+ - "How important is it that it looks good — on a scale from 'who cares, it just needs to work' to 'design is everything'?"
105
+ - "When you think of apps you love using — what's the vibe? Clean and minimal? Packed with features? Playful?"
106
+ - "Phone first or computer first?"
107
+ - "Any apps or websites that you think nailed the design?"
108
+
109
+ ### Section 7: Things You Don't Want
110
+
111
+ **For beginners:**
112
+ - "Is there anything where you'd say 'I definitely don't want that'?"
113
+ - "Any features or behaviors in apps that annoy you? Things you'd never put in your own project?"
114
+ - "Anything that Claude should absolutely not decide on its own — something where it should always ask you first?"
115
+
116
+ **For advanced users:**
117
+ - "Hard no-gos — patterns, tools, approaches?"
118
+ - "Anything where you'd rather have ugly-but-working than clean-but-incomplete?"
119
+ - "What should Claude never do without asking?"
120
+
121
+ ### Section 8: The Fun Ones
122
+
123
+ - "If you could change one thing about how software is built today, what would it be?"
124
+ - "Is there something that 'everyone knows is wrong' that you secretly think is fine?"
125
+ - "What do people who are new to this understand better than the experts?"
100
126
 
101
127
  ## Generating PROFILE.md
102
128
 
@@ -40,6 +40,7 @@ Read ALL of these:
40
40
  | `.gsd/S{nn}-T{nn}-PLAN.md` | Per-task plans (all tasks in slice) |
41
41
  | `.gsd/S{nn}-T{nn}-SUMMARY.md` | What actually happened (all tasks in slice) |
42
42
  | `.gsd/DECISIONS.md` | Existing decisions |
43
+ | `.gsd/VISION.md` | User's original intentions (if it exists) |
43
44
 
44
45
  Use `Glob` to find all matching files for the current slice.
45
46
 
@@ -163,7 +164,33 @@ Roadmap needs update:
163
164
 
164
165
  If the roadmap needs an update, describe what should change but do NOT modify the roadmap file. That happens in the next planning phase.
165
166
 
166
- ## Step 8: Quality Gate
167
+ ## Step 8: Vision Alignment Check
168
+
169
+ If `.gsd/VISION.md` exists, compare what was built in this slice against the user's original intentions:
170
+
171
+ For each vision detail that relates to this slice:
172
+
173
+ ```
174
+ Vision Alignment:
175
+
176
+ | Vision Detail | What User Wanted | What Was Built | Alignment |
177
+ |--------------|-----------------|----------------|-----------|
178
+ | {detail} | {user's words} | {what we did} | ✓ Aligned / ⚠ Adjusted / ✗ Deviated |
179
+
180
+ Adjustments:
181
+ - {detail}: Vision said "{user's words}". Implemented as {what we did}
182
+ because {technical reason}. Result is {how close to the original intent}.
183
+
184
+ Deviations:
185
+ - {detail}: Vision said "{user's words}". Could not implement because
186
+ {reason}. Alternative: {what we did instead}. Recommendation: {keep as-is / revisit later}.
187
+ ```
188
+
189
+ This section is critical for auto-mode transparency. The user should be able to read this and immediately see where their vision was honored and where it wasn't — and why.
190
+
191
+ If no VISION.md exists, skip this step.
192
+
193
+ ## Step 9: Quality Gate
167
194
 
168
195
  Check against `checklists/unify-complete.md`:
169
196
 
@@ -0,0 +1,181 @@
1
+ ---
2
+ name: gsd-cc-vision
3
+ description: >
4
+ Deep vision document that captures the user's detailed intentions for
5
+ every aspect of the project. Optional but powerful — serves as the
6
+ north star that all planning and execution aligns to. Use when user
7
+ says /gsd-cc-vision, wants to describe their project in detail before
8
+ building, or wants to ensure auto-mode stays true to their intentions.
9
+ allowed-tools: Read, Write, Edit, Glob
10
+ ---
11
+
12
+ # /gsd-cc-vision — Detailed Vision Document
13
+
14
+ You help the user describe their project in as much detail as they want. This is NOT planning — no tasks, no slices, no technical decomposition. This is the user painting a picture of what they imagine the finished product looks like.
15
+
16
+ The result is a VISION.md that serves as a permanent reference throughout the entire project. It is never modified by the system — only by the user. Every planning decision, every implementation choice, every auto-mode discussion checks against this document.
17
+
18
+ ## Language
19
+
20
+ Check for "GSD-CC language: {lang}" in CLAUDE.md (loaded automatically). All output must use that language. If not found, default to English.
21
+
22
+ ## When to Run
23
+
24
+ - After Ideation or Seed, before the first slice is planned
25
+ - Anytime the user wants to describe their vision in more detail
26
+ - The router should suggest this after Seed if rigor is `deep`
27
+
28
+ ## Mindset
29
+
30
+ You are a listener and clarifier. Your job is to help the user get what's in their head onto paper. You don't judge, you don't say "that's not possible", you don't optimize. You capture their INTENTION.
31
+
32
+ If they say "I want a big red button that sends the email" — you write that down. If it turns out later that a big red button is bad UX, that's for the planning phase to figure out. The vision documents what the user WANTS, not what's technically optimal.
33
+
34
+ ## The Conversation
35
+
36
+ ### Start
37
+
38
+ ```
39
+ Let's capture your vision — how you imagine the finished product.
40
+
41
+ Don't worry about what's realistic or technical. Tell me what you
42
+ see when you close your eyes and imagine it working perfectly.
43
+
44
+ We can go as deep as you want. Some people describe the big picture,
45
+ others want to specify every button and animation. Both are fine.
46
+
47
+ Where do you want to start?
48
+ ```
49
+
50
+ ### How to Guide
51
+
52
+ Let the user lead. They might want to describe:
53
+
54
+ - **The big picture:** "When someone opens the app, they see..."
55
+ - **Specific features:** "There's a dashboard that shows..."
56
+ - **User journeys:** "A new user signs up, then..."
57
+ - **Look and feel:** "It should feel like Notion meets Spotify..."
58
+ - **Specific interactions:** "When you click the send button, there's a satisfying animation and..."
59
+ - **Edge cases they care about:** "If the internet drops, it should..."
60
+ - **Things they explicitly DON'T want:** "No popups, ever."
61
+
62
+ For each thing they describe, ask ONE follow-up to sharpen it:
63
+ - "When you say 'fast' — what does that feel like? Instant? Under a second?"
64
+ - "You said 'simple dashboard' — are we talking 3 numbers on a screen, or more like 10 cards with charts?"
65
+ - "The notification — is that an email, a push notification, a sound, or just something on the screen?"
66
+
67
+ **Don't ask about:**
68
+ - Technical implementation ("should this be a REST endpoint?")
69
+ - Architecture ("monolith or microservices?")
70
+ - Tools ("React or Vue?")
71
+
72
+ Those questions belong in Seed and Discuss. Vision is pure user intention.
73
+
74
+ ### Depth Control
75
+
76
+ Let the user decide how deep to go. After covering a topic, ask:
77
+
78
+ ```
79
+ Got it. Want to go deeper on this, or move on to the next area?
80
+ ```
81
+
82
+ Some users will spend 5 minutes. Some will spend an hour. Both are valid. The more detail in the vision, the better auto-mode can align to their intentions.
83
+
84
+ ### Areas to Cover (if the user doesn't naturally go there)
85
+
86
+ Gently guide toward these if they haven't been mentioned, but don't force:
87
+
88
+ 1. **First impression** — What does someone see when they first open it?
89
+ 2. **Core workflow** — The main thing people do, step by step
90
+ 3. **Key moments** — The 2-3 moments that make or break the experience
91
+ 4. **What it feels like** — Speed, personality, vibe
92
+ 5. **What it's NOT** — Things they want to avoid
93
+ 6. **Success scenario** — "I'll know it's working when..."
94
+
95
+ ## Generate VISION.md
96
+
97
+ Write `.gsd/VISION.md`:
98
+
99
+ ```markdown
100
+ # Project Vision
101
+
102
+ > This document captures the user's detailed intentions.
103
+ > It is NEVER modified by the system — only by the user.
104
+ > All planning and execution aligns to this vision.
105
+ > Deviations are documented and justified, never hidden.
106
+
107
+ ## Overview
108
+ {The big picture in the user's own words — 1-2 paragraphs}
109
+
110
+ ## First Impression
111
+ {What someone sees/feels when they first encounter the product}
112
+
113
+ ## Core Experience
114
+ {The main workflow or journey, described from the user's perspective.
115
+ Not technical — just what they imagine happening.}
116
+
117
+ ## Key Details
118
+ {Specific things the user described in detail. Use their exact words.
119
+ Each detail is a reference point for later planning.}
120
+
121
+ ### {Detail 1 — e.g. "The Dashboard"}
122
+ {User's description}
123
+
124
+ ### {Detail 2 — e.g. "The Send Button"}
125
+ {User's description}
126
+
127
+ ### {Detail 3}
128
+ ...
129
+
130
+ ## Look & Feel
131
+ {How it should feel — speed, personality, vibe, references to other products}
132
+
133
+ ## Explicitly NOT Wanted
134
+ {Things the user specifically said they don't want}
135
+
136
+ ## Success Criteria
137
+ {How the user will know the project succeeded — in their own words}
138
+ ```
139
+
140
+ ### Rules for VISION.md
141
+
142
+ - **Use the user's words.** Don't rephrase "I want a big red button" into "a prominent call-to-action element." Write "big red button."
143
+ - **Don't add things.** Only write what the user said or confirmed. No "best practice" additions.
144
+ - **Don't remove things.** Even if something seems contradictory or impractical, write it down. The planning phase handles contradictions.
145
+ - **Mark specificity levels.** If the user was very specific about something ("exactly 3 columns"), note it differently than vague preferences ("should be fast-ish").
146
+
147
+ ## After Vision
148
+
149
+ ```
150
+ ✓ Vision captured.
151
+
152
+ .gsd/VISION.md — {n} sections, {n} specific details
153
+
154
+ This is your north star. Every planning decision will align to it.
155
+ When something can't be built exactly as you described, you'll see
156
+ exactly what changed and why.
157
+
158
+ ┌─────────────────────────────────────────────┐
159
+ │ Start a fresh session to continue: │
160
+ │ │
161
+ │ 1. Exit this session │
162
+ │ 2. Run: claude │
163
+ │ 3. Type: /gsd-cc │
164
+ │ │
165
+ │ Next up: roadmap and detailed planning. │
166
+ └─────────────────────────────────────────────┘
167
+ ```
168
+
169
+ **Do NOT continue in this session.** Each phase gets a fresh context window.
170
+
171
+ ## How Other Skills Use VISION.md
172
+
173
+ This skill only CREATES the vision. Other skills READ it:
174
+
175
+ - **Discuss (manual):** "The vision says X about this area. How do you want to handle it technically?"
176
+ - **Discuss (auto/synthetic):** "VISION.md says the user wants a big red send button. Implementing as a prominent CTA button in the primary action position."
177
+ - **Plan:** Task acceptance criteria should align with vision details where applicable
178
+ - **Apply:** If implementation deviates from vision, note it in the task summary
179
+ - **UNIFY:** Vision alignment check — "Vision said X, we built Y, because Z"
180
+
181
+ The vision is never modified by these skills. Only the user can update it via `/gsd-cc-vision`.