get-shit-done-cc 1.37.0 → 1.37.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.
|
@@ -24,7 +24,10 @@ Read all files referenced by the invoking prompt's execution_context before star
|
|
|
24
24
|
|
|
25
25
|
Parse `$ARGUMENTS` for:
|
|
26
26
|
- `--quick` flag → set `QUICK_MODE=true`
|
|
27
|
+
- `--text` flag → set `TEXT_MODE=true`
|
|
27
28
|
- Remaining text → the design idea to sketch
|
|
29
|
+
|
|
30
|
+
**Text mode (`workflow.text_mode: true` in config or `--text` flag):** Set `TEXT_MODE=true` if `--text` is present in `$ARGUMENTS` OR `text_mode` from init JSON is `true`. When TEXT_MODE is active, replace every `AskUserQuestion` call with a plain-text numbered list and ask the user to type their choice number. This is required for non-Claude runtimes (OpenAI Codex, Gemini CLI, etc.) where `AskUserQuestion` is not available.
|
|
28
31
|
</step>
|
|
29
32
|
|
|
30
33
|
<step name="setup_directory">
|
|
@@ -29,6 +29,11 @@ Parse JSON for: `phase_dir`, `phase_number`, `phase_name`, `phase_slug`, `padded
|
|
|
29
29
|
|
|
30
30
|
**File paths:** `state_path`, `roadmap_path`, `requirements_path`, `context_path`, `research_path`.
|
|
31
31
|
|
|
32
|
+
Detect sketch findings:
|
|
33
|
+
```bash
|
|
34
|
+
SKETCH_FINDINGS_PATH=$(ls ./.claude/skills/sketch-findings-*/SKILL.md 2>/dev/null | head -1)
|
|
35
|
+
```
|
|
36
|
+
|
|
32
37
|
Resolve UI agent models:
|
|
33
38
|
|
|
34
39
|
```bash
|
|
@@ -77,6 +82,13 @@ Note: stack decisions (component library, styling approach) will be asked during
|
|
|
77
82
|
```
|
|
78
83
|
Continue (non-blocking).
|
|
79
84
|
|
|
85
|
+
**If `SKETCH_FINDINGS_PATH` is not empty:**
|
|
86
|
+
```
|
|
87
|
+
⚡ Sketch findings detected: {SKETCH_FINDINGS_PATH}
|
|
88
|
+
Validated design decisions from /gsd-sketch will be loaded into the UI researcher.
|
|
89
|
+
Pre-validated decisions (layout, palette, typography, spacing) should be treated as locked — not re-asked.
|
|
90
|
+
```
|
|
91
|
+
|
|
80
92
|
## 4. Check Existing UI-SPEC
|
|
81
93
|
|
|
82
94
|
```bash
|
|
@@ -124,6 +136,7 @@ Answer: "What visual and interaction contracts does this phase need?"
|
|
|
124
136
|
- {requirements_path} (Requirements)
|
|
125
137
|
- {context_path} (USER DECISIONS from /gsd-discuss-phase)
|
|
126
138
|
- {research_path} (Technical Research — stack decisions)
|
|
139
|
+
- {SKETCH_FINDINGS_PATH} (Sketch Findings — validated design decisions, CSS patterns, visual direction from /gsd-sketch, if exists)
|
|
127
140
|
</files_to_read>
|
|
128
141
|
|
|
129
142
|
${AGENT_SKILLS_UI}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "get-shit-done-cc",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.1",
|
|
4
4
|
"description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini and Codex by TÂCHES.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"get-shit-done-cc": "bin/install.js"
|