@undeemed/get-shit-done-codex 1.23.0 → 1.23.2
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 +3 -7
- package/bin/install.js +6 -5
- package/get-shit-done/bin/lib/verify.cjs +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ A meta-prompting, context engineering and spec-driven development system for [Op
|
|
|
5
5
|
Fork of [get-shit-done](https://github.com/taches/get-shit-done) by TÂCHES, adapted for Codex CLI by [undeemed](https://github.com/undeemed).
|
|
6
6
|
|
|
7
7
|
> [!CAUTION]
|
|
8
|
-
> Codex is now supported upstream. This fork remains focused on Codex-specific UX, compatibility, and
|
|
8
|
+
> Codex is now supported upstream. This fork remains focused on Codex-specific UX, compatibility, and experimental features for personal use.
|
|
9
9
|
|
|
10
10
|
[](https://github.com/undeemed/get-shit-done-codex/actions/workflows/ci.yml)
|
|
11
11
|
[](https://www.npmjs.com/package/@undeemed/get-shit-done-codex)
|
|
@@ -14,11 +14,7 @@ Fork of [get-shit-done](https://github.com/taches/get-shit-done) by TÂCHES, ada
|
|
|
14
14
|
|
|
15
15
|
## What This Does
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
**The problem:** AI assistants lose quality as conversations grow. Context gets polluted, requirements get forgotten, work becomes inconsistent.
|
|
20
|
-
|
|
21
|
-
**The solution:** Hierarchical planning with fresh context windows. Each task runs in isolation with exactly the context it needs—no degradation from accumulated garbage.
|
|
17
|
+
GSD solves **context rot** — the quality degradation that happens as AI fills its context window. It structures your project through specs and plans so each task runs in a fresh context with exactly what it needs. No accumulated garbage, no forgotten requirements.
|
|
22
18
|
|
|
23
19
|
## What Changed In This Fork
|
|
24
20
|
|
|
@@ -65,7 +61,7 @@ The installer distributes everything GSD needs:
|
|
|
65
61
|
- **`skills/gsd-*/SKILL.md`** — native Codex skill commands
|
|
66
62
|
- **`get-shit-done/`** — workflow files, templates, and references
|
|
67
63
|
|
|
68
|
-
On first run, Codex
|
|
64
|
+
On first run, Codex may prompt you to **trust the project** so the config takes effect (one-time, one-click).
|
|
69
65
|
|
|
70
66
|
> [!NOTE]
|
|
71
67
|
> `.codex/config.toml` is non-destructive — the installer skips it if you already have one, so your customizations are preserved on updates.
|
package/bin/install.js
CHANGED
|
@@ -109,7 +109,7 @@ function applyReplacements(content, pathPrefix) {
|
|
|
109
109
|
content = content.replace(/Codex CLI/g, 'Codex CLI');
|
|
110
110
|
content = content.replace(/Codex/g, 'Codex');
|
|
111
111
|
|
|
112
|
-
content = content.replace(/\/gsd
|
|
112
|
+
content = content.replace(/\/gsd:([a-z0-9-]*)/gi, (_, cmd) => `$gsd-${cmd.toLowerCase()}`);
|
|
113
113
|
|
|
114
114
|
// Keep update workflows pointed to this fork's npm package/repo.
|
|
115
115
|
content = content.replace(new RegExp(UPSTREAM_PACKAGE, 'g'), NPM_PACKAGE);
|
|
@@ -512,14 +512,15 @@ function installCore(isGlobal, migrationPlan, applyMigration, done = () => {}, t
|
|
|
512
512
|
console.log(` ${green}✓${reset} Installed get-shit-done/ workflow files`);
|
|
513
513
|
console.log(` ${green}✓${reset} Wrote get-shit-done/VERSION (${pkg.version})`);
|
|
514
514
|
|
|
515
|
+
const displayRoot = locationLabel.endsWith('/') ? locationLabel.slice(0, -1) : locationLabel;
|
|
515
516
|
console.log(`
|
|
516
517
|
${green}Done!${reset}
|
|
517
518
|
|
|
518
519
|
${yellow}For Codex (CLI + Desktop):${reset}
|
|
519
|
-
- AGENTS.md: ${cyan}${
|
|
520
|
-
- Native skills: ${cyan}${
|
|
521
|
-
- Config: ${cyan}${
|
|
522
|
-
- Agent defs: ${cyan}${
|
|
520
|
+
- AGENTS.md: ${cyan}${displayRoot}/AGENTS.md${reset}
|
|
521
|
+
- Native skills: ${cyan}${displayRoot}/skills/gsd-*/SKILL.md${reset}
|
|
522
|
+
- Config: ${cyan}${displayRoot}/.codex/config.toml${reset}
|
|
523
|
+
- Agent defs: ${cyan}${displayRoot}/agents/gsd-*.md${reset}
|
|
523
524
|
|
|
524
525
|
${yellow}Getting Started:${reset}
|
|
525
526
|
1. Run ${cyan}codex${reset} (CLI) or ${cyan}codex app${reset} (Desktop)
|
|
@@ -598,6 +598,11 @@ function cmdValidateHealth(cwd, options, raw) {
|
|
|
598
598
|
}
|
|
599
599
|
}
|
|
600
600
|
|
|
601
|
+
// ─── Hint: incomplete $gsd-new-project ────────────────────────────────────
|
|
602
|
+
if (!fs.existsSync(projectPath) && !fs.existsSync(roadmapPath) && !fs.existsSync(statePath)) {
|
|
603
|
+
addIssue('info', 'I002', '$gsd-new-project has not been completed yet — finish it to create PROJECT.md, ROADMAP.md, and STATE.md', 'Run $gsd-new-project and complete the full flow (questions → research → requirements → roadmap)');
|
|
604
|
+
}
|
|
605
|
+
|
|
601
606
|
// ─── Check 5: config.json valid JSON + valid schema ───────────────────────
|
|
602
607
|
if (!fs.existsSync(configPath)) {
|
|
603
608
|
addIssue('warning', 'W003', 'config.json not found', 'Run $gsd-health --repair to create with defaults', true);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@undeemed/get-shit-done-codex",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.2",
|
|
4
4
|
"description": "A meta-prompting, context engineering and spec-driven development system for OpenAI Codex (CLI and Desktop). Fork of get-shit-done by TÂCHES, adapted for Codex.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"get-shit-done-codex": "bin/install.js"
|