@undeemed/get-shit-done-codex 1.6.6 → 1.6.9
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/AGENTS.md +1 -1
- package/README.md +3 -3
- package/bin/install.js +49 -49
- package/commands/gsd/execute-phase.md +3 -3
- package/commands/gsd/new-milestone.md +7 -7
- package/commands/gsd/new-project.md +6 -6
- package/commands/gsd/plan-phase.md +4 -4
- package/commands/gsd/verify-work.md +4 -4
- package/get-shit-done/references/ui-brand.md +2 -2
- package/get-shit-done/workflows/diagnose-issues.md +1 -1
- package/get-shit-done/workflows/verify-work.md +3 -3
- package/package.json +2 -2
package/AGENTS.md
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# get-shit-done-codex (Codex CLI)
|
|
2
2
|
|
|
3
3
|
A meta-prompting, context engineering and spec-driven development system for [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
4
4
|
|
|
@@ -9,7 +9,7 @@ Fork of [get-shit-done](https://github.com/taches/get-shit-done) by TÂCHES, ada
|
|
|
9
9
|
|
|
10
10
|
## What This Does
|
|
11
11
|
|
|
12
|
-
GSD solves context rot — the quality degradation that happens as AI fills its context window. It structures your project through specs and plans so Codex CLI has what it needs to build reliably.
|
|
12
|
+
get-shit-done-codex (GSD) solves context rot — the quality degradation that happens as AI fills its context window. It structures your project through specs and plans so Codex CLI has what it needs to build reliably.
|
|
13
13
|
|
|
14
14
|
**The problem:** AI assistants lose quality as conversations grow. Context gets polluted, requirements get forgotten, work becomes inconsistent.
|
|
15
15
|
|
|
@@ -151,7 +151,7 @@ Git bisect finds exact failing task. Each task independently revertable.
|
|
|
151
151
|
|
|
152
152
|
**Update to latest:**
|
|
153
153
|
```bash
|
|
154
|
-
npx get-shit-done-codex@latest
|
|
154
|
+
npx @undeemed/get-shit-done-codex@latest
|
|
155
155
|
```
|
|
156
156
|
|
|
157
157
|
## More Documentation
|
package/bin/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const readline = require('readline');
|
|
|
7
7
|
|
|
8
8
|
// Colors
|
|
9
9
|
const cyan = '\x1b[36m';
|
|
10
|
-
const
|
|
10
|
+
const #00ff00 = '\x1b[32m';
|
|
11
11
|
const yellow = '\x1b[33m';
|
|
12
12
|
const dim = '\x1b[2m';
|
|
13
13
|
const reset = '\x1b[0m';
|
|
@@ -16,16 +16,16 @@ const reset = '\x1b[0m';
|
|
|
16
16
|
const pkg = require('../package.json');
|
|
17
17
|
|
|
18
18
|
const banner = `
|
|
19
|
-
${
|
|
20
|
-
██╔════╝
|
|
21
|
-
██║ ███╗███████╗██║
|
|
22
|
-
██║ ██║╚════██║██║
|
|
23
|
-
|
|
24
|
-
╚═════╝
|
|
25
|
-
|
|
26
|
-
Get Shit Done ${dim}v${pkg.version}${reset}
|
|
27
|
-
A meta-prompting, context engineering and spec-driven
|
|
28
|
-
development system for OpenAI Codex CLI by TÂCHES.
|
|
19
|
+
${#00ff00} ██████╗ ███████╗██████╗
|
|
20
|
+
██╔════╝ ██╔════╝██╔══██╗
|
|
21
|
+
██║ ███╗███████╗██║ ██║
|
|
22
|
+
██║ ██║╚════██║██║ ██║
|
|
23
|
+
╚██████╔╝███████║██████╔╝
|
|
24
|
+
╚═════╝ ╚══════╝╚═════╝${ reset }
|
|
25
|
+
|
|
26
|
+
Get Shit Done ${ dim }v${ pkg.version }${ reset }
|
|
27
|
+
A meta - prompting, context engineering and spec - driven
|
|
28
|
+
development system for OpenAI Codex CLI originally by TÂCHES.
|
|
29
29
|
`;
|
|
30
30
|
|
|
31
31
|
// Parse args
|
|
@@ -38,26 +38,26 @@ console.log(banner);
|
|
|
38
38
|
|
|
39
39
|
// Show help if requested
|
|
40
40
|
if (hasHelp) {
|
|
41
|
-
console.log(` ${yellow}Usage:${reset} npx get-shit-done-codex
|
|
42
|
-
|
|
43
|
-
${yellow}Options:${reset}
|
|
44
|
-
${cyan}-g, --global${reset} Install globally
|
|
45
|
-
${cyan}-l, --local${reset} Install locally
|
|
46
|
-
${cyan}-h, --help${reset} Show this help message
|
|
47
|
-
|
|
48
|
-
${yellow}Examples:${reset}
|
|
49
|
-
${dim}# Install globally to ~/.codex directory${reset}
|
|
50
|
-
npx get-shit-done-codex
|
|
51
|
-
|
|
52
|
-
${dim}# Install to current project only${reset}
|
|
53
|
-
npx get-shit-done-codex
|
|
54
|
-
|
|
55
|
-
${yellow}Notes:${reset}
|
|
56
|
-
For codex-cli, this installer:
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
- Global install goes to ~/.codex/
|
|
60
|
-
|
|
41
|
+
console.log(` ${ yellow } Usage:${ reset } npx get - shit - done - codex[options]
|
|
42
|
+
|
|
43
|
+
${ yellow } Options:${ reset }
|
|
44
|
+
${ cyan } -g, --global${ reset } Install globally(to ~/.codex/)
|
|
45
|
+
${ cyan } -l, --local${ reset } Install locally(to current directory)
|
|
46
|
+
${ cyan } -h, --help${ reset } Show this help message
|
|
47
|
+
|
|
48
|
+
${ yellow } Examples:${ reset }
|
|
49
|
+
${ dim }# Install globally to ~/.codex directory${reset}
|
|
50
|
+
npx get - shit - done - codex--global
|
|
51
|
+
|
|
52
|
+
${ dim }# Install to current project only${ reset }
|
|
53
|
+
npx get - shit - done - codex--local
|
|
54
|
+
|
|
55
|
+
${ yellow } Notes:${ reset }
|
|
56
|
+
For codex - cli, this installer:
|
|
57
|
+
- Creates / updates AGENTS.md in the target directory
|
|
58
|
+
- Copies the get - shit - done skill and commands
|
|
59
|
+
- Global install goes to ~/.codex/(inherited by all projects)
|
|
60
|
+
- Local install puts files in current directory
|
|
61
61
|
`);
|
|
62
62
|
process.exit(0);
|
|
63
63
|
}
|
|
@@ -122,7 +122,7 @@ function install(isGlobal) {
|
|
|
122
122
|
? '~/.codex/'
|
|
123
123
|
: './';
|
|
124
124
|
|
|
125
|
-
console.log(` Installing to ${cyan}${locationLabel}${reset}\n`);
|
|
125
|
+
console.log(` Installing to ${ cyan }${ locationLabel }${ reset } \n`);
|
|
126
126
|
|
|
127
127
|
// Create target directory if needed
|
|
128
128
|
fs.mkdirSync(codexDir, { recursive: true });
|
|
@@ -133,7 +133,7 @@ function install(isGlobal) {
|
|
|
133
133
|
let agentsContent = fs.readFileSync(agentsSrc, 'utf8');
|
|
134
134
|
agentsContent = applyReplacements(agentsContent, pathPrefix);
|
|
135
135
|
fs.writeFileSync(agentsDest, agentsContent);
|
|
136
|
-
console.log(` ${green}✓${reset} Installed AGENTS.md`);
|
|
136
|
+
console.log(` ${ green }✓${ reset } Installed AGENTS.md`);
|
|
137
137
|
|
|
138
138
|
// Create prompts directory (Codex CLI uses prompts/ for custom slash commands)
|
|
139
139
|
const promptsDir = path.join(codexDir, 'prompts');
|
|
@@ -154,27 +154,27 @@ function install(isGlobal) {
|
|
|
154
154
|
fs.writeFileSync(destPath, content);
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
|
-
console.log(` ${green}✓${reset} Installed prompts/gsd-*.md
|
|
157
|
+
console.log(` ${ green }✓${ reset } Installed prompts / gsd -*.md(${ entries.filter(e => e.endsWith('.md')).length } commands)`);
|
|
158
158
|
|
|
159
159
|
// Copy get-shit-done skill with path replacement
|
|
160
160
|
const skillSrc = path.join(src, 'get-shit-done');
|
|
161
161
|
const skillDest = path.join(codexDir, 'get-shit-done');
|
|
162
162
|
copyWithPathReplacement(skillSrc, skillDest, pathPrefix);
|
|
163
|
-
console.log(` ${green}✓${reset} Installed get-shit-done`);
|
|
163
|
+
console.log(` ${ green }✓${ reset } Installed get - shit - done`);
|
|
164
164
|
|
|
165
165
|
console.log(`
|
|
166
|
-
${green}Done!${reset}
|
|
166
|
+
${ green } Done!${ reset }
|
|
167
167
|
|
|
168
|
-
${yellow}For Codex CLI:${reset}
|
|
169
|
-
|
|
170
|
-
- Slash commands are in ${cyan}${codexDir}/prompts/${reset}
|
|
168
|
+
${ yellow }For Codex CLI:${ reset }
|
|
169
|
+
- AGENTS.md is at ${ cyan }${ codexDir }/AGENTS.md${reset}
|
|
170
|
+
- Slash commands are in ${ cyan }${ codexDir } /prompts/${ reset }
|
|
171
171
|
|
|
172
|
-
${yellow}Getting Started:${reset}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
172
|
+
${ yellow }Getting Started:${ reset }
|
|
173
|
+
1. Run ${ cyan }codex${ reset } to start the Codex CLI
|
|
174
|
+
2. Type ${ cyan }/${reset} to see available commands
|
|
175
|
+
3. Start with ${ cyan }/prompts:gsd-new-project${reset} to initialize a project
|
|
176
176
|
|
|
177
|
-
${dim}Commands use /prompts:gsd-name format
|
|
177
|
+
${ dim }Commands use / prompts: gsd - name format(e.g., /prompts:gsd-help)${ reset }
|
|
178
178
|
`);
|
|
179
179
|
}
|
|
180
180
|
|
|
@@ -187,13 +187,13 @@ function promptLocation() {
|
|
|
187
187
|
output: process.stdout
|
|
188
188
|
});
|
|
189
189
|
|
|
190
|
-
console.log(` ${yellow}Where would you like to install
|
|
190
|
+
console.log(` ${ yellow }Where would you like to install ? ${ reset }
|
|
191
191
|
|
|
192
|
-
${cyan}1${reset}) Global ${dim}(~/.codex)${reset} - available in all projects
|
|
193
|
-
${cyan}2${reset}) Local ${dim}(.)${reset} - this project only
|
|
192
|
+
${ cyan } 1${ reset }) Global ${ dim } (~/.codex)${ reset } - available in all projects
|
|
193
|
+
${ cyan } 2${ reset }) Local ${ dim } (.)${ reset } - this project only
|
|
194
194
|
`);
|
|
195
195
|
|
|
196
|
-
rl.question(` Choice ${dim}[1]${reset}: `, (answer) => {
|
|
196
|
+
rl.question(` Choice ${ dim } [1]${ reset }: `, (answer) => {
|
|
197
197
|
rl.close();
|
|
198
198
|
const choice = answer.trim() || '1';
|
|
199
199
|
const isGlobal = choice !== '2';
|
|
@@ -203,7 +203,7 @@ function promptLocation() {
|
|
|
203
203
|
|
|
204
204
|
// Main
|
|
205
205
|
if (hasGlobal && hasLocal) {
|
|
206
|
-
console.error(` ${yellow}Cannot specify both
|
|
206
|
+
console.error(` ${ yellow }Cannot specify both--global and--local${ reset } `);
|
|
207
207
|
process.exit(1);
|
|
208
208
|
} else if (hasGlobal) {
|
|
209
209
|
install(true);
|
|
@@ -123,7 +123,7 @@ Output this markdown directly (not as a code block). Route based on status:
|
|
|
123
123
|
**Route A: Phase verified, more phases remain**
|
|
124
124
|
|
|
125
125
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
126
|
-
GSD ► PHASE {Z} COMPLETE ✓
|
|
126
|
+
GSD-CODEX ► PHASE {Z} COMPLETE ✓
|
|
127
127
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
128
128
|
|
|
129
129
|
**Phase {Z}: {Name}**
|
|
@@ -154,7 +154,7 @@ Goal verified ✓
|
|
|
154
154
|
**Route B: Phase verified, milestone complete**
|
|
155
155
|
|
|
156
156
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
157
|
-
GSD ► MILESTONE COMPLETE 🎉
|
|
157
|
+
GSD-CODEX ► MILESTONE COMPLETE 🎉
|
|
158
158
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
159
159
|
|
|
160
160
|
**v1.0**
|
|
@@ -185,7 +185,7 @@ All phase goals verified ✓
|
|
|
185
185
|
**Route C: Gaps found — need additional planning**
|
|
186
186
|
|
|
187
187
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
188
|
-
GSD ► PHASE {Z} GAPS FOUND ⚠
|
|
188
|
+
GSD-CODEX ► PHASE {Z} GAPS FOUND ⚠
|
|
189
189
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
190
190
|
|
|
191
191
|
**Phase {Z}: {Name}**
|
|
@@ -88,7 +88,7 @@ Milestone name: $ARGUMENTS (optional - will prompt if not provided)
|
|
|
88
88
|
|
|
89
89
|
```
|
|
90
90
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
91
|
-
GSD ► NEW MILESTONE
|
|
91
|
+
GSD-CODEX ► NEW MILESTONE
|
|
92
92
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
93
93
|
```
|
|
94
94
|
|
|
@@ -115,7 +115,7 @@ Pending todos:
|
|
|
115
115
|
|
|
116
116
|
```
|
|
117
117
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
118
|
-
GSD ► QUESTIONING
|
|
118
|
+
GSD-CODEX ► QUESTIONING
|
|
119
119
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
120
120
|
```
|
|
121
121
|
|
|
@@ -216,7 +216,7 @@ Use AskUserQuestion:
|
|
|
216
216
|
Display stage banner:
|
|
217
217
|
```
|
|
218
218
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
219
|
-
GSD ► RESEARCHING
|
|
219
|
+
GSD-CODEX ► RESEARCHING
|
|
220
220
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
221
221
|
|
|
222
222
|
Researching [domain] ecosystem...
|
|
@@ -397,7 +397,7 @@ Commit after writing.
|
|
|
397
397
|
Display research complete:
|
|
398
398
|
```
|
|
399
399
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
400
|
-
GSD ► RESEARCH COMPLETE ✓
|
|
400
|
+
GSD-CODEX ► RESEARCH COMPLETE ✓
|
|
401
401
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
402
402
|
|
|
403
403
|
## Key Findings
|
|
@@ -416,7 +416,7 @@ Files: `.planning/research/`
|
|
|
416
416
|
Display stage banner:
|
|
417
417
|
```
|
|
418
418
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
419
|
-
GSD ► DEFINING REQUIREMENTS
|
|
419
|
+
GSD-CODEX ► DEFINING REQUIREMENTS
|
|
420
420
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
421
421
|
```
|
|
422
422
|
|
|
@@ -546,7 +546,7 @@ EOF
|
|
|
546
546
|
Display stage banner:
|
|
547
547
|
```
|
|
548
548
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
549
|
-
GSD ► CREATING ROADMAP
|
|
549
|
+
GSD-CODEX ► CREATING ROADMAP
|
|
550
550
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
551
551
|
|
|
552
552
|
◆ Spawning roadmapper...
|
|
@@ -649,7 +649,7 @@ Present completion with next steps:
|
|
|
649
649
|
|
|
650
650
|
```
|
|
651
651
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
652
|
-
GSD ► MILESTONE INITIALIZED ✓
|
|
652
|
+
GSD-CODEX ► MILESTONE INITIALIZED ✓
|
|
653
653
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
654
654
|
|
|
655
655
|
**v[X.Y] [Name]**
|
|
@@ -97,7 +97,7 @@ Exit command.
|
|
|
97
97
|
|
|
98
98
|
```
|
|
99
99
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
100
|
-
GSD ► QUESTIONING
|
|
100
|
+
GSD-CODEX ► QUESTIONING
|
|
101
101
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
102
102
|
```
|
|
103
103
|
|
|
@@ -302,7 +302,7 @@ Use AskUserQuestion:
|
|
|
302
302
|
Display stage banner:
|
|
303
303
|
```
|
|
304
304
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
305
|
-
GSD ► RESEARCHING
|
|
305
|
+
GSD-CODEX ► RESEARCHING
|
|
306
306
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
307
307
|
|
|
308
308
|
Researching [domain] ecosystem...
|
|
@@ -515,7 +515,7 @@ Commit after writing.
|
|
|
515
515
|
Display research complete banner and key findings:
|
|
516
516
|
```
|
|
517
517
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
518
|
-
GSD ► RESEARCH COMPLETE ✓
|
|
518
|
+
GSD-CODEX ► RESEARCH COMPLETE ✓
|
|
519
519
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
520
520
|
|
|
521
521
|
## Key Findings
|
|
@@ -534,7 +534,7 @@ Files: `.planning/research/`
|
|
|
534
534
|
Display stage banner:
|
|
535
535
|
```
|
|
536
536
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
537
|
-
GSD ► DEFINING REQUIREMENTS
|
|
537
|
+
GSD-CODEX ► DEFINING REQUIREMENTS
|
|
538
538
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
539
539
|
```
|
|
540
540
|
|
|
@@ -677,7 +677,7 @@ EOF
|
|
|
677
677
|
Display stage banner:
|
|
678
678
|
```
|
|
679
679
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
680
|
-
GSD ► CREATING ROADMAP
|
|
680
|
+
GSD-CODEX ► CREATING ROADMAP
|
|
681
681
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
682
682
|
|
|
683
683
|
◆ Spawning roadmapper...
|
|
@@ -820,7 +820,7 @@ Present completion with next steps:
|
|
|
820
820
|
|
|
821
821
|
```
|
|
822
822
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
823
|
-
GSD ► PROJECT INITIALIZED ✓
|
|
823
|
+
GSD-CODEX ► PROJECT INITIALIZED ✓
|
|
824
824
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
825
825
|
|
|
826
826
|
**[Project Name]**
|
|
@@ -124,7 +124,7 @@ ls "${PHASE_DIR}"/*-RESEARCH.md 2>/dev/null
|
|
|
124
124
|
Display stage banner:
|
|
125
125
|
```
|
|
126
126
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
127
|
-
GSD ► RESEARCHING PHASE {X}
|
|
127
|
+
GSD-CODEX ► RESEARCHING PHASE {X}
|
|
128
128
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
129
129
|
|
|
130
130
|
◆ Spawning researcher...
|
|
@@ -227,7 +227,7 @@ UAT="${PHASE_DIR}/${PHASE}-UAT.md"
|
|
|
227
227
|
Display stage banner:
|
|
228
228
|
```
|
|
229
229
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
230
|
-
GSD ► PLANNING PHASE {X}
|
|
230
|
+
GSD-CODEX ► PLANNING PHASE {X}
|
|
231
231
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
232
232
|
|
|
233
233
|
◆ Spawning planner...
|
|
@@ -314,7 +314,7 @@ Parse planner output:
|
|
|
314
314
|
Display:
|
|
315
315
|
```
|
|
316
316
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
317
|
-
GSD ► VERIFYING PLANS
|
|
317
|
+
GSD-CODEX ► VERIFYING PLANS
|
|
318
318
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
319
319
|
|
|
320
320
|
◆ Spawning plan checker...
|
|
@@ -427,7 +427,7 @@ Route to `<offer_next>`.
|
|
|
427
427
|
Output this markdown directly (not as a code block):
|
|
428
428
|
|
|
429
429
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
430
|
-
GSD ► PHASE {X} PLANNED ✓
|
|
430
|
+
GSD-CODEX ► PHASE {X} PLANNED ✓
|
|
431
431
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
432
432
|
|
|
433
433
|
**Phase {X}: {Name}** — {N} plan(s) in {M} wave(s)
|
|
@@ -76,7 +76,7 @@ Output this markdown directly (not as a code block). Route based on UAT results:
|
|
|
76
76
|
**Route A: All tests pass, more phases remain**
|
|
77
77
|
|
|
78
78
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
79
|
-
GSD ► PHASE {Z} VERIFIED ✓
|
|
79
|
+
GSD-CODEX ► PHASE {Z} VERIFIED ✓
|
|
80
80
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
81
81
|
|
|
82
82
|
**Phase {Z}: {Name}**
|
|
@@ -107,7 +107,7 @@ UAT complete ✓
|
|
|
107
107
|
**Route B: All tests pass, milestone complete**
|
|
108
108
|
|
|
109
109
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
110
|
-
GSD ► PHASE {Z} VERIFIED ✓
|
|
110
|
+
GSD-CODEX ► PHASE {Z} VERIFIED ✓
|
|
111
111
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
112
112
|
|
|
113
113
|
**Phase {Z}: {Name}**
|
|
@@ -137,7 +137,7 @@ Final phase verified ✓
|
|
|
137
137
|
**Route C: Issues found, fix plans ready**
|
|
138
138
|
|
|
139
139
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
140
|
-
GSD ► PHASE {Z} ISSUES FOUND ⚠
|
|
140
|
+
GSD-CODEX ► PHASE {Z} ISSUES FOUND ⚠
|
|
141
141
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
142
142
|
|
|
143
143
|
**Phase {Z}: {Name}**
|
|
@@ -173,7 +173,7 @@ Fix plans verified ✓
|
|
|
173
173
|
**Route D: Issues found, planning blocked**
|
|
174
174
|
|
|
175
175
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
176
|
-
GSD ► PHASE {Z} BLOCKED ✗
|
|
176
|
+
GSD-CODEX ► PHASE {Z} BLOCKED ✗
|
|
177
177
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
178
178
|
|
|
179
179
|
**Phase {Z}: {Name}**
|
|
@@ -8,7 +8,7 @@ Use for major workflow transitions.
|
|
|
8
8
|
|
|
9
9
|
```
|
|
10
10
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
11
|
-
GSD ► {STAGE NAME}
|
|
11
|
+
GSD-CODEX ► {STAGE NAME}
|
|
12
12
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
13
13
|
```
|
|
14
14
|
|
|
@@ -153,7 +153,7 @@ Always at end of major completions.
|
|
|
153
153
|
|
|
154
154
|
- Varying box/banner widths
|
|
155
155
|
- Mixing banner styles (`===`, `---`, `***`)
|
|
156
|
-
- Skipping `GSD ►` prefix in banners
|
|
156
|
+
- Skipping `GSD-CODEX ►` prefix in banners
|
|
157
157
|
- Random emoji (`🚀`, `✨`, `💫`)
|
|
158
158
|
- Missing Next Up block after completions
|
|
159
159
|
|
|
@@ -169,7 +169,7 @@ git commit -m "docs({phase}): add root causes from diagnosis"
|
|
|
169
169
|
Display:
|
|
170
170
|
```
|
|
171
171
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
172
|
-
GSD ► DIAGNOSIS COMPLETE
|
|
172
|
+
GSD-CODEX ► DIAGNOSIS COMPLETE
|
|
173
173
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
174
174
|
|
|
175
175
|
| Gap (Truth) | Root Cause | Files |
|
|
@@ -345,7 +345,7 @@ Diagnosis runs automatically - no user prompt. Parallel agents investigate simul
|
|
|
345
345
|
Display:
|
|
346
346
|
```
|
|
347
347
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
348
|
-
GSD ► PLANNING FIXES
|
|
348
|
+
GSD-CODEX ► PLANNING FIXES
|
|
349
349
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
350
350
|
|
|
351
351
|
◆ Spawning planner for gap closure...
|
|
@@ -393,7 +393,7 @@ On return:
|
|
|
393
393
|
Display:
|
|
394
394
|
```
|
|
395
395
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
396
|
-
GSD ► VERIFYING FIX PLANS
|
|
396
|
+
GSD-CODEX ► VERIFYING FIX PLANS
|
|
397
397
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
398
398
|
|
|
399
399
|
◆ Spawning plan checker...
|
|
@@ -487,7 +487,7 @@ Wait for user response.
|
|
|
487
487
|
|
|
488
488
|
```
|
|
489
489
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
490
|
-
GSD ► FIXES READY ✓
|
|
490
|
+
GSD-CODEX ► FIXES READY ✓
|
|
491
491
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
492
492
|
|
|
493
493
|
**Phase {X}: {Name}** — {N} gap(s) diagnosed, {M} fix plan(s) created
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@undeemed/get-shit-done-codex",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.9",
|
|
4
4
|
"description": "A meta-prompting, context engineering and spec-driven development system for OpenAI Codex CLI. Fork of get-shit-done by TÂCHES, adapted for Codex CLI by undeemed.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"get-shit-done-codex": "bin/install.js"
|
|
@@ -39,4 +39,4 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@undeemed/get-shit-done-codex": "^1.6.5"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|