@undeemed/get-shit-done-codex 1.6.12 → 1.20.3
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 +40 -7
- package/agents/gsd-codebase-mapper.md +761 -0
- package/agents/gsd-debugger.md +1198 -0
- package/agents/gsd-executor.md +419 -0
- package/agents/gsd-integration-checker.md +423 -0
- package/agents/gsd-phase-researcher.md +469 -0
- package/agents/gsd-plan-checker.md +622 -0
- package/agents/gsd-planner.md +1159 -0
- package/agents/gsd-project-researcher.md +618 -0
- package/agents/gsd-research-synthesizer.md +236 -0
- package/agents/gsd-roadmapper.md +639 -0
- package/agents/gsd-verifier.md +541 -0
- package/bin/install.js +108 -102
- package/commands/gsd/add-phase.md +17 -185
- package/commands/gsd/add-todo.md +23 -163
- package/commands/gsd/audit-milestone.md +3 -219
- package/commands/gsd/check-todos.md +20 -196
- package/commands/gsd/cleanup.md +18 -0
- package/commands/gsd/complete-milestone.md +2 -2
- package/commands/gsd/debug.md +13 -0
- package/commands/gsd/discuss-phase.md +13 -6
- package/commands/gsd/execute-phase.md +4 -266
- package/commands/gsd/health.md +22 -0
- package/commands/gsd/help.md +8 -369
- package/commands/gsd/insert-phase.md +9 -203
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/list-phase-assumptions.md +4 -4
- package/commands/gsd/map-codebase.md +1 -1
- package/commands/gsd/new-milestone.md +16 -682
- package/commands/gsd/new-project.md +12 -866
- package/commands/gsd/new-project.md.bak +1041 -0
- package/commands/gsd/pause-work.md +17 -105
- package/commands/gsd/plan-milestone-gaps.md +3 -247
- package/commands/gsd/plan-phase.md +13 -444
- package/commands/gsd/progress.md +5 -337
- package/commands/gsd/quick.md +40 -0
- package/commands/gsd/reapply-patches.md +110 -0
- package/commands/gsd/remove-phase.md +9 -315
- package/commands/gsd/research-phase.md +27 -20
- package/commands/gsd/resume-work.md +2 -2
- package/commands/gsd/set-profile.md +34 -0
- package/commands/gsd/settings.md +36 -0
- package/commands/gsd/update.md +25 -160
- package/commands/gsd/verify-work.md +6 -186
- package/get-shit-done/bin/gsd-tools.cjs +5243 -0
- package/get-shit-done/bin/gsd-tools.test.cjs +2273 -0
- package/get-shit-done/references/checkpoints.md +270 -283
- package/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/get-shit-done/references/git-integration.md +7 -13
- package/get-shit-done/references/git-planning-commit.md +38 -0
- package/get-shit-done/references/model-profile-resolution.md +34 -0
- package/get-shit-done/references/model-profiles.md +92 -0
- package/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/get-shit-done/references/planning-config.md +196 -0
- package/get-shit-done/references/questioning.md +5 -1
- package/get-shit-done/references/verification-patterns.md +17 -0
- package/get-shit-done/templates/DEBUG.md +4 -4
- package/get-shit-done/templates/UAT.md +1 -1
- package/get-shit-done/templates/codebase/architecture.md +1 -1
- package/get-shit-done/templates/codebase/concerns.md +1 -1
- package/get-shit-done/templates/codebase/conventions.md +1 -1
- package/get-shit-done/templates/codebase/structure.md +9 -9
- package/get-shit-done/templates/config.json +10 -0
- package/get-shit-done/templates/context.md +7 -15
- package/get-shit-done/templates/continue-here.md +1 -1
- package/get-shit-done/templates/phase-prompt.md +32 -41
- package/get-shit-done/templates/planner-subagent-prompt.md +4 -4
- package/get-shit-done/templates/project.md +1 -1
- package/get-shit-done/templates/research-project/ARCHITECTURE.md +1 -1
- package/get-shit-done/templates/research.md +27 -4
- package/get-shit-done/templates/state.md +1 -31
- package/get-shit-done/templates/summary-complex.md +59 -0
- package/get-shit-done/templates/summary-minimal.md +41 -0
- package/get-shit-done/templates/summary-standard.md +48 -0
- package/get-shit-done/templates/summary.md +5 -28
- package/get-shit-done/templates/user-setup.md +8 -20
- package/get-shit-done/templates/verification-report.md +3 -3
- package/get-shit-done/workflows/add-phase.md +111 -0
- package/get-shit-done/workflows/add-todo.md +157 -0
- package/get-shit-done/workflows/audit-milestone.md +242 -0
- package/get-shit-done/workflows/check-todos.md +176 -0
- package/get-shit-done/workflows/cleanup.md +152 -0
- package/get-shit-done/workflows/complete-milestone.md +225 -301
- package/get-shit-done/workflows/diagnose-issues.md +3 -17
- package/get-shit-done/workflows/discovery-phase.md +11 -15
- package/get-shit-done/workflows/discuss-phase.md +105 -42
- package/get-shit-done/workflows/execute-phase.md +205 -349
- package/get-shit-done/workflows/execute-plan.md +179 -1569
- package/get-shit-done/workflows/health.md +156 -0
- package/get-shit-done/workflows/help.md +486 -0
- package/get-shit-done/workflows/insert-phase.md +129 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +9 -9
- package/get-shit-done/workflows/map-codebase.md +56 -18
- package/get-shit-done/workflows/new-milestone.md +373 -0
- package/get-shit-done/workflows/new-project.md +1113 -0
- package/get-shit-done/workflows/pause-work.md +122 -0
- package/get-shit-done/workflows/plan-milestone-gaps.md +256 -0
- package/get-shit-done/workflows/plan-phase.md +448 -0
- package/get-shit-done/workflows/progress.md +393 -0
- package/get-shit-done/workflows/quick.md +444 -0
- package/get-shit-done/workflows/remove-phase.md +154 -0
- package/get-shit-done/workflows/research-phase.md +74 -0
- package/get-shit-done/workflows/resume-project.md +18 -23
- package/get-shit-done/workflows/set-profile.md +80 -0
- package/get-shit-done/workflows/settings.md +200 -0
- package/get-shit-done/workflows/transition.md +78 -103
- package/get-shit-done/workflows/update.md +214 -0
- package/get-shit-done/workflows/verify-phase.md +109 -496
- package/get-shit-done/workflows/verify-work.md +22 -15
- package/hooks/dist/gsd-check-update.js +66 -0
- package/hooks/dist/gsd-statusline.js +91 -0
- package/package.json +19 -3
- package/scripts/build-hooks.js +42 -0
- package/commands/gsd/whats-new.md +0 -124
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
# get-shit-done-codex (Codex CLI)
|
|
1
|
+
# get-shit-done-codex (Codex CLI/Desktop)
|
|
2
2
|
|
|
3
|
-
A meta-prompting, context engineering and spec-driven development system for [OpenAI Codex
|
|
3
|
+
A meta-prompting, context engineering and spec-driven development system for [OpenAI Codex](https://github.com/openai/codex), including both CLI and Desktop.
|
|
4
4
|
|
|
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
|
[](https://www.npmjs.com/package/@undeemed/get-shit-done-codex)
|
|
8
8
|
[](LICENSE)
|
|
9
|
+

|
|
9
10
|
|
|
10
11
|
## What This Does
|
|
11
12
|
|
|
@@ -18,7 +19,7 @@ get-shit-done-codex (GSD) solves context rot — the quality degradation that ha
|
|
|
18
19
|
## Installation
|
|
19
20
|
|
|
20
21
|
```bash
|
|
21
|
-
npx @undeemed/get-shit-done-codex
|
|
22
|
+
npx @undeemed/get-shit-done-codex@latest
|
|
22
23
|
```
|
|
23
24
|
|
|
24
25
|
You'll be prompted to install globally (`~/.codex/`) or locally (`./`).
|
|
@@ -30,7 +31,33 @@ npx @undeemed/get-shit-done-codex --global # Install to ~/.codex/
|
|
|
30
31
|
npx @undeemed/get-shit-done-codex --local # Install to current directory
|
|
31
32
|
```
|
|
32
33
|
|
|
33
|
-
After installation, run `codex`
|
|
34
|
+
After installation, run `codex` (CLI) or `codex app` (Desktop), then use `/prompts:gsd-help` to see all commands.
|
|
35
|
+
|
|
36
|
+
## Staying Updated
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Check for updates from inside Codex
|
|
40
|
+
/prompts:gsd-update
|
|
41
|
+
|
|
42
|
+
# Update from terminal
|
|
43
|
+
npx @undeemed/get-shit-done-codex@latest --global
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
The installer now writes a `get-shit-done/VERSION` file so `/prompts:gsd-update` can detect installed vs latest and show changelog before updating.
|
|
47
|
+
|
|
48
|
+
## npm Trusted Publisher (OIDC)
|
|
49
|
+
|
|
50
|
+
This repo includes a GitHub Actions publish workflow at:
|
|
51
|
+
|
|
52
|
+
- `.github/workflows/publish.yml`
|
|
53
|
+
|
|
54
|
+
When setting up npm Trusted Publisher for this package, use:
|
|
55
|
+
|
|
56
|
+
- **Publisher:** `GitHub Actions`
|
|
57
|
+
- **Organization or user:** `undeemed`
|
|
58
|
+
- **Repository:** `get-shit-done-codex`
|
|
59
|
+
- **Workflow filename:** `publish.yml`
|
|
60
|
+
- **Environment name:** leave blank (unless you later bind this workflow to a specific GitHub Environment)
|
|
34
61
|
|
|
35
62
|
## Quick Start
|
|
36
63
|
|
|
@@ -103,6 +130,7 @@ Manual user acceptance testing. The system walks you through testable deliverabl
|
|
|
103
130
|
| `/prompts:gsd-complete-milestone` | Archive milestone, tag release |
|
|
104
131
|
| `/prompts:gsd-new-milestone [name]` | Start next version |
|
|
105
132
|
| `/prompts:gsd-progress` | Show current status and what's next |
|
|
133
|
+
| `/prompts:gsd-update` | Check npm for a newer release and apply update |
|
|
106
134
|
| `/prompts:gsd-help` | Show all commands |
|
|
107
135
|
|
|
108
136
|
See `/prompts:gsd-help` for the complete command reference.
|
|
@@ -154,6 +182,11 @@ Git bisect finds exact failing task. Each task independently revertable.
|
|
|
154
182
|
npx @undeemed/get-shit-done-codex@latest
|
|
155
183
|
```
|
|
156
184
|
|
|
185
|
+
**Can users be notified when an update is available?**
|
|
186
|
+
- Yes. The installer prints an update notice if a newer npm version exists.
|
|
187
|
+
- In-Codex update checks are available via `/prompts:gsd-update`.
|
|
188
|
+
- For release notifications outside the CLI, enable GitHub release watching on this repo.
|
|
189
|
+
|
|
157
190
|
## More Documentation
|
|
158
191
|
|
|
159
192
|
For deeper guides, detailed workflows, and comprehensive documentation, see the [original get-shit-done README](https://github.com/taches/get-shit-done/blob/main/README.md).
|
|
@@ -165,10 +198,10 @@ The original repository contains:
|
|
|
165
198
|
- Best practices and examples
|
|
166
199
|
- Architecture and design principles
|
|
167
200
|
|
|
168
|
-
**Note:** The original README is written for
|
|
201
|
+
**Note:** The original README is written for Codex CLI. When following it, remember that this fork uses:
|
|
169
202
|
- `/prompts:gsd-*` command format (instead of `/gsd:*`)
|
|
170
|
-
- Codex CLI (instead of
|
|
171
|
-
- `~/.codex/` directory (instead of `~/.
|
|
203
|
+
- Codex CLI (instead of Codex CLI)
|
|
204
|
+
- `~/.codex/` directory (instead of `~/.codex/`)
|
|
172
205
|
|
|
173
206
|
## Credits
|
|
174
207
|
|