gsd-cc 0.2.1 → 0.3.1
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 +1 -1
- package/package.json +1 -1
- package/skills/gsd/SKILL.md +2 -0
- package/skills/gsd/help/SKILL.md +69 -0
- package/skills/gsd/tutorial/SKILL.md +135 -0
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', 'discuss', 'plan', 'seed', 'status', 'unify', 'update'];
|
|
30
|
+
const SUB_SKILLS = ['apply', 'auto', 'discuss', 'help', 'plan', 'seed', 'status', 'tutorial', 'unify', 'update'];
|
|
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": "0.3.1",
|
|
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
|
@@ -148,6 +148,8 @@ When routing to a sub-skill, tell the user what you're doing and then invoke the
|
|
|
148
148
|
- Auto mode → `/gsd-cc-auto`
|
|
149
149
|
- Status overview → `/gsd-cc-status`
|
|
150
150
|
- Update skills → `/gsd-cc-update`
|
|
151
|
+
- Help → `/gsd-cc-help`
|
|
152
|
+
- Tutorial → `/gsd-cc-tutorial`
|
|
151
153
|
|
|
152
154
|
Power users can invoke these directly. But the default path only needs `/gsd-cc` + Enter.
|
|
153
155
|
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd-cc-help
|
|
3
|
+
description: >
|
|
4
|
+
Show available GSD-CC commands and how they work. Use when user says
|
|
5
|
+
/gsd-cc-help, /gsd-cc help, or asks what commands are available.
|
|
6
|
+
allowed-tools: Read, Glob
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# /gsd-cc-help — Command Reference
|
|
10
|
+
|
|
11
|
+
## Language
|
|
12
|
+
|
|
13
|
+
Read the `language` field from `.gsd/STATE.md` if it exists. All output must use that language. If no project exists or no language is set, default to English.
|
|
14
|
+
|
|
15
|
+
## Output
|
|
16
|
+
|
|
17
|
+
Show this reference, adapted to the configured language:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
GSD-CC — Get Shit Done on Claude Code
|
|
21
|
+
|
|
22
|
+
MAIN COMMAND
|
|
23
|
+
/gsd-cc Reads project state, suggests the next action.
|
|
24
|
+
This is the only command you need.
|
|
25
|
+
|
|
26
|
+
PHASE COMMANDS (power users)
|
|
27
|
+
/gsd-cc-seed Start a new project — guided ideation
|
|
28
|
+
/gsd-cc-discuss Resolve ambiguities before planning
|
|
29
|
+
/gsd-cc-plan Break a slice into tasks with acceptance criteria
|
|
30
|
+
/gsd-cc-apply Execute the next task (manual mode)
|
|
31
|
+
/gsd-cc-auto Start autonomous execution via claude -p
|
|
32
|
+
/gsd-cc-unify Mandatory plan-vs-actual reconciliation
|
|
33
|
+
|
|
34
|
+
INFO & MANAGEMENT
|
|
35
|
+
/gsd-cc-status Show project progress and AC tracking
|
|
36
|
+
/gsd-cc-update Update GSD-CC to the latest version
|
|
37
|
+
/gsd-cc-help This help screen
|
|
38
|
+
/gsd-cc-tutorial Guided walkthrough with a sample project
|
|
39
|
+
|
|
40
|
+
THE FLOW
|
|
41
|
+
1. /gsd-cc → Seed (what are you building?)
|
|
42
|
+
2. /gsd-cc → Roadmap (milestones and slices)
|
|
43
|
+
3. /gsd-cc → Plan (tasks with ACs and boundaries)
|
|
44
|
+
4. /gsd-cc → Execute (manual or auto)
|
|
45
|
+
5. /gsd-cc → UNIFY (mandatory quality check)
|
|
46
|
+
6. /gsd-cc → Next slice or milestone complete
|
|
47
|
+
|
|
48
|
+
PROJECT FILES
|
|
49
|
+
.gsd/STATE.md Current position and progress
|
|
50
|
+
.gsd/PLANNING.md Project brief from ideation
|
|
51
|
+
.gsd/PROJECT.md Elevator pitch (3-5 sentences)
|
|
52
|
+
.gsd/M001-ROADMAP.md Milestones and slices
|
|
53
|
+
.gsd/S01-PLAN.md Slice plan with architecture notes
|
|
54
|
+
.gsd/S01-T01-PLAN.md Task plan with ACs and boundaries
|
|
55
|
+
.gsd/S01-T01-SUMMARY.md What actually happened
|
|
56
|
+
.gsd/S01-UNIFY.md Plan vs. actual comparison
|
|
57
|
+
.gsd/DECISIONS.md All decisions, append-only
|
|
58
|
+
.gsd/COSTS.jsonl Token usage tracking (auto-mode)
|
|
59
|
+
|
|
60
|
+
TIPS
|
|
61
|
+
• You only need /gsd-cc — it always knows what to do next
|
|
62
|
+
• Type "auto" when asked to run tasks autonomously
|
|
63
|
+
• Come back tomorrow — state survives between sessions
|
|
64
|
+
• UNIFY cannot be skipped — it's what keeps quality high
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## After showing help
|
|
68
|
+
|
|
69
|
+
If a `.gsd/` directory exists, add a one-line status: where the project currently is and what the suggested next step would be.
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd-cc-tutorial
|
|
3
|
+
description: >
|
|
4
|
+
Interactive walkthrough that builds a small sample project step by step.
|
|
5
|
+
Use when user says /gsd-cc-tutorial, /gsd-cc tutorial, or asks for a
|
|
6
|
+
guided introduction to GSD-CC.
|
|
7
|
+
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /gsd-cc-tutorial — Guided Walkthrough
|
|
11
|
+
|
|
12
|
+
You guide the user through building a small project with GSD-CC, explaining each phase as it happens. This is a teaching mode — go slow, explain what's happening and why.
|
|
13
|
+
|
|
14
|
+
## Language
|
|
15
|
+
|
|
16
|
+
Ask the user which language to use before starting, just like `/gsd-cc-seed` does. Default to English.
|
|
17
|
+
|
|
18
|
+
## Step 1: Welcome
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
Welcome to the GSD-CC Tutorial!
|
|
22
|
+
|
|
23
|
+
I'll walk you through building a small project from start to finish.
|
|
24
|
+
You'll see every phase in action: Seed → Plan → Execute → UNIFY.
|
|
25
|
+
|
|
26
|
+
The whole tutorial takes about 10-15 minutes.
|
|
27
|
+
|
|
28
|
+
We'll build a simple CLI tool together — small enough to finish quickly,
|
|
29
|
+
big enough to see every GSD-CC feature.
|
|
30
|
+
|
|
31
|
+
Ready? (yes to start)
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Wait for confirmation.
|
|
35
|
+
|
|
36
|
+
## Step 2: Explain the Philosophy
|
|
37
|
+
|
|
38
|
+
Briefly explain (3-4 sentences max):
|
|
39
|
+
- Claude Code is the agent, GSD-CC tells it what to do and when
|
|
40
|
+
- Projects are broken into Milestones → Slices → Tasks
|
|
41
|
+
- Each task fits one context window (fresh session, no context rot)
|
|
42
|
+
- UNIFY checks that what was built matches what was planned
|
|
43
|
+
|
|
44
|
+
Then say: "Let's start. I'll run `/gsd-cc-seed` now — this is the ideation phase."
|
|
45
|
+
|
|
46
|
+
## Step 3: Run Seed (with commentary)
|
|
47
|
+
|
|
48
|
+
Delegate to `/gsd-cc-seed` but with a twist: use this project idea:
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
A Node.js CLI tool called "mdcount" that counts words, sentences,
|
|
52
|
+
and reading time in Markdown files. Takes a file path as argument,
|
|
53
|
+
outputs a summary.
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Let the user confirm or pick their own idea. If they pick their own, use that instead.
|
|
57
|
+
|
|
58
|
+
Before each seed question, add a brief explanation:
|
|
59
|
+
- "Now I'll ask about [topic]. This helps me understand [why]."
|
|
60
|
+
|
|
61
|
+
After seed completes, explain what was created:
|
|
62
|
+
- "Seed created 5 files in .gsd/. Let me show you the key one..."
|
|
63
|
+
- Show a brief excerpt of PLANNING.md
|
|
64
|
+
|
|
65
|
+
## Step 4: Run Roadmap (with commentary)
|
|
66
|
+
|
|
67
|
+
Say: "Next, /gsd-cc would create a roadmap. For this small project, we'll have 1 milestone with 2-3 slices."
|
|
68
|
+
|
|
69
|
+
Create the roadmap. After creation, explain:
|
|
70
|
+
- What a milestone is (a major deliverable)
|
|
71
|
+
- What a slice is (a coherent work unit, 2-7 tasks)
|
|
72
|
+
- Why ordering matters (foundations first)
|
|
73
|
+
|
|
74
|
+
## Step 5: Run Plan (with commentary)
|
|
75
|
+
|
|
76
|
+
Say: "Now I'll plan the first slice in detail. Each task gets acceptance criteria (Given/When/Then) and boundaries (what NOT to touch)."
|
|
77
|
+
|
|
78
|
+
Delegate to `/gsd-cc-plan`. After planning, show:
|
|
79
|
+
- One task plan as an example
|
|
80
|
+
- Highlight the acceptance criteria format
|
|
81
|
+
- Highlight the boundaries section
|
|
82
|
+
- "These boundaries prevent Claude from going on tangents — a common problem in AI coding."
|
|
83
|
+
|
|
84
|
+
## Step 6: Execute One Task (manual)
|
|
85
|
+
|
|
86
|
+
Say: "Let's execute the first task manually so you can see what happens."
|
|
87
|
+
|
|
88
|
+
Delegate to `/gsd-cc-apply` for T01 only. After execution:
|
|
89
|
+
- Show the SUMMARY.md that was created
|
|
90
|
+
- Explain how it compares to the plan
|
|
91
|
+
- "In auto-mode, this happens for every task without you doing anything."
|
|
92
|
+
|
|
93
|
+
## Step 7: Explain Auto-Mode
|
|
94
|
+
|
|
95
|
+
Don't actually run auto-mode (that would take too long for a tutorial). Instead explain:
|
|
96
|
+
- "For the remaining tasks, you'd type `/gsd-cc` and choose 'auto'"
|
|
97
|
+
- "Auto-mode runs each task in a fresh `claude -p` session"
|
|
98
|
+
- "It uses your Max Plan — no API costs"
|
|
99
|
+
- "When all tasks in a slice are done, UNIFY runs automatically"
|
|
100
|
+
|
|
101
|
+
## Step 8: Explain UNIFY
|
|
102
|
+
|
|
103
|
+
Explain what UNIFY does:
|
|
104
|
+
- Compares what was planned vs. what was built
|
|
105
|
+
- Documents deviations and decisions
|
|
106
|
+
- Cannot be skipped — the router blocks until it's done
|
|
107
|
+
- "This is what prevents 'it sort of works but doesn't match the design'"
|
|
108
|
+
|
|
109
|
+
## Step 9: Wrap Up
|
|
110
|
+
|
|
111
|
+
```
|
|
112
|
+
That's GSD-CC!
|
|
113
|
+
|
|
114
|
+
What you learned:
|
|
115
|
+
✓ Seed — turns your idea into a structured plan
|
|
116
|
+
✓ Roadmap — breaks it into milestones and slices
|
|
117
|
+
✓ Plan — creates tasks with acceptance criteria + boundaries
|
|
118
|
+
✓ Apply — executes tasks (manual or auto)
|
|
119
|
+
✓ UNIFY — mandatory quality check after each slice
|
|
120
|
+
|
|
121
|
+
Next steps:
|
|
122
|
+
1. Delete this tutorial project: rm -rf .gsd/
|
|
123
|
+
2. Start your real project: /gsd-cc
|
|
124
|
+
3. Or explore: /gsd-cc-help for all commands
|
|
125
|
+
|
|
126
|
+
Happy building!
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
## Rules
|
|
130
|
+
|
|
131
|
+
- **Go slow.** This is teaching, not production. Pause between phases.
|
|
132
|
+
- **Explain the WHY**, not just the what. Users should understand the design decisions.
|
|
133
|
+
- **Keep the project small.** 1 milestone, 2-3 slices, 2-3 tasks per slice max.
|
|
134
|
+
- **Only execute 1 task.** The tutorial should take 10-15 minutes, not an hour.
|
|
135
|
+
- **Be encouraging.** The user is learning something new.
|