@imdeadpool/guardex 7.0.16 → 7.0.19

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/CONTRIBUTING.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Contributing
2
2
 
3
- Thanks for contributing to `GuardeX`.
3
+ Thanks for contributing to `GitGuardex`.
4
4
 
5
5
  ## Development setup
6
6
 
package/README.md CHANGED
@@ -10,6 +10,10 @@
10
10
  [![CodeQL](https://img.shields.io/github/actions/workflow/status/recodeee/gitguardex/codeql.yml?branch=main&label=CodeQL)](https://github.com/recodeee/gitguardex/actions/workflows/codeql.yml)
11
11
  [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/recodeee/gitguardex/badge)](https://securityscorecards.dev/viewer/?uri=github.com/recodeee/gitguardex)
12
12
 
13
+ [about_description.txt](./about_description.txt)
14
+
15
+ Guardian T-Rex for your multi-agent repo. Isolated worktrees, file locks, and PR-only merges stop parallel Codex & Claude agents from overwriting each other's work. Auto-wires Oh My Codex, Oh My Claude, OpenSpec, and Caveman.
16
+
13
17
  **GitGuardex is a safety layer for parallel agent work in git repos.** If you're running more than one Codex or Claude agent on the same codebase, this is what keeps them from deleting each other's work.
14
18
 
15
19
  > [!WARNING]
@@ -22,26 +26,40 @@
22
26
 
23
27
  ## The problem
24
28
 
29
+ ![Parallel agents colliding in the same files](https://raw.githubusercontent.com/recodeee/gitguardex/main/docs/images/problem-agent-collision.svg)
30
+
25
31
  I was running ~30 Codex agents in parallel and hit a wall: they kept working on the same files at the same time — especially tests — and started overwriting or deleting each other's changes. More agents meant *less* forward progress, not more. Classic de-progressive loop.
26
32
 
33
+ ### Solution
34
+
35
+ ![Agent branch/worktree start protocol](https://raw.githubusercontent.com/recodeee/gitguardex/main/docs/images/workflow-branch-start.svg)
36
+
27
37
  GitGuardex exists to stop that loop. Every agent gets its own worktree, claims the files it's touching, and can't clobber files another agent has claimed. Your local branch stays clean; agents stay in their lanes.
28
38
 
29
- ### Solution
30
39
 
31
- ```mermaid
32
- flowchart LR
33
- A[Agent A adds assertions in a shared test] --> S[Several agents touch the same files]
34
- B[Agent B rewrites the same test flow] --> S
35
- C[Agent C updates the shared helper] --> S
36
- D[Agent D deletes lines Agent A just added] --> S
37
- E[Agent E saves an older snapshot of the file] --> S
38
- S --> F[One agent overwrites another agent's edits]
39
- F --> G[Another agent deletes code the others just added]
40
- G --> H[Lost work, rework, and review confusion]
41
- H --> I[Regression risk and flaky fixes grow]
42
- I --> S
40
+ <p align="center">
41
+ <img alt="Install GitGuardex" src="https://raw.githubusercontent.com/recodeee/gitguardex/main/docs/images/install-hero.svg" width="680">
42
+ </p>
43
+
44
+ <h3 align="center">Install in one line</h3>
45
+
46
+ ```bash
47
+ npm i -g @imdeadpool/guardex
43
48
  ```
44
49
 
50
+ <p align="center">
51
+ <sub>
52
+ Then <code>cd</code> into your repo and run <code>gx setup</code> — hook shims, repo state,
53
+ and OMX&nbsp;/&nbsp;OpenSpec&nbsp;/&nbsp;caveman wiring all scaffold in one go.
54
+ </sub>
55
+ </p>
56
+
57
+ <p align="center">
58
+ <a href="https://www.npmjs.com/package/@imdeadpool/guardex"><img alt="npm" src="https://img.shields.io/npm/v/%40imdeadpool%2Fguardex?label=latest&style=flat-square&color=cb3837&logo=npm&logoColor=white"></a>
59
+ <a href="https://www.npmjs.com/package/@imdeadpool/guardex"><img alt="downloads" src="https://img.shields.io/npm/dm/%40imdeadpool%2Fguardex?label=downloads&style=flat-square&color=0b76c5"></a>
60
+ <a href="https://github.com/recodeee/gitguardex/stargazers"><img alt="stars" src="https://img.shields.io/github/stars/recodeee/gitguardex?style=flat-square&color=d4ac0d"></a>
61
+ </p>
62
+
45
63
  ### Dashboard
46
64
 
47
65
  ![Multi-agent dashboard example](https://raw.githubusercontent.com/recodeee/gitguardex/main/docs/images/dashboard-multi-agent.png)
@@ -58,7 +76,7 @@ Coming soon: [recodee.com](https://recodee.com) — live account health, usage,
58
76
  - **Protected-base safety** — `main`, `dev`, `master` are blocked by default; agents must go through PRs.
59
77
  - **Auto-merges agent configs into every worktree** — `oh-my-codex`, `oh-my-claudecode`, caveman mode, and OpenSpec all get applied automatically so every spawned agent starts tuned, not bare.
60
78
  - **Repair/doctor flow** — when drift happens (and it will), `gx doctor` gets you back to a clean state.
61
- - **Auto-finish** — when Codex exits a session, Guardex commits sandbox changes, syncs against the base, retries once if the base moved, and opens a PR.
79
+ - **Auto-finish** — when Codex exits a session, GitGuardex commits sandbox changes, syncs against the base, retries once if the base moved, and opens a PR.
62
80
 
63
81
  ---
64
82
 
@@ -70,7 +88,87 @@ cd /path/to/your/repo
70
88
  gx setup
71
89
  ```
72
90
 
73
- That's it. Setup installs hooks, scripts, templates, and scaffolds OpenSpec/caveman/OMX wiring. Aliases: `gx` (preferred), `gitguardex` (full), `guardex` (legacy).
91
+ That's it. Install and update via `@imdeadpool/guardex`. Setup installs the minimal repo footprint: managed hook shims, repo-local state, AGENTS wiring, OpenSpec/caveman/OMX scaffolding, and a small set of repo-local helper assets. Aliases: `gx` (preferred), `gitguardex` (full), `guardex` (legacy compatibility).
92
+
93
+ ---
94
+
95
+ ## How `AGENTS.md` and `CLAUDE.md` are handled
96
+
97
+ > [!IMPORTANT]
98
+ > **GitGuardex never overwrites your guidance.** Only the content between these markers is managed:
99
+ >
100
+ > ```text
101
+ > <!-- multiagent-safety:START -->
102
+ > ... managed content ...
103
+ > <!-- multiagent-safety:END -->
104
+ > ```
105
+ >
106
+ > Everything outside that block is preserved byte-for-byte.
107
+
108
+ ### Behavior at a glance
109
+
110
+ <div align="center">
111
+
112
+ | Your repo has&hellip; | `gx setup` / `gx doctor` does&hellip; |
113
+ | :--- | :--- |
114
+ | `AGENTS.md` **with** markers | Refreshes **only** the managed block |
115
+ | `AGENTS.md` **without** markers | Appends the managed block to the end |
116
+ | No `AGENTS.md` | Creates it with the managed block |
117
+ | A root `CLAUDE.md` | Leaves it alone |
118
+
119
+ </div>
120
+
121
+ > [!NOTE]
122
+ > In this repo, `CLAUDE.md` is a symlink to `AGENTS.md`, so Claude reads the same contract. Optional Codex/Claude companion files are installed at the user level with `gx install-agent-skills`, not copied into each repo.
123
+
124
+ ### Decision flow
125
+
126
+ ```mermaid
127
+ flowchart TD
128
+ Start([gx setup / gx doctor])
129
+ Check{AGENTS.md<br/>exists?}
130
+ Markers{Markers<br/>present?}
131
+ Create[Create AGENTS.md<br/>with managed block]
132
+ Refresh[Refresh the<br/>managed block]
133
+ Append[Append managed block<br/>to end of file]
134
+ Done([Repo-owned text preserved])
135
+
136
+ Start --> Check
137
+ Check -- No --> Create
138
+ Check -- Yes --> Markers
139
+ Markers -- Yes --> Refresh
140
+ Markers -- No --> Append
141
+ Create --> Done
142
+ Refresh --> Done
143
+ Append --> Done
144
+
145
+ classDef entry fill:#0b76c5,stroke:#60a5fa,stroke-width:2px,color:#fff
146
+ classDef decide fill:#78350f,stroke:#fbbf24,stroke-width:2px,color:#fff
147
+ classDef action fill:#374151,stroke:#94a3b8,stroke-width:1.5px,color:#f1f5f9
148
+ classDef finish fill:#064e3b,stroke:#34d399,stroke-width:2px,color:#fff
149
+
150
+ class Start entry
151
+ class Check,Markers decide
152
+ class Create,Refresh,Append action
153
+ class Done finish
154
+ ```
155
+
156
+ ### What actually changes
157
+
158
+ ```diff
159
+ # AGENTS
160
+
161
+ Project-specific guidance before managed block.
162
+
163
+ <!-- multiagent-safety:START -->
164
+ - - old managed contract
165
+ + - current GitGuardex-managed contract
166
+ <!-- multiagent-safety:END -->
167
+
168
+ Trailing repo notes after managed block.
169
+ ```
170
+
171
+ Only lines **inside** the marker block change. Everything above and below is preserved exactly.
74
172
 
75
173
  ---
76
174
 
@@ -80,7 +178,7 @@ Before you branch, repair, or start agents, run plain `gx`. It gives you a one-s
80
178
 
81
179
  ![GitGuardex terminal status output](https://raw.githubusercontent.com/recodeee/gitguardex/main/docs/images/workflow-gx-terminal-status.svg)
82
180
 
83
- Use `gx setup` the first time you wire GitGuardex into a repo. It bootstraps the managed hooks, scripts, templates, and optional workspace/OpenSpec wiring. If the repo drifts later, use `gx doctor` as the repair path: it reapplies the managed safety files, verifies the setup, and on protected `main` it auto-sandboxes the repair so your visible base branch stays clean.
181
+ Use `gx setup` the first time you wire GitGuardex into a repo. It bootstraps the managed hook shims, repo-local state, and optional workspace/OpenSpec wiring. If the repo drifts later, use `gx doctor` as the repair path: it reapplies the managed safety files, verifies the setup, and on protected `main` it auto-sandboxes the repair so your visible base branch stays clean.
84
182
 
85
183
  ---
86
184
 
@@ -90,25 +188,30 @@ Per new agent task:
90
188
 
91
189
  ```sh
92
190
  # 1) Start isolated branch/worktree
93
- bash scripts/agent-branch-start.sh "task-name" "agent-name"
191
+ gx branch start "task-name" "agent-name"
94
192
 
95
193
  # 2) Claim the files you're going to touch
96
- python3 scripts/agent-file-locks.py claim \
194
+ gx locks claim \
97
195
  --branch "$(git rev-parse --abbrev-ref HEAD)" <file...>
98
196
 
99
197
  # 3) Implement + verify
100
198
  npm test
101
199
 
102
- # 4) Finish (commit + push + PR + merge)
103
- bash scripts/agent-branch-finish.sh \
200
+ # 4) Finish (commit + push + PR + merge + cleanup)
201
+ gx branch finish \
104
202
  --branch "$(git rev-parse --abbrev-ref HEAD)" \
105
- --base dev --via-pr --wait-for-merge
106
-
107
- # 5) Optional: cleanup after merge
108
- gx cleanup --branch "$(git rev-parse --abbrev-ref HEAD)"
203
+ --base main --via-pr --wait-for-merge --cleanup
109
204
  ```
110
205
 
111
- If you use `scripts/codex-agent.sh`, the finish flow runs automatically when the Codex session exits — it auto-commits, retries once after syncing if the base moved during the run, then pushes and opens the PR.
206
+ If you launch Codex through Guardex, the finish flow runs automatically when the Codex session exits — it auto-commits, retries once after syncing if the base moved during the run, then pushes and opens the PR.
207
+
208
+ GitGuardex normally prunes merged sandboxes for you as part of the finish flow. If you simply do not want a local sandbox/worktree anymore, remove that worktree directly; delete the branch too only if you are intentionally abandoning that lane:
209
+
210
+ ```sh
211
+ git worktree remove .omx/agent-worktrees/<worktree-name>
212
+ # Claude Code sandboxes live under .omc/agent-worktrees/<worktree-name>
213
+ git branch -D agent/<role>/<task> # optional, only if you are discarding the lane
214
+ ```
112
215
 
113
216
  Running Codex across several existing worktrees (e.g. from VS Code Source Control)? Finalize everything ready at once:
114
217
 
@@ -132,10 +235,18 @@ Codex sessions default to `.omx/agent-worktrees/`. Claude Code sessions default
132
235
 
133
236
  ### How It Works In VS Code
134
237
 
135
- This is the real Source Control shape Guardex is aiming for: isolated agent branches, clear OpenSpec artifacts, and no pile-up on one shared checkout.
238
+ This is the real Source Control shape GitGuardex is aiming for: isolated agent branches, clear OpenSpec artifacts, and no pile-up on one shared checkout.
136
239
 
137
240
  ![Guarded VS Code Source Control example](https://raw.githubusercontent.com/recodeee/gitguardex/main/docs/images/workflow-source-control-grouped.png)
138
241
 
242
+ To install the real companion into local VS Code from a GitGuardex-wired repo:
243
+
244
+ ```sh
245
+ node scripts/install-vscode-active-agents-extension.js
246
+ ```
247
+
248
+ It adds an `Active Agents` view to the Source Control container, groups each live repo into `ACTIVE AGENTS` and `CHANGES` sections, splits `ACTIVE AGENTS` into `WORKING NOW` and `THINKING` when both states are present, reads `.omx/state/active-sessions/*.json`, derives `thinking` versus `working` from each live sandbox worktree, and surfaces a working-count summary in the repo/header affordances. Reload the VS Code window after install.
249
+
139
250
  ---
140
251
 
141
252
  ## Commands
@@ -272,7 +383,7 @@ A few things worth knowing up front:
272
383
  - Direct commits/pushes to protected branches are **blocked** by default. Agents must use the `agent/*` + PR flow.
273
384
  - **Exception:** VS Code Source Control commits are allowed on protected branches that exist only locally (no upstream, no remote branch).
274
385
  - On protected `main`, `gx doctor` auto-runs in a sandbox agent branch/worktree so it can't touch your real main.
275
- - In-place agent branching is disabled. `scripts/agent-branch-start.sh` always creates a separate worktree so your visible local/base branch never changes.
386
+ - In-place agent branching is disabled. `gx branch start` always creates a separate worktree so your visible local/base branch never changes.
276
387
  - Fresh sandbox branches start with no git upstream. Guardex records the protected base in `branch.<name>.guardexBase`, and the first `git push -u` publishes the real upstream.
277
388
  - Interactive self-update prompt defaults to **No** (`[y/N]`).
278
389
 
@@ -301,7 +412,7 @@ GitGuardex is designed to work alongside these. All optional — but if you're r
301
412
 
302
413
  ### oh-my-codex — Codex config + skills framework
303
414
 
304
- Loads skills, slash commands, and session defaults into Codex. Guardex merges `oh-my-codex` into every agent worktree automatically, so every spawned agent starts with the same tuned config instead of vanilla Codex.
415
+ Loads skills, slash commands, and session defaults into Codex. GitGuardex merges `oh-my-codex` into every agent worktree automatically, so every spawned agent starts with the same tuned config instead of vanilla Codex.
305
416
 
306
417
  ```sh
307
418
  npm i -g oh-my-codex
@@ -312,7 +423,7 @@ Repo: <https://github.com/Yeachan-Heo/oh-my-codex>
312
423
 
313
424
  ### oh-my-claudecode — Claude Code equivalent
314
425
 
315
- Claude-side mirror of oh-my-codex. Same idea: skills, commands, and defaults loaded into every Claude Code session. Guardex merges it into worktrees alongside oh-my-codex so mixed Codex + Claude agent fleets behave consistently. For the npm CLI/runtime path, the published package name is `oh-my-claude-sisyphus`.
426
+ Claude-side mirror of oh-my-codex. Same idea: skills, commands, and defaults loaded into every Claude Code session. GitGuardex merges it into worktrees alongside oh-my-codex so mixed Codex + Claude agent fleets behave consistently. For the npm CLI/runtime path, the published package name is `oh-my-claude-sisyphus`.
316
427
 
317
428
  ```sh
318
429
  npm i -g oh-my-claude-sisyphus@latest
@@ -431,8 +542,9 @@ Expanded flow:
431
542
 
432
543
  ### OpenSpec in agent sub-branches
433
544
 
434
- - `scripts/codex-agent.sh` enforces OpenSpec workspaces before launching Codex.
435
- - `scripts/agent-branch-start.sh` can scaffold both `openspec/changes/<slug>/` and `openspec/plan/<slug>/` when `GUARDEX_OPENSPEC_AUTO_INIT=true`.
545
+ - The Guardex Codex launcher enforces OpenSpec workspaces before launching Codex.
546
+ - `gx branch start` can scaffold both `openspec/changes/<slug>/` and `openspec/plan/<slug>/` when `GUARDEX_OPENSPEC_AUTO_INIT=true`.
547
+ - The collaboration section in `tasks.md` is there for real cleanup handoffs too. If the first Codex/Claude session finishes the implementation work but hits a usage limit before `agent-branch-finish --cleanup`, hand the same sandbox to another agent, let that agent finish cleanup, and record the join/handoff in the change task.
436
548
 
437
549
  Environment variables:
438
550
 
@@ -448,25 +560,29 @@ Environment variables:
448
560
  ## Files installed by setup
449
561
 
450
562
  ```text
451
- scripts/agent-branch-start.sh
452
- scripts/agent-branch-finish.sh
453
- scripts/codex-agent.sh
454
- scripts/review-bot-watch.sh
455
- scripts/agent-worktree-prune.sh
456
- scripts/agent-file-locks.py
457
- scripts/install-agent-git-hooks.sh
458
- scripts/openspec/init-plan-workspace.sh
459
- .githooks/pre-commit
460
- .githooks/pre-push
461
- .codex/skills/gitguardex/SKILL.md
462
- .claude/commands/gitguardex.md
563
+ AGENTS.md # managed multi-agent block appended/refreshed in place
564
+ .githooks/pre-commit # shim -> gx hook run pre-commit
565
+ .githooks/pre-push # shim -> gx hook run pre-push
566
+ .githooks/post-merge # shim -> gx hook run post-merge
567
+ .githooks/post-checkout # shim -> gx hook run post-checkout
568
+ scripts/guardex-env.sh # repo toggle + hook/helper env bridge
569
+ scripts/guardex-docker-loader.sh # compose env/loader helper
570
+ scripts/agent-session-state.js # active-session state helper
571
+ scripts/install-vscode-active-agents-extension.js
572
+ .omc/agent-worktrees # Claude sandbox root
573
+ .omx/agent-worktrees # Codex sandbox root
574
+ .omx/state/agent-file-locks.json # file-lock registry
463
575
  .github/pull.yml.example
464
576
  .github/workflows/cr.yml
465
- .omc/agent-worktrees
466
- .omx/state/agent-file-locks.json
577
+ vscode/guardex-active-agents/package.json
578
+ vscode/guardex-active-agents/extension.js
579
+ vscode/guardex-active-agents/session-schema.js
580
+ vscode/guardex-active-agents/README.md
467
581
  ```
468
582
 
469
- If `package.json` exists, setup also adds `agent:*` helper scripts.
583
+ Legacy compatibility note: older repos may still contain repo-local workflow scripts under `scripts/`. Direct `gx branch ...`, `gx locks ...`, `gx finish`, `gx cleanup`, `gx merge`, and `gx migrate` do not require them. `gx migrate` removes those leftover workflow shims by default. The CLI still honors repo-local `scripts/review-bot-watch.sh` and `scripts/codex-agent.sh` when they are already present so older repos can keep working during migration.
584
+
585
+ Optional Codex/Claude user-level companions still install with `gx install-agent-skills`; they are not copied into each repo.
470
586
 
471
587
  ---
472
588
 
@@ -497,7 +613,7 @@ gh workflow run sync-frontend-mirror.yml
497
613
 
498
614
  Being honest about where this still has issues:
499
615
 
500
- - **Usage limit mid-task.** When an agent hits its Codex/Claude usage limit partway through, the cleanup flow currently has to be handed to a different agent. It works, but the handoff is uglier than I'd like.
616
+ - **Usage limit mid-task.** When an agent hits its Codex/Claude usage limit partway through, another agent may need to take over the same sandbox and run the remaining finish/cleanup steps. The OpenSpec collaboration checklist is there to capture that handoff, but it is still uglier than I'd like.
501
617
  - **Conflict-stuck probes.** Fixed in v7.0.2 — earlier versions could leak `__source-probe-*` worktrees when the sync-guard rebase hit conflicts. If you're on an older release, `gx cleanup` sweeps these.
502
618
  - **Windows.** Most of the hook surface assumes a POSIX shell. Use WSL or symlink-enabled git if you're on Windows.
503
619
 
@@ -529,11 +645,29 @@ npm pack --dry-run
529
645
  <details>
530
646
  <summary><strong>v7.x</strong></summary>
531
647
 
648
+ ### v7.0.19
649
+ - `gx setup` and `gx doctor` now accept targeted managed-file recovery after `--force`, so `gx doctor --force scripts/review-bot-watch.sh` repairs the named managed file instead of failing on an unknown argument.
650
+ - Managed-file conflict output now teaches both recovery forms directly: `--force <managed-path>` for one file and plain `--force` for whole-surface rewrites.
651
+ - GitGuardex now keeps small-task routing caveman-only by default and makes working VS Code agent lanes easier to spot at a glance while keeping the CLI-owned install-surface rollout intact.
652
+ - Bumped the release from `7.0.18` → `7.0.19` so the shipped setup/doctor recovery and UX refinements land on a fresh publishable npm version.
653
+
654
+ ### v7.0.18
655
+ - GitGuardex now keeps the install workflow in `gx` itself: `gx branch ...`, `gx locks ...`, `gx worktree prune`, `gx migrate`, and user-level agent-skill install now own the agent lifecycle instead of teaching pasted repo scripts as the primary surface.
656
+ - Fresh installs switch repo hooks to tiny `gx hook run ...` shims, stop copying repo-local workflow implementations and repo-local skills, and stop injecting Guardex-managed `agent:*` package scripts into consumer repos.
657
+ - `gx migrate` can move older repos onto the smaller CLI-owned install surface while preserving the managed AGENTS block, lock registry state, hook shims, required gitignore entries, and the repo-local helper assets that still carry local state.
658
+ - Bumped the release from `7.0.17` → `7.0.18` so the shipped CLI-owned install-surface changes land on a fresh publishable npm version.
659
+
660
+ ### v7.0.17
661
+ - Restored the published npm package name to `@imdeadpool/guardex` after the `@imdeadpool/gitguardex` rename only changed the package identity locally and could not rename the existing npm registry entry.
662
+ - README/install/tutorial/self-update surfaces now point back at `@imdeadpool/guardex` while keeping GitGuardex as the product/repo brand and `gitguardex` as the long-form command.
663
+ - Bumped the release from `7.0.16` → `7.0.17` because `@imdeadpool/guardex@7.0.16` is already published on npm.
664
+
532
665
  ### v7.0.16
666
+ - GitGuardex now publishes under the matching npm package name `@imdeadpool/gitguardex`, and install/help/docs surfaces point at the renamed package instead of the older `@imdeadpool/guardex` scope.
533
667
  - `gx doctor` now keeps nested repo repair runs visibly progressing, and overlapping integration work stays off the protected base branch instead of trying to merge back on `main`.
534
668
  - Cleanup and finish flows are less brittle: `codex-agent` no longer waits on PRs that can never exist, and prune cleanup now walks both managed worktree roots so stale sandboxes get removed consistently.
535
- - Mirror-sync diagnostics are quieter: when the mirror PAT is unset, Guardex now skips the sync path instead of marking the run red, and shared `ralplan` lanes stay easier to identify during handoff/debugging.
536
- - Bumped `@imdeadpool/guardex` from `7.0.15` → `7.0.16` after npm rejected a republish over the already-published `7.0.15`.
669
+ - Mirror-sync diagnostics are quieter: when the mirror PAT is unset, GitGuardex now skips the sync path instead of marking the run red, and shared `ralplan` lanes stay easier to identify during handoff/debugging.
670
+ - Bumped the release from `7.0.15` → `7.0.16` after npm rejected a republish of `7.0.15`.
537
671
 
538
672
  ### v7.0.15
539
673
  - `gx doctor` no longer blocks recursive nested protected-repo repairs on child PR merge waits; nested sandboxes now force `--no-wait-for-merge` so the parent repair loop can continue.
@@ -546,7 +680,7 @@ npm pack --dry-run
546
680
 
547
681
  ### v7.0.13
548
682
  - `gx status` and `gx setup` now present the Claude companion as `oh-my-claudecode` while still installing the published npm package `oh-my-claude-sisyphus`.
549
- - When that dependency is inactive or the user declines the optional install, Guardex now prints the upstream repo URL so the missing dependency is explicit instead of hidden behind the npm package name.
683
+ - When that dependency is inactive or the user declines the optional install, GitGuardex now prints the upstream repo URL so the missing dependency is explicit instead of hidden behind the npm package name.
550
684
  - Bumped `@imdeadpool/guardex` from `7.0.12` → `7.0.13` after npm rejected a republish over the already-published `7.0.12`.
551
685
 
552
686
  ### v7.0.12
@@ -604,8 +738,8 @@ npm pack --dry-run
604
738
  - **Breaking (soft).** Consolidated 17 commands into 12 visible commands with flag-based subcommands. Removed names still work but print a deprecation notice; will be removed in v8.
605
739
  - **Token-usage improvements.** Trimmed auto-installed agent templates that live in every consumer repo and get loaded into every session:
606
740
  - `templates/AGENTS.multiagent-safety.md`: 6990 B → 1615 B (−77%)
607
- - `templates/codex/skills/guardex/SKILL.md`: 2732 B → 1086 B (−60%)
608
- - `templates/claude/commands/guardex.md`: 472 B → 357 B (−24%)
741
+ - `templates/codex/skills/gitguardex/SKILL.md`: 2732 B → 1086 B (−60%)
742
+ - `templates/claude/commands/gitguardex.md`: 472 B → 357 B (−24%)
609
743
  - Total: 10194 B → 3058 B per consumer repo (−70%, ~1.5k fewer tokens per agent session).
610
744
  - New `gx prompt` command replaces three prompt-emitting commands.
611
745
  - New flag surface on `gx setup`: `--install-only`, `--repair`.
@@ -646,7 +780,7 @@ Version bumps for npm publish continuity plus incremental fixes: doctor arg-pars
646
780
  - Allows tightly guarded Codex-only commits for `AGENTS.md` / `.gitignore` on protected branches.
647
781
 
648
782
  ### v5.0.0
649
- - Rebranded CLI to **GuardeX** with `gx`-first command UX.
783
+ - Rebranded CLI to **GitGuardex** with `gx`-first command UX.
650
784
  - Published under scoped package name `@imdeadpool/guardex`.
651
785
  - Enforced repeatable per-message agent branch lifecycle in setup/init flows.
652
786
  - Added codex-auth-aware sandbox branch naming support.