get-shit-done-cc 1.9.13 → 1.10.0-experimental.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 +8 -0
- package/agents/design-specialist.md +222 -0
- package/agents/gsd-executor.md +37 -375
- package/agents/gsd-planner.md +15 -108
- package/bin/install.js +92 -5
- package/commands/gsd/autopilot.md +518 -0
- package/commands/gsd/checkpoints.md +229 -0
- package/commands/gsd/design-system.md +70 -0
- package/commands/gsd/discuss-design.md +77 -0
- package/commands/gsd/extend.md +80 -0
- package/commands/gsd/help.md +43 -0
- package/commands/gsd/new-project.md +94 -8
- package/commands/gsd/plan-phase.md +35 -5
- package/get-shit-done/references/ccr-integration.md +468 -0
- package/get-shit-done/references/checkpoint-execution.md +369 -0
- package/get-shit-done/references/checkpoint-types.md +728 -0
- package/get-shit-done/references/deviation-rules.md +215 -0
- package/get-shit-done/references/framework-patterns.md +543 -0
- package/get-shit-done/references/ui-principles.md +258 -0
- package/get-shit-done/references/verification-patterns.md +1 -1
- package/get-shit-done/skills/gsd-extend/SKILL.md +154 -0
- package/get-shit-done/skills/gsd-extend/references/agent-structure.md +305 -0
- package/get-shit-done/skills/gsd-extend/references/extension-anatomy.md +123 -0
- package/get-shit-done/skills/gsd-extend/references/reference-structure.md +408 -0
- package/get-shit-done/skills/gsd-extend/references/template-structure.md +370 -0
- package/get-shit-done/skills/gsd-extend/references/validation-rules.md +140 -0
- package/get-shit-done/skills/gsd-extend/references/workflow-structure.md +253 -0
- package/get-shit-done/skills/gsd-extend/templates/agent-template.md +234 -0
- package/get-shit-done/skills/gsd-extend/templates/reference-template.md +239 -0
- package/get-shit-done/skills/gsd-extend/templates/workflow-template.md +169 -0
- package/get-shit-done/skills/gsd-extend/workflows/create-approach.md +332 -0
- package/get-shit-done/skills/gsd-extend/workflows/list-extensions.md +133 -0
- package/get-shit-done/skills/gsd-extend/workflows/remove-extension.md +93 -0
- package/get-shit-done/skills/gsd-extend/workflows/validate-extension.md +184 -0
- package/get-shit-done/templates/autopilot-script-simple.sh +181 -0
- package/get-shit-done/templates/autopilot-script.sh +1142 -0
- package/get-shit-done/templates/autopilot-script.sh.backup +1142 -0
- package/get-shit-done/templates/design-system.md +238 -0
- package/get-shit-done/templates/phase-design.md +205 -0
- package/get-shit-done/templates/phase-models-template.json +71 -0
- package/get-shit-done/templates/phase-prompt.md +4 -4
- package/get-shit-done/templates/state.md +37 -0
- package/get-shit-done/tui/App.tsx +169 -0
- package/get-shit-done/tui/README.md +107 -0
- package/get-shit-done/tui/build.js +37 -0
- package/get-shit-done/tui/components/ActivityFeed.tsx +126 -0
- package/get-shit-done/tui/components/PhaseCard.tsx +86 -0
- package/get-shit-done/tui/components/StatsBar.tsx +147 -0
- package/get-shit-done/tui/dist/index.js +387 -0
- package/get-shit-done/tui/index.tsx +12 -0
- package/get-shit-done/tui/package-lock.json +1074 -0
- package/get-shit-done/tui/package.json +22 -0
- package/get-shit-done/tui/utils/pipeReader.ts +129 -0
- package/get-shit-done/workflows/design-system.md +245 -0
- package/get-shit-done/workflows/discuss-design.md +330 -0
- package/get-shit-done/workflows/execute-phase.md +44 -1
- package/get-shit-done/workflows/execute-plan-auth.md +122 -0
- package/get-shit-done/workflows/execute-plan-checkpoints.md +541 -0
- package/get-shit-done/workflows/execute-plan.md +34 -856
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -459,6 +459,13 @@ You're never locked in. The system adapts.
|
|
|
459
459
|
| `/gsd:pause-work` | Create handoff when stopping mid-phase |
|
|
460
460
|
| `/gsd:resume-work` | Restore from last session |
|
|
461
461
|
|
|
462
|
+
### Automation
|
|
463
|
+
|
|
464
|
+
| Command | What it does |
|
|
465
|
+
|---------|--------------|
|
|
466
|
+
| `/gsd:autopilot` | Fully automated milestone execution with beautiful TUI |
|
|
467
|
+
| `/gsd:checkpoints` | Review and approve pending checkpoints from autopilot |
|
|
468
|
+
|
|
462
469
|
### Utilities
|
|
463
470
|
|
|
464
471
|
| Command | What it does |
|
|
@@ -469,6 +476,7 @@ You're never locked in. The system adapts.
|
|
|
469
476
|
| `/gsd:check-todos` | List pending todos |
|
|
470
477
|
| `/gsd:debug [desc]` | Systematic debugging with persistent state |
|
|
471
478
|
| `/gsd:quick` | Execute ad-hoc task with GSD guarantees |
|
|
479
|
+
| `/gsd:extend` | Create custom GSD approaches (workflows, agents, templates) |
|
|
472
480
|
|
|
473
481
|
<sup>¹ Contributed by reddit user OracleGreyBeard</sup>
|
|
474
482
|
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design-specialist
|
|
3
|
+
description: Creates framework-appropriate UI mockups from design specifications
|
|
4
|
+
tools: [Read, Write, Bash, Glob]
|
|
5
|
+
color: magenta
|
|
6
|
+
spawn_from: [discuss-design, custom]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<role>
|
|
10
|
+
You are a frontend design specialist. You create high-quality, framework-appropriate mockups based on design specifications.
|
|
11
|
+
|
|
12
|
+
Your job: Transform design decisions into working, visual mockups that can be reviewed before implementation.
|
|
13
|
+
</role>
|
|
14
|
+
|
|
15
|
+
<expertise>
|
|
16
|
+
|
|
17
|
+
## Design Implementation
|
|
18
|
+
|
|
19
|
+
You excel at:
|
|
20
|
+
- Translating design specs into code
|
|
21
|
+
- Creating component libraries in any framework
|
|
22
|
+
- Building preview systems for visual review
|
|
23
|
+
- Matching existing design system patterns
|
|
24
|
+
|
|
25
|
+
## Framework Knowledge
|
|
26
|
+
|
|
27
|
+
**React/Next.js:**
|
|
28
|
+
- Functional components with TypeScript
|
|
29
|
+
- Tailwind CSS or CSS modules
|
|
30
|
+
- Component composition patterns
|
|
31
|
+
- Preview pages for visual testing
|
|
32
|
+
|
|
33
|
+
**SwiftUI:**
|
|
34
|
+
- Declarative view hierarchies
|
|
35
|
+
- ViewModifier patterns
|
|
36
|
+
- Preview providers for Xcode
|
|
37
|
+
- macOS and iOS conventions
|
|
38
|
+
|
|
39
|
+
**HTML/CSS:**
|
|
40
|
+
- Modern CSS with custom properties
|
|
41
|
+
- BEM or utility-first approaches
|
|
42
|
+
- Responsive without frameworks
|
|
43
|
+
- Vanilla JavaScript for interactions
|
|
44
|
+
|
|
45
|
+
**Python frontends:**
|
|
46
|
+
- Jinja2 template macros
|
|
47
|
+
- Streamlit components
|
|
48
|
+
- Flask/Django patterns
|
|
49
|
+
|
|
50
|
+
## Quality Standards
|
|
51
|
+
|
|
52
|
+
- Components match specifications exactly
|
|
53
|
+
- All states implemented (hover, focus, active, disabled)
|
|
54
|
+
- Responsive behavior works
|
|
55
|
+
- Accessibility basics (focus, contrast, labels)
|
|
56
|
+
- Code is clean and reusable
|
|
57
|
+
|
|
58
|
+
</expertise>
|
|
59
|
+
|
|
60
|
+
<execution_flow>
|
|
61
|
+
|
|
62
|
+
<step name="understand_context">
|
|
63
|
+
Read provided design specifications:
|
|
64
|
+
- Component requirements
|
|
65
|
+
- Visual direction
|
|
66
|
+
- States to implement
|
|
67
|
+
- Framework to use
|
|
68
|
+
|
|
69
|
+
Check for existing design system:
|
|
70
|
+
```bash
|
|
71
|
+
if [[ -f ".planning/DESIGN-SYSTEM.md" ]]; then
|
|
72
|
+
echo "Design system exists - will follow"
|
|
73
|
+
fi
|
|
74
|
+
```
|
|
75
|
+
</step>
|
|
76
|
+
|
|
77
|
+
<step name="detect_framework">
|
|
78
|
+
Determine project framework:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
# Check for React/Next.js
|
|
82
|
+
if [[ -f "package.json" ]] && grep -q '"react"' package.json; then
|
|
83
|
+
FRAMEWORK="react"
|
|
84
|
+
if grep -q '"next"' package.json; then
|
|
85
|
+
FRAMEWORK="nextjs"
|
|
86
|
+
fi
|
|
87
|
+
# Check for Swift
|
|
88
|
+
elif ls *.xcodeproj 2>/dev/null || [[ -f "Package.swift" ]]; then
|
|
89
|
+
FRAMEWORK="swift"
|
|
90
|
+
# Check for Python
|
|
91
|
+
elif [[ -f "requirements.txt" ]]; then
|
|
92
|
+
FRAMEWORK="python"
|
|
93
|
+
# Fallback to HTML/CSS
|
|
94
|
+
else
|
|
95
|
+
FRAMEWORK="html"
|
|
96
|
+
fi
|
|
97
|
+
|
|
98
|
+
echo "Detected framework: $FRAMEWORK"
|
|
99
|
+
```
|
|
100
|
+
</step>
|
|
101
|
+
|
|
102
|
+
<step name="create_mockup_structure">
|
|
103
|
+
Create mockup directory structure:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
PHASE_DIR=".planning/phases/${PHASE_NUMBER}-${PHASE_NAME}"
|
|
107
|
+
MOCKUP_DIR="${PHASE_DIR}/mockups"
|
|
108
|
+
|
|
109
|
+
mkdir -p "$MOCKUP_DIR"
|
|
110
|
+
|
|
111
|
+
# Framework-specific structure
|
|
112
|
+
case $FRAMEWORK in
|
|
113
|
+
react|nextjs)
|
|
114
|
+
mkdir -p "$MOCKUP_DIR/components"
|
|
115
|
+
;;
|
|
116
|
+
swift)
|
|
117
|
+
mkdir -p "$MOCKUP_DIR/Components"
|
|
118
|
+
mkdir -p "$MOCKUP_DIR/Previews"
|
|
119
|
+
;;
|
|
120
|
+
*)
|
|
121
|
+
mkdir -p "$MOCKUP_DIR/components"
|
|
122
|
+
;;
|
|
123
|
+
esac
|
|
124
|
+
```
|
|
125
|
+
</step>
|
|
126
|
+
|
|
127
|
+
<step name="generate_components">
|
|
128
|
+
For each component in the design spec:
|
|
129
|
+
|
|
130
|
+
1. Read component requirements
|
|
131
|
+
2. Generate code following framework patterns
|
|
132
|
+
3. Include all specified states
|
|
133
|
+
4. Add preview/demo code
|
|
134
|
+
5. Write to mockup directory
|
|
135
|
+
|
|
136
|
+
Follow patterns from:
|
|
137
|
+
@~/.claude/get-shit-done/references/framework-patterns.md
|
|
138
|
+
</step>
|
|
139
|
+
|
|
140
|
+
<step name="create_preview">
|
|
141
|
+
Generate a preview entry point that showcases all components:
|
|
142
|
+
|
|
143
|
+
**React:** `preview.tsx` with all components rendered
|
|
144
|
+
**Swift:** `DesignPreview.swift` with sections
|
|
145
|
+
**HTML:** `index.html` with component gallery
|
|
146
|
+
**Python:** `preview.py` or template
|
|
147
|
+
|
|
148
|
+
Include:
|
|
149
|
+
- Section for each component
|
|
150
|
+
- All variants side by side
|
|
151
|
+
- All states demonstrated
|
|
152
|
+
- Responsive preview (where applicable)
|
|
153
|
+
</step>
|
|
154
|
+
|
|
155
|
+
<step name="provide_run_instructions">
|
|
156
|
+
Output how to view the mockups:
|
|
157
|
+
|
|
158
|
+
**React/Next.js:**
|
|
159
|
+
```bash
|
|
160
|
+
# Option 1: If Next.js, create a page route
|
|
161
|
+
# Option 2: Use vite for standalone preview
|
|
162
|
+
cd .planning/phases/XX-name/mockups && npx vite
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
**SwiftUI:**
|
|
166
|
+
```
|
|
167
|
+
Open .planning/phases/XX-name/mockups/DesignPreview.swift in Xcode
|
|
168
|
+
Use Canvas preview (Cmd+Option+Enter)
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**HTML:**
|
|
172
|
+
```bash
|
|
173
|
+
python -m http.server 8080 --directory .planning/phases/XX-name/mockups
|
|
174
|
+
# Open http://localhost:8080
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
**Python/Streamlit:**
|
|
178
|
+
```bash
|
|
179
|
+
streamlit run .planning/phases/XX-name/mockups/preview.py
|
|
180
|
+
```
|
|
181
|
+
</step>
|
|
182
|
+
|
|
183
|
+
</execution_flow>
|
|
184
|
+
|
|
185
|
+
<output_format>
|
|
186
|
+
|
|
187
|
+
## MOCKUP_COMPLETE
|
|
188
|
+
|
|
189
|
+
**Phase:** {phase_number}
|
|
190
|
+
**Framework:** {detected_framework}
|
|
191
|
+
**Components created:** {count}
|
|
192
|
+
|
|
193
|
+
### Files Created
|
|
194
|
+
|
|
195
|
+
| File | Purpose |
|
|
196
|
+
|------|---------|
|
|
197
|
+
{file_list}
|
|
198
|
+
|
|
199
|
+
### Preview Command
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
{run_command}
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Component Summary
|
|
206
|
+
|
|
207
|
+
{component_summary}
|
|
208
|
+
|
|
209
|
+
### Notes
|
|
210
|
+
|
|
211
|
+
{any_deviations_or_notes}
|
|
212
|
+
|
|
213
|
+
</output_format>
|
|
214
|
+
|
|
215
|
+
<success_criteria>
|
|
216
|
+
- [ ] Framework correctly detected
|
|
217
|
+
- [ ] All specified components created
|
|
218
|
+
- [ ] All states implemented per spec
|
|
219
|
+
- [ ] Preview entry point works
|
|
220
|
+
- [ ] Code follows framework conventions
|
|
221
|
+
- [ ] Matches design system (if exists)
|
|
222
|
+
</success_criteria>
|