gsd-cc 0.9.1 → 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.
|
|
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",
|
package/skills/gsd/SKILL.md
CHANGED
|
@@ -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
|
|
package/skills/gsd/plan/SKILL.md
CHANGED
|
@@ -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
|
|
|
@@ -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:
|
|
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`.
|