get-shit-done-cc 1.10.0-experimental.0 → 1.10.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/README.md +16 -17
- package/agents/gsd-executor.md +375 -37
- package/agents/gsd-planner.md +108 -15
- package/bin/install.js +163 -238
- package/commands/gsd/help.md +0 -43
- package/commands/gsd/new-project.md +8 -94
- package/commands/gsd/plan-phase.md +5 -35
- package/get-shit-done/references/verification-patterns.md +1 -1
- package/get-shit-done/templates/phase-prompt.md +4 -4
- package/get-shit-done/templates/state.md +0 -37
- package/get-shit-done/workflows/execute-phase.md +1 -44
- package/get-shit-done/workflows/execute-plan.md +856 -34
- package/hooks/dist/gsd-statusline.js +9 -6
- package/package.json +7 -10
- package/agents/design-specialist.md +0 -222
- package/commands/gsd/autopilot.md +0 -518
- package/commands/gsd/checkpoints.md +0 -229
- package/commands/gsd/design-system.md +0 -70
- package/commands/gsd/discuss-design.md +0 -77
- package/commands/gsd/extend.md +0 -80
- package/get-shit-done/references/ccr-integration.md +0 -468
- package/get-shit-done/references/checkpoint-execution.md +0 -369
- package/get-shit-done/references/checkpoint-types.md +0 -728
- package/get-shit-done/references/deviation-rules.md +0 -215
- package/get-shit-done/references/framework-patterns.md +0 -543
- package/get-shit-done/references/ui-principles.md +0 -258
- package/get-shit-done/skills/gsd-extend/SKILL.md +0 -154
- package/get-shit-done/skills/gsd-extend/references/agent-structure.md +0 -305
- package/get-shit-done/skills/gsd-extend/references/extension-anatomy.md +0 -123
- package/get-shit-done/skills/gsd-extend/references/reference-structure.md +0 -408
- package/get-shit-done/skills/gsd-extend/references/template-structure.md +0 -370
- package/get-shit-done/skills/gsd-extend/references/validation-rules.md +0 -140
- package/get-shit-done/skills/gsd-extend/references/workflow-structure.md +0 -253
- package/get-shit-done/skills/gsd-extend/templates/agent-template.md +0 -234
- package/get-shit-done/skills/gsd-extend/templates/reference-template.md +0 -239
- package/get-shit-done/skills/gsd-extend/templates/workflow-template.md +0 -169
- package/get-shit-done/skills/gsd-extend/workflows/create-approach.md +0 -332
- package/get-shit-done/skills/gsd-extend/workflows/list-extensions.md +0 -133
- package/get-shit-done/skills/gsd-extend/workflows/remove-extension.md +0 -93
- package/get-shit-done/skills/gsd-extend/workflows/validate-extension.md +0 -184
- package/get-shit-done/templates/autopilot-script-simple.sh +0 -181
- package/get-shit-done/templates/autopilot-script.sh +0 -1142
- package/get-shit-done/templates/autopilot-script.sh.backup +0 -1142
- package/get-shit-done/templates/design-system.md +0 -238
- package/get-shit-done/templates/phase-design.md +0 -205
- package/get-shit-done/templates/phase-models-template.json +0 -71
- package/get-shit-done/tui/App.tsx +0 -169
- package/get-shit-done/tui/README.md +0 -107
- package/get-shit-done/tui/build.js +0 -37
- package/get-shit-done/tui/components/ActivityFeed.tsx +0 -126
- package/get-shit-done/tui/components/PhaseCard.tsx +0 -86
- package/get-shit-done/tui/components/StatsBar.tsx +0 -147
- package/get-shit-done/tui/dist/index.js +0 -387
- package/get-shit-done/tui/index.tsx +0 -12
- package/get-shit-done/tui/package-lock.json +0 -1074
- package/get-shit-done/tui/package.json +0 -22
- package/get-shit-done/tui/utils/pipeReader.ts +0 -129
- package/get-shit-done/workflows/design-system.md +0 -245
- package/get-shit-done/workflows/discuss-design.md +0 -330
- package/get-shit-done/workflows/execute-plan-auth.md +0 -122
- package/get-shit-done/workflows/execute-plan-checkpoints.md +0 -541
|
@@ -1,229 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: gsd:checkpoints
|
|
3
|
-
description: Review and approve pending checkpoints from autopilot execution
|
|
4
|
-
allowed-tools:
|
|
5
|
-
- Read
|
|
6
|
-
- Write
|
|
7
|
-
- Bash
|
|
8
|
-
- Glob
|
|
9
|
-
- AskUserQuestion
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
<objective>
|
|
13
|
-
Interactive guided flow to review and complete pending checkpoints from autopilot.
|
|
14
|
-
|
|
15
|
-
Checkpoints are human tasks created when plans need manual intervention (adding secrets, external setup, design decisions). This command walks you through each one.
|
|
16
|
-
</objective>
|
|
17
|
-
|
|
18
|
-
<execution_context>
|
|
19
|
-
@~/.claude/get-shit-done/references/ui-brand.md
|
|
20
|
-
</execution_context>
|
|
21
|
-
|
|
22
|
-
<process>
|
|
23
|
-
|
|
24
|
-
## 1. Check for Pending Checkpoints
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
PENDING_DIR=".planning/checkpoints/pending"
|
|
28
|
-
PENDING_COUNT=$(ls "$PENDING_DIR"/*.json 2>/dev/null | wc -l | tr -d ' ')
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
**If no checkpoints:**
|
|
32
|
-
|
|
33
|
-
```
|
|
34
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
35
|
-
GSD ► CHECKPOINTS
|
|
36
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
37
|
-
|
|
38
|
-
No pending checkpoints.
|
|
39
|
-
|
|
40
|
-
Checkpoints are created when autopilot encounters tasks that need
|
|
41
|
-
your input—like adding API keys or making design decisions.
|
|
42
|
-
|
|
43
|
-
Run /gsd:autopilot to start autonomous execution.
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
**Stop here if no checkpoints.**
|
|
47
|
-
|
|
48
|
-
## 2. Present Checkpoint Selection
|
|
49
|
-
|
|
50
|
-
Build options from pending checkpoint files. Parse each JSON to extract:
|
|
51
|
-
- Phase number
|
|
52
|
-
- Plan name
|
|
53
|
-
- Brief description of what's awaiting
|
|
54
|
-
|
|
55
|
-
Use AskUserQuestion:
|
|
56
|
-
```
|
|
57
|
-
question: "You have {N} pending checkpoints. Which would you like to handle?"
|
|
58
|
-
header: "Checkpoint"
|
|
59
|
-
options:
|
|
60
|
-
- label: "Phase {X}: {task_name}"
|
|
61
|
-
description: "{brief awaiting description}"
|
|
62
|
-
- label: "Phase {Y}: {task_name}"
|
|
63
|
-
description: "{brief awaiting description}"
|
|
64
|
-
- ... (up to 4, or summarize if more)
|
|
65
|
-
- label: "Skip for now"
|
|
66
|
-
description: "Exit without handling any checkpoints"
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
**If "Skip for now":** End with "Run /gsd:checkpoints when you're ready."
|
|
70
|
-
|
|
71
|
-
## 3. Show Checkpoint Instructions
|
|
72
|
-
|
|
73
|
-
For the selected checkpoint, read the full JSON and display:
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
77
|
-
GSD ► CHECKPOINT: {task_name}
|
|
78
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
79
|
-
|
|
80
|
-
Phase {X}, Plan {Y} paused here waiting for you.
|
|
81
|
-
|
|
82
|
-
## What you need to do
|
|
83
|
-
|
|
84
|
-
{instructions from checkpoint JSON, formatted as numbered steps}
|
|
85
|
-
|
|
86
|
-
───────────────────────────────────────────────────────
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
## 4. Ask for Completion
|
|
90
|
-
|
|
91
|
-
Use AskUserQuestion:
|
|
92
|
-
```
|
|
93
|
-
question: "Have you completed this task?"
|
|
94
|
-
header: "Status"
|
|
95
|
-
options:
|
|
96
|
-
- label: "Done"
|
|
97
|
-
description: "I've completed the steps above (Recommended)"
|
|
98
|
-
- label: "Skip this feature"
|
|
99
|
-
description: "Don't need this, continue without it"
|
|
100
|
-
- label: "Later"
|
|
101
|
-
description: "I'll handle this another time"
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
### If "Done":
|
|
105
|
-
|
|
106
|
-
Ask for optional note:
|
|
107
|
-
```
|
|
108
|
-
question: "Any notes for the continuation? (e.g., 'Used different env var name')"
|
|
109
|
-
header: "Notes"
|
|
110
|
-
options:
|
|
111
|
-
- label: "No notes"
|
|
112
|
-
description: "Just continue with the plan"
|
|
113
|
-
- label: "Add a note"
|
|
114
|
-
description: "Provide context for the AI"
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
**If "Add a note":** Use AskUserQuestion with text input for the note.
|
|
118
|
-
|
|
119
|
-
Create approval file:
|
|
120
|
-
```json
|
|
121
|
-
{
|
|
122
|
-
"phase": "{phase}",
|
|
123
|
-
"plan": "{plan}",
|
|
124
|
-
"approved": true,
|
|
125
|
-
"note": "{user note or empty}",
|
|
126
|
-
"approved_at": "{ISO timestamp}"
|
|
127
|
-
}
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
Write to `.planning/checkpoints/approved/{original_filename}`
|
|
131
|
-
Remove from `.planning/checkpoints/pending/`
|
|
132
|
-
|
|
133
|
-
```
|
|
134
|
-
✓ Checkpoint approved
|
|
135
|
-
|
|
136
|
-
Autopilot will continue this plan on next run.
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
### If "Skip this feature":
|
|
140
|
-
|
|
141
|
-
Create rejection file:
|
|
142
|
-
```json
|
|
143
|
-
{
|
|
144
|
-
"phase": "{phase}",
|
|
145
|
-
"plan": "{plan}",
|
|
146
|
-
"approved": false,
|
|
147
|
-
"reason": "User skipped - feature not needed",
|
|
148
|
-
"rejected_at": "{ISO timestamp}"
|
|
149
|
-
}
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
Write to `.planning/checkpoints/approved/{original_filename}`
|
|
153
|
-
Remove from `.planning/checkpoints/pending/`
|
|
154
|
-
|
|
155
|
-
```
|
|
156
|
-
✓ Checkpoint skipped
|
|
157
|
-
|
|
158
|
-
This plan will be marked as skipped during execution.
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
### If "Later":
|
|
162
|
-
|
|
163
|
-
Leave checkpoint in pending, no changes.
|
|
164
|
-
|
|
165
|
-
```
|
|
166
|
-
Checkpoint remains pending. Run /gsd:checkpoints when ready.
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
## 5. Offer Next Checkpoint
|
|
170
|
-
|
|
171
|
-
If more pending checkpoints remain:
|
|
172
|
-
|
|
173
|
-
Use AskUserQuestion:
|
|
174
|
-
```
|
|
175
|
-
question: "You have {N} more pending checkpoints."
|
|
176
|
-
header: "Continue"
|
|
177
|
-
options:
|
|
178
|
-
- label: "Handle next"
|
|
179
|
-
description: "{next checkpoint brief description}"
|
|
180
|
-
- label: "Done for now"
|
|
181
|
-
description: "Exit checkpoints"
|
|
182
|
-
```
|
|
183
|
-
|
|
184
|
-
**If "Handle next":** Loop back to step 3 with the next checkpoint.
|
|
185
|
-
|
|
186
|
-
**If "Done for now":**
|
|
187
|
-
```
|
|
188
|
-
───────────────────────────────────────────────────────
|
|
189
|
-
|
|
190
|
-
{N} checkpoints remaining. Run /gsd:checkpoints to continue.
|
|
191
|
-
|
|
192
|
-
Autopilot will process approved checkpoints on next run,
|
|
193
|
-
or run it now: bash .planning/autopilot.sh
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
</process>
|
|
197
|
-
|
|
198
|
-
<checkpoint_json_format>
|
|
199
|
-
Pending checkpoint files contain:
|
|
200
|
-
|
|
201
|
-
```json
|
|
202
|
-
{
|
|
203
|
-
"phase": "03",
|
|
204
|
-
"plan": "02",
|
|
205
|
-
"plan_name": "OAuth Integration",
|
|
206
|
-
"task_name": "Add Google OAuth credentials",
|
|
207
|
-
"instructions": "1. Go to console.cloud.google.com\n2. Create OAuth 2.0 credential\n3. Add to .env.local:\n GOOGLE_CLIENT_ID=your-id\n GOOGLE_CLIENT_SECRET=your-secret",
|
|
208
|
-
"context": "Plan paused after task 2. Remaining tasks need OAuth configured.",
|
|
209
|
-
"completed_tasks": [
|
|
210
|
-
{"task": 1, "commit": "abc123", "name": "Create OAuth service skeleton"},
|
|
211
|
-
{"task": 2, "commit": "def456", "name": "Add config structure"}
|
|
212
|
-
],
|
|
213
|
-
"created_at": "2026-01-26T14:30:00Z"
|
|
214
|
-
}
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
The `instructions` field is what gets shown to the user. It should be actionable steps they can follow, not a request for data to paste.
|
|
218
|
-
</checkpoint_json_format>
|
|
219
|
-
|
|
220
|
-
<success_criteria>
|
|
221
|
-
- [ ] Graceful handling when no checkpoints exist
|
|
222
|
-
- [ ] Interactive selection when multiple checkpoints pending
|
|
223
|
-
- [ ] Clear instructions displayed for selected checkpoint
|
|
224
|
-
- [ ] Three completion options: Done / Skip / Later
|
|
225
|
-
- [ ] Optional notes on Done
|
|
226
|
-
- [ ] Approval/rejection files created correctly
|
|
227
|
-
- [ ] Loops to offer next checkpoint
|
|
228
|
-
- [ ] No secrets stored in checkpoint files
|
|
229
|
-
</success_criteria>
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: gsd:design-system
|
|
3
|
-
description: Establish project-wide design foundation through conversation
|
|
4
|
-
allowed-tools:
|
|
5
|
-
- Read
|
|
6
|
-
- Write
|
|
7
|
-
- Bash
|
|
8
|
-
- Glob
|
|
9
|
-
- Grep
|
|
10
|
-
- WebFetch
|
|
11
|
-
- AskUserQuestion
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
<objective>
|
|
15
|
-
|
|
16
|
-
Establish the visual foundation for the entire project through conversational discovery. Creates `.planning/DESIGN-SYSTEM.md` that all UI work in the project respects.
|
|
17
|
-
|
|
18
|
-
**What it does:**
|
|
19
|
-
1. Optionally analyze visual references (images, URLs) for aesthetic patterns
|
|
20
|
-
2. Conversationally discover design preferences (colors, typography, spacing, components)
|
|
21
|
-
3. Detect project framework for appropriate patterns
|
|
22
|
-
4. Generate a comprehensive design system document
|
|
23
|
-
|
|
24
|
-
**Output:** `.planning/DESIGN-SYSTEM.md` — the visual foundation that `/gsd:discuss-design` and planning phases load as context
|
|
25
|
-
|
|
26
|
-
</objective>
|
|
27
|
-
|
|
28
|
-
<execution_context>
|
|
29
|
-
@~/.claude/get-shit-done/workflows/design-system.md
|
|
30
|
-
@~/.claude/get-shit-done/references/ui-principles.md
|
|
31
|
-
@~/.claude/get-shit-done/templates/design-system.md
|
|
32
|
-
</execution_context>
|
|
33
|
-
|
|
34
|
-
<context>
|
|
35
|
-
|
|
36
|
-
**When to use:**
|
|
37
|
-
- Starting a new project with UI
|
|
38
|
-
- Before first UI phase
|
|
39
|
-
- When suggested after `/gsd:new-project`
|
|
40
|
-
- When visual direction needs definition
|
|
41
|
-
|
|
42
|
-
</context>
|
|
43
|
-
|
|
44
|
-
<process>
|
|
45
|
-
|
|
46
|
-
Follow the workflow completely. Key phases:
|
|
47
|
-
|
|
48
|
-
1. **Check existing** — If DESIGN-SYSTEM.md exists, offer update/replace/cancel
|
|
49
|
-
2. **Detect framework** — React, SwiftUI, Python, HTML/CSS
|
|
50
|
-
3. **Visual references** — Optionally analyze user-provided images/URLs
|
|
51
|
-
4. **Aesthetic direction** — Conversationally discover style preferences
|
|
52
|
-
5. **Color exploration** — Build or capture color palette
|
|
53
|
-
6. **Typography** — Font selection and scale
|
|
54
|
-
7. **Component style** — Border radius, shadows, borders
|
|
55
|
-
8. **Spacing system** — Base unit and scale
|
|
56
|
-
9. **Generate** — Create DESIGN-SYSTEM.md
|
|
57
|
-
|
|
58
|
-
</process>
|
|
59
|
-
|
|
60
|
-
<success_criteria>
|
|
61
|
-
- [ ] User's aesthetic vision understood
|
|
62
|
-
- [ ] Visual references analyzed (if provided)
|
|
63
|
-
- [ ] Color palette defined with tokens
|
|
64
|
-
- [ ] Typography scale established
|
|
65
|
-
- [ ] Spacing system determined
|
|
66
|
-
- [ ] Component patterns documented
|
|
67
|
-
- [ ] Framework-appropriate values included
|
|
68
|
-
- [ ] DESIGN-SYSTEM.md created
|
|
69
|
-
- [ ] User knows how system integrates with GSD
|
|
70
|
-
</success_criteria>
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: gsd:discuss-design
|
|
3
|
-
description: Design phase-specific UI through conversation before planning
|
|
4
|
-
argument-hint: "<phase>"
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Bash
|
|
9
|
-
- Glob
|
|
10
|
-
- Grep
|
|
11
|
-
- WebFetch
|
|
12
|
-
- AskUserQuestion
|
|
13
|
-
- Task
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
<objective>
|
|
17
|
-
|
|
18
|
-
Design phase-specific UI elements through conversation, then generate visual mockups for review. Ensures design decisions are made before implementation time is spent.
|
|
19
|
-
|
|
20
|
-
**What it does:**
|
|
21
|
-
1. Load design system (if exists) as visual foundation
|
|
22
|
-
2. Conversationally design components needed for the phase
|
|
23
|
-
3. Generate framework-appropriate mockups (React, SwiftUI, HTML, Python)
|
|
24
|
-
4. Iterate until user approves the visuals
|
|
25
|
-
5. Create DESIGN.md that the planner automatically loads
|
|
26
|
-
|
|
27
|
-
**Output:**
|
|
28
|
-
- `.planning/phases/{phase}/{phase}-DESIGN.md` — component specs for planner
|
|
29
|
-
- `.planning/phases/{phase}/mockups/` — visual previews
|
|
30
|
-
|
|
31
|
-
</objective>
|
|
32
|
-
|
|
33
|
-
<execution_context>
|
|
34
|
-
@~/.claude/get-shit-done/workflows/discuss-design.md
|
|
35
|
-
@~/.claude/get-shit-done/references/ui-principles.md
|
|
36
|
-
@~/.claude/get-shit-done/references/framework-patterns.md
|
|
37
|
-
@~/.claude/get-shit-done/templates/phase-design.md
|
|
38
|
-
</execution_context>
|
|
39
|
-
|
|
40
|
-
<context>
|
|
41
|
-
Phase number: $ARGUMENTS (required)
|
|
42
|
-
|
|
43
|
-
**Load design system (if exists):**
|
|
44
|
-
@.planning/DESIGN-SYSTEM.md
|
|
45
|
-
|
|
46
|
-
**Load roadmap:**
|
|
47
|
-
@.planning/ROADMAP.md
|
|
48
|
-
</context>
|
|
49
|
-
|
|
50
|
-
<process>
|
|
51
|
-
|
|
52
|
-
Follow the workflow completely. Key phases:
|
|
53
|
-
|
|
54
|
-
1. **Parse phase** — Validate phase number, load phase details
|
|
55
|
-
2. **Load design system** — Use as foundation if exists
|
|
56
|
-
3. **Detect framework** — React, SwiftUI, Python, HTML for mockup format
|
|
57
|
-
4. **Visual references** — Optionally analyze phase-specific references
|
|
58
|
-
5. **Component discovery** — Identify and spec all UI components
|
|
59
|
-
6. **Layout discussion** — How components are arranged
|
|
60
|
-
7. **Interaction discussion** — States, transitions, feedback
|
|
61
|
-
8. **Generate mockups** — Spawn design specialist agent
|
|
62
|
-
9. **Review loop** — Iterate until approved
|
|
63
|
-
10. **Create DESIGN.md** — Specs for planner
|
|
64
|
-
|
|
65
|
-
</process>
|
|
66
|
-
|
|
67
|
-
<success_criteria>
|
|
68
|
-
- [ ] Phase requirements understood
|
|
69
|
-
- [ ] Design system loaded as context (if exists)
|
|
70
|
-
- [ ] All UI components identified and specified
|
|
71
|
-
- [ ] Component states documented (loading, error, empty, etc.)
|
|
72
|
-
- [ ] Layout and responsive behavior defined
|
|
73
|
-
- [ ] Framework-appropriate mockups generated
|
|
74
|
-
- [ ] User approved mockups visually
|
|
75
|
-
- [ ] DESIGN.md created for planner consumption
|
|
76
|
-
- [ ] User knows next steps (plan or edit)
|
|
77
|
-
</success_criteria>
|
package/commands/gsd/extend.md
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: gsd:extend
|
|
3
|
-
description: Create custom GSD approaches - workflows, agents, references, templates
|
|
4
|
-
argument-hint: "[list | create | remove <name>]"
|
|
5
|
-
allowed-tools:
|
|
6
|
-
- Read
|
|
7
|
-
- Write
|
|
8
|
-
- Bash
|
|
9
|
-
- Glob
|
|
10
|
-
- Grep
|
|
11
|
-
- AskUserQuestion
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
<objective>
|
|
15
|
-
|
|
16
|
-
Create and manage custom GSD approaches. An approach is a complete methodology - a workflow with supporting references, agents, and templates that work together.
|
|
17
|
-
|
|
18
|
-
**Examples of approaches:**
|
|
19
|
-
- Spike-first planning (explore before formalizing)
|
|
20
|
-
- Security-focused execution (audit before each commit)
|
|
21
|
-
- API-first development (OpenAPI spec drives implementation)
|
|
22
|
-
- TDD-strict (enforce red-green-refactor cycle)
|
|
23
|
-
|
|
24
|
-
</objective>
|
|
25
|
-
|
|
26
|
-
<execution_context>
|
|
27
|
-
|
|
28
|
-
@~/.claude/get-shit-done/skills/gsd-extend/SKILL.md
|
|
29
|
-
|
|
30
|
-
</execution_context>
|
|
31
|
-
|
|
32
|
-
<context>
|
|
33
|
-
|
|
34
|
-
**Arguments:** $ARGUMENTS
|
|
35
|
-
|
|
36
|
-
**Extension locations:**
|
|
37
|
-
- Project: `.planning/extensions/`
|
|
38
|
-
- Global: `~/.claude/gsd-extensions/`
|
|
39
|
-
|
|
40
|
-
</context>
|
|
41
|
-
|
|
42
|
-
<process>
|
|
43
|
-
|
|
44
|
-
## Parse Arguments
|
|
45
|
-
|
|
46
|
-
**If `$ARGUMENTS` is empty or "create":**
|
|
47
|
-
→ Load `workflows/create-approach.md`
|
|
48
|
-
→ Start conversational discovery
|
|
49
|
-
|
|
50
|
-
**If `$ARGUMENTS` is "list":**
|
|
51
|
-
→ Load `workflows/list-extensions.md`
|
|
52
|
-
→ Show all installed extensions
|
|
53
|
-
|
|
54
|
-
**If `$ARGUMENTS` starts with "remove":**
|
|
55
|
-
→ Load `workflows/remove-extension.md`
|
|
56
|
-
→ Parse the name and remove
|
|
57
|
-
|
|
58
|
-
**If ambiguous:**
|
|
59
|
-
Use AskUserQuestion:
|
|
60
|
-
- header: "Action"
|
|
61
|
-
- question: "What would you like to do?"
|
|
62
|
-
- options:
|
|
63
|
-
- "Create an approach" - Build a custom methodology through conversation
|
|
64
|
-
- "List extensions" - See what's installed
|
|
65
|
-
- "Remove an extension" - Delete something
|
|
66
|
-
|
|
67
|
-
## Execute
|
|
68
|
-
|
|
69
|
-
Follow the loaded workflow completely.
|
|
70
|
-
|
|
71
|
-
</process>
|
|
72
|
-
|
|
73
|
-
<success_criteria>
|
|
74
|
-
|
|
75
|
-
- [ ] User intent understood
|
|
76
|
-
- [ ] Correct workflow loaded
|
|
77
|
-
- [ ] Workflow executed successfully
|
|
78
|
-
- [ ] User knows next steps
|
|
79
|
-
|
|
80
|
-
</success_criteria>
|