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.
Files changed (61) hide show
  1. package/README.md +16 -17
  2. package/agents/gsd-executor.md +375 -37
  3. package/agents/gsd-planner.md +108 -15
  4. package/bin/install.js +163 -238
  5. package/commands/gsd/help.md +0 -43
  6. package/commands/gsd/new-project.md +8 -94
  7. package/commands/gsd/plan-phase.md +5 -35
  8. package/get-shit-done/references/verification-patterns.md +1 -1
  9. package/get-shit-done/templates/phase-prompt.md +4 -4
  10. package/get-shit-done/templates/state.md +0 -37
  11. package/get-shit-done/workflows/execute-phase.md +1 -44
  12. package/get-shit-done/workflows/execute-plan.md +856 -34
  13. package/hooks/dist/gsd-statusline.js +9 -6
  14. package/package.json +7 -10
  15. package/agents/design-specialist.md +0 -222
  16. package/commands/gsd/autopilot.md +0 -518
  17. package/commands/gsd/checkpoints.md +0 -229
  18. package/commands/gsd/design-system.md +0 -70
  19. package/commands/gsd/discuss-design.md +0 -77
  20. package/commands/gsd/extend.md +0 -80
  21. package/get-shit-done/references/ccr-integration.md +0 -468
  22. package/get-shit-done/references/checkpoint-execution.md +0 -369
  23. package/get-shit-done/references/checkpoint-types.md +0 -728
  24. package/get-shit-done/references/deviation-rules.md +0 -215
  25. package/get-shit-done/references/framework-patterns.md +0 -543
  26. package/get-shit-done/references/ui-principles.md +0 -258
  27. package/get-shit-done/skills/gsd-extend/SKILL.md +0 -154
  28. package/get-shit-done/skills/gsd-extend/references/agent-structure.md +0 -305
  29. package/get-shit-done/skills/gsd-extend/references/extension-anatomy.md +0 -123
  30. package/get-shit-done/skills/gsd-extend/references/reference-structure.md +0 -408
  31. package/get-shit-done/skills/gsd-extend/references/template-structure.md +0 -370
  32. package/get-shit-done/skills/gsd-extend/references/validation-rules.md +0 -140
  33. package/get-shit-done/skills/gsd-extend/references/workflow-structure.md +0 -253
  34. package/get-shit-done/skills/gsd-extend/templates/agent-template.md +0 -234
  35. package/get-shit-done/skills/gsd-extend/templates/reference-template.md +0 -239
  36. package/get-shit-done/skills/gsd-extend/templates/workflow-template.md +0 -169
  37. package/get-shit-done/skills/gsd-extend/workflows/create-approach.md +0 -332
  38. package/get-shit-done/skills/gsd-extend/workflows/list-extensions.md +0 -133
  39. package/get-shit-done/skills/gsd-extend/workflows/remove-extension.md +0 -93
  40. package/get-shit-done/skills/gsd-extend/workflows/validate-extension.md +0 -184
  41. package/get-shit-done/templates/autopilot-script-simple.sh +0 -181
  42. package/get-shit-done/templates/autopilot-script.sh +0 -1142
  43. package/get-shit-done/templates/autopilot-script.sh.backup +0 -1142
  44. package/get-shit-done/templates/design-system.md +0 -238
  45. package/get-shit-done/templates/phase-design.md +0 -205
  46. package/get-shit-done/templates/phase-models-template.json +0 -71
  47. package/get-shit-done/tui/App.tsx +0 -169
  48. package/get-shit-done/tui/README.md +0 -107
  49. package/get-shit-done/tui/build.js +0 -37
  50. package/get-shit-done/tui/components/ActivityFeed.tsx +0 -126
  51. package/get-shit-done/tui/components/PhaseCard.tsx +0 -86
  52. package/get-shit-done/tui/components/StatsBar.tsx +0 -147
  53. package/get-shit-done/tui/dist/index.js +0 -387
  54. package/get-shit-done/tui/index.tsx +0 -12
  55. package/get-shit-done/tui/package-lock.json +0 -1074
  56. package/get-shit-done/tui/package.json +0 -22
  57. package/get-shit-done/tui/utils/pipeReader.ts +0 -129
  58. package/get-shit-done/workflows/design-system.md +0 -245
  59. package/get-shit-done/workflows/discuss-design.md +0 -330
  60. package/get-shit-done/workflows/execute-plan-auth.md +0 -122
  61. package/get-shit-done/workflows/execute-plan-checkpoints.md +0 -541
@@ -18,22 +18,25 @@ process.stdin.on('end', () => {
18
18
  const session = data.session_id || '';
19
19
  const remaining = data.context_window?.remaining_percentage;
20
20
 
21
- // Context window display (shows USED percentage)
21
+ // Context window display (shows USED percentage scaled to 80% limit)
22
+ // Claude Code enforces an 80% context limit, so we scale to show 100% at that point
22
23
  let ctx = '';
23
24
  if (remaining != null) {
24
25
  const rem = Math.round(remaining);
25
- const used = Math.max(0, Math.min(100, 100 - rem));
26
+ const rawUsed = Math.max(0, Math.min(100, 100 - rem));
27
+ // Scale: 80% real usage = 100% displayed
28
+ const used = Math.min(100, Math.round((rawUsed / 80) * 100));
26
29
 
27
30
  // Build progress bar (10 segments)
28
31
  const filled = Math.floor(used / 10);
29
32
  const bar = '█'.repeat(filled) + '░'.repeat(10 - filled);
30
33
 
31
- // Color based on usage
32
- if (used < 50) {
34
+ // Color based on scaled usage (thresholds adjusted for new scale)
35
+ if (used < 63) { // ~50% real
33
36
  ctx = ` \x1b[32m${bar} ${used}%\x1b[0m`;
34
- } else if (used < 65) {
37
+ } else if (used < 81) { // ~65% real
35
38
  ctx = ` \x1b[33m${bar} ${used}%\x1b[0m`;
36
- } else if (used < 80) {
39
+ } else if (used < 95) { // ~76% real
37
40
  ctx = ` \x1b[38;5;208m${bar} ${used}%\x1b[0m`;
38
41
  } else {
39
42
  ctx = ` \x1b[5;31m💀 ${bar} ${used}%\x1b[0m`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.10.0-experimental.0",
4
- "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
3
+ "version": "1.10.0",
4
+ "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode and Gemini by TÂCHES.",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"
7
7
  },
@@ -19,7 +19,9 @@
19
19
  "ai",
20
20
  "meta-prompting",
21
21
  "context-engineering",
22
- "spec-driven-development"
22
+ "spec-driven-development",
23
+ "gemini",
24
+ "gemini-cli"
23
25
  ],
24
26
  "author": "TÂCHES",
25
27
  "license": "MIT",
@@ -34,17 +36,12 @@
34
36
  "engines": {
35
37
  "node": ">=16.7.0"
36
38
  },
37
- "dependencies": {
38
- "ink": "^6.6.0",
39
- "react": "^19.2.4"
40
- },
39
+ "dependencies": {},
41
40
  "devDependencies": {
42
41
  "esbuild": "^0.24.0"
43
42
  },
44
43
  "scripts": {
45
44
  "build:hooks": "node scripts/build-hooks.js",
46
- "build:tui": "cd get-shit-done/tui && npm run build",
47
- "postinstall": "npm run build:tui",
48
- "prepublishOnly": "npm run build:hooks && npm run build:tui"
45
+ "prepublishOnly": "npm run build:hooks"
49
46
  }
50
47
  }
@@ -1,222 +0,0 @@
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>