@undeemed/get-shit-done-codex 1.23.1 → 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 CHANGED
@@ -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
- 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.
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 will prompt you to **trust the project** so the config takes effect (one-time, one-click).
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.
@@ -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.1",
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"