@imdeadpool/guardex 7.0.4 → 7.0.5
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 +5 -0
- package/bin/multiagent-safety.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -373,6 +373,11 @@ npm pack --dry-run
|
|
|
373
373
|
|
|
374
374
|
## Release notes
|
|
375
375
|
|
|
376
|
+
### v7.0.5
|
|
377
|
+
|
|
378
|
+
- **Added: `oh-my-claude` to `gx status` global-toolchain check.** The Claude-side mirror of `oh-my-codex` is now reported alongside the existing services (`oh-my-codex`, `@fission-ai/openspec`, `@imdeadpool/codex-account-switcher`, `gh`). Users who have not yet installed it will see a clear "inactive" line instead of silent omission, matching the existing codex detection contract.
|
|
379
|
+
- **Added: `.omc/` to the managed `.gitignore` block.** `gx setup` / `gx doctor` write a `.omc/` entry next to `.omx/` so Claude-specific runtime state (notepad, worktrees landing there in a follow-up) stays out of commits by default, parity with the existing `.omx/` treatment.
|
|
380
|
+
|
|
376
381
|
### v7.0.4
|
|
377
382
|
|
|
378
383
|
- **Fixed: publish collision on npm.** Advanced the package metadata from `7.0.3` to `7.0.4` so `npm publish` no longer targets an already published version.
|
package/bin/multiagent-safety.js
CHANGED
|
@@ -13,6 +13,7 @@ const LEGACY_NAMES = ['guardex', 'multiagent-safety'];
|
|
|
13
13
|
const OPENSPEC_PACKAGE = '@fission-ai/openspec';
|
|
14
14
|
const GLOBAL_TOOLCHAIN_PACKAGES = [
|
|
15
15
|
'oh-my-codex',
|
|
16
|
+
'oh-my-claude',
|
|
16
17
|
OPENSPEC_PACKAGE,
|
|
17
18
|
'@imdeadpool/codex-account-switcher',
|
|
18
19
|
];
|
|
@@ -122,6 +123,7 @@ const GITIGNORE_MARKER_START = '# multiagent-safety:START';
|
|
|
122
123
|
const GITIGNORE_MARKER_END = '# multiagent-safety:END';
|
|
123
124
|
const MANAGED_GITIGNORE_PATHS = [
|
|
124
125
|
'.omx/',
|
|
126
|
+
'.omc/',
|
|
125
127
|
'scripts/agent-branch-start.sh',
|
|
126
128
|
'scripts/agent-branch-finish.sh',
|
|
127
129
|
'scripts/codex-agent.sh',
|