oh-my-customcodex 0.5.2 → 0.5.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/rules/MUST-completion-verification.md +30 -0
- package/templates/.claude/rules/MUST-sync-verification.md +15 -1
- package/templates/guides/claude-code/15-version-compatibility.md +56 -0
- package/templates/manifest.json +2 -2
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -22,6 +22,36 @@ Before declaring any task `[Done]`, verify completion against task-type-specific
|
|
|
22
22
|
|
|
23
23
|
Before [Done]: (1) Verify ACTUAL outcome not just attempt — "ran command" ≠ "succeeded". (2) Check task-type criteria above. (3) No unchecked items. (4) Would bet $100 it's complete.
|
|
24
24
|
|
|
25
|
+
## Diagnostic Hypothesis Verification
|
|
26
|
+
|
|
27
|
+
When a failure diagnosis would cause a permanent workflow, rule, template, or release-process change, the diagnosis must be treated as a hypothesis until it is directly verified.
|
|
28
|
+
|
|
29
|
+
Required steps:
|
|
30
|
+
|
|
31
|
+
1. Capture the concrete symptom and the proposed root cause separately.
|
|
32
|
+
2. Gather direct evidence for the root cause from the authoritative source: command output, CI logs, registry response, source file, or API result.
|
|
33
|
+
3. Test or falsify at least one plausible alternative when the change affects shared release or verification infrastructure.
|
|
34
|
+
4. Record the verified cause in the commit, issue comment, or release note before merging the permanent change.
|
|
35
|
+
|
|
36
|
+
Examples:
|
|
37
|
+
|
|
38
|
+
| Hypothesis | Required evidence before changing shared workflow |
|
|
39
|
+
|------------|---------------------------------------------------|
|
|
40
|
+
| "npm publish failed because provenance is incompatible" | Registry error details showing provenance rejection, not just an initial `E403` |
|
|
41
|
+
| "CI cannot find a file because it is generated locally" | Clean checkout result proving the file is untracked or absent |
|
|
42
|
+
| "A test is flaky enough to skip" | Repeated-run evidence plus a tracked fix issue; skip alone is not completion |
|
|
43
|
+
|
|
44
|
+
## Test-Skip Is Not Completion
|
|
45
|
+
|
|
46
|
+
Skipping tests, lowering coverage thresholds, narrowing the test command, or marking suites as TODO may be a temporary containment step, but it never satisfies completion by itself.
|
|
47
|
+
|
|
48
|
+
Before a task can be declared done after a test skip or threshold reduction:
|
|
49
|
+
|
|
50
|
+
1. The underlying failure must have a linked issue, owner, and reproduction command.
|
|
51
|
+
2. The skipped scope must be named precisely, not hidden behind a broad suite skip.
|
|
52
|
+
3. The release or PR summary must state that verification is reduced.
|
|
53
|
+
4. A follow-up must restore the test or remove the threshold reduction before the related work is considered fully complete.
|
|
54
|
+
|
|
25
55
|
## Optional: Quantitative Evidence
|
|
26
56
|
|
|
27
57
|
For agent, skill, or workflow changes, completion evidence MAY include `agent-eval-framework` metrics:
|
|
@@ -35,10 +35,24 @@ Also run: mgr-claude-code-bible:verify (official spec compliance)
|
|
|
35
35
|
| Missing pages | Source entities without wiki pages → run `/omcustomcodex:wiki` |
|
|
36
36
|
| Stale pages | Source modification date newer than wiki `updated` field → run `/omcustomcodex:wiki ingest <path>` |
|
|
37
37
|
| Broken cross-refs | Wiki links pointing to non-existent pages → run `/omcustomcodex:wiki lint` |
|
|
38
|
-
| index.
|
|
38
|
+
| wiki/index.yaml accuracy | Wiki index page count and indexed file entries match actual page files |
|
|
39
39
|
|
|
40
40
|
Wiki verification is also enforced by CI (`.github/workflows/wiki-sync.yml`).
|
|
41
41
|
|
|
42
|
+
### Structural Migration Verification
|
|
43
|
+
|
|
44
|
+
Directory restructuring, template flattening, branch-strategy changes, generated-file relocation, and package-surface moves require a clean-checkout migration audit before they are considered complete.
|
|
45
|
+
|
|
46
|
+
Required checks:
|
|
47
|
+
|
|
48
|
+
1. Run the relevant verification from a clean checkout or isolated worktree, not only from a developer tree with untracked files.
|
|
49
|
+
2. Confirm old paths are no longer referenced by CI, docs validators, template validators, install/init output, and release workflows.
|
|
50
|
+
3. Confirm new paths are tracked by git and present in packaged templates or generated output where users will rely on them.
|
|
51
|
+
4. Verify allowlists, `.gitignore`, and template sync checks do not hide missing files.
|
|
52
|
+
5. Add or update regression tests that fail on the old path assumption.
|
|
53
|
+
|
|
54
|
+
This section is specifically intended to catch migrations where local untracked files or stale CI path references make a release appear healthy while a clean checkout fails.
|
|
55
|
+
|
|
42
56
|
### Phase 4: Fix all discovered issues
|
|
43
57
|
|
|
44
58
|
### Phase 5: Commit via mgr-gitnerd
|
|
@@ -2,6 +2,62 @@
|
|
|
2
2
|
|
|
3
3
|
This guide records Claude Code release-note impact that affects the Claude compatibility template. The Codex-native runtime still uses `.codex/**` and OMX as the primary surface.
|
|
4
4
|
|
|
5
|
+
## v2.1.150
|
|
6
|
+
|
|
7
|
+
Published: 2026-05-23.
|
|
8
|
+
|
|
9
|
+
Source: upstream oh-my-customcode #1220, Codex port #1380.
|
|
10
|
+
|
|
11
|
+
| Change | Impact on oh-my-customcodex | Action |
|
|
12
|
+
|--------|------------------------------|--------|
|
|
13
|
+
| Internal infrastructure improvements only | No user-facing Claude compatibility behavior changed for templates, agents, skills, hooks, or rules. | No package change. Record the no-op review so release-monitor ports can be closed with evidence instead of staying open. |
|
|
14
|
+
|
|
15
|
+
## v2.1.149
|
|
16
|
+
|
|
17
|
+
Published: 2026-05-22.
|
|
18
|
+
|
|
19
|
+
Source: upstream oh-my-customcode #1219, Codex port #1379.
|
|
20
|
+
|
|
21
|
+
| Change | Impact on oh-my-customcodex | Action |
|
|
22
|
+
|--------|------------------------------|--------|
|
|
23
|
+
| `/usage` now breaks limit usage down by skills, subagents, plugins, and MCP servers | Useful diagnostic vocabulary for Claude compatibility sessions; Codex-native reporting still comes from OMX status, trace, and local CLI surfaces. | No runtime change. Keep cost and status reports source-specific instead of treating Claude `/usage` output as Codex evidence. |
|
|
24
|
+
| `/diff` detail view supports keyboard scrolling and Markdown renders GFM task-list checkboxes | Improves Claude terminal UX for reviews and release notes. | No template change. Continue writing normal Markdown task lists; Claude now renders them more faithfully. |
|
|
25
|
+
| Enterprise `allowAllClaudeAiMcps` can load claude.ai cloud MCP connectors next to managed MCP config | Only affects managed Claude enterprise workspaces. | Document as Claude-template compatibility only; Codex MCP routing remains configured through Codex/OMX config. |
|
|
26
|
+
| PowerShell `cd` aliases, wildcard prefix rules, and stale directory-variable tracking were hardened | Permission-analysis fixes reduce Claude compatibility sandbox escapes. | No Codex shell-policy change. Do not copy PowerShell-specific assumptions into Codex Bash approvals. |
|
|
27
|
+
| Git worktree sandbox allowlists now cover only the shared `.git` directory, not the whole main repo | Aligns with this repo's preference for isolated worktrees during auto-dev sweeps. | Keep release and issue-sweep work in clean worktrees and verify dirty-tree boundaries explicitly. |
|
|
28
|
+
| Bash `find` no longer exhausts macOS file/vnode tables on large trees | Large repository scans are safer for Claude compatibility sessions. | Still prefer `rg`/targeted `find` in Codex sessions and keep scans bounded. |
|
|
29
|
+
| `/ultraplan` and remote sessions no longer fail when there are no real uncommitted changes | Reduces false blockers for clean-tree planning. | No package change; continue verifying `git status` before declaring clean boundaries. |
|
|
30
|
+
| `otelHeadersHelper` reports path-with-spaces failures in `/doctor` and debug logs | Helps diagnose local telemetry setup drift. | Keep hook and doctor guidance path-safe, especially under workspace paths that may contain spaces. |
|
|
31
|
+
|
|
32
|
+
## v2.1.148
|
|
33
|
+
|
|
34
|
+
Published: 2026-05-22.
|
|
35
|
+
|
|
36
|
+
Source: upstream oh-my-customcode #1218, Codex port #1378.
|
|
37
|
+
|
|
38
|
+
| Change | Impact on oh-my-customcodex | Action |
|
|
39
|
+
|--------|------------------------------|--------|
|
|
40
|
+
| Fixed a v2.1.147 regression where the Bash tool returned exit code 127 for every command for some users | Claude compatibility sessions on affected versions may have produced false command-not-found failures. | Treat suspicious all-command `127` reports from Claude v2.1.147 as environment/version evidence to verify before changing repo code. No Codex runtime change. |
|
|
41
|
+
|
|
42
|
+
## v2.1.147
|
|
43
|
+
|
|
44
|
+
Published: 2026-05-21.
|
|
45
|
+
|
|
46
|
+
Source: upstream oh-my-customcode #1216 and #1222, Codex ports #1376 and #1381.
|
|
47
|
+
|
|
48
|
+
| Change | Impact on oh-my-customcodex | Action |
|
|
49
|
+
|--------|------------------------------|--------|
|
|
50
|
+
| Added the `Workflow` tool for deterministic multi-agent orchestration, gated by `CLAUDE_CODE_WORKFLOWS=1` | This overlaps conceptually with OMX `$pipeline`, but it is a Claude-native tool surface. | Do not replace Codex/OMX pipeline routing with Claude Workflow. Mention the env gate when documenting Claude-template sessions. |
|
|
51
|
+
| Pinned background sessions stay alive when idle, restart in place for updates, and are shed after non-pinned sessions under memory pressure | Claude compatibility background agents are more durable. | Keep Codex-native child-agent and OMX session lifecycle separate; pinned Claude sessions are not proof of active OMX work. |
|
|
52
|
+
| `/simplify` was renamed to `/code-review`; it now reports correctness bugs at chosen effort levels and the old cleanup-and-fix behavior was removed | Potential naming confusion with this package's `dev-review` and `dev-refactor` skills. | Keep package commands as `dev-review` for best-practice review and `dev-refactor` for cleanup/refactor. Do not add a dead `simplify` route. |
|
|
53
|
+
| REPL and Workflow sandboxes were hardened against prototype-pollution and thenable-based escapes | Security hardening applies to Claude runtime internals. | No package code change; keep security reviews focused on repo-owned hooks, scripts, and generated templates. |
|
|
54
|
+
| Auto-updater retries transient network failures and reports specific error categories plus current version on update failure | Helps distinguish transient update problems from package regressions. | For publish/update triage, verify registry token, workflow logs, and current version before making permanent workflow edits. |
|
|
55
|
+
| Large diff rendering and prompt-history duplicate handling improved | UX-only for Claude compatibility sessions. | No template change. |
|
|
56
|
+
| Enterprise login restrictions are enforced against third-party-provider and API-key sessions | Managed Claude environments behave more consistently. | No Codex auth change. Treat enterprise login policy as external environment state. |
|
|
57
|
+
| Headless/SDK unknown slash commands now show an error instead of silently doing nothing | Broken generated commands should be easier to detect. | Keep template command names explicit and test packaged command references. |
|
|
58
|
+
| Plugin agents declaring multiple `Agent(...)` tool types no longer drop all but the last one | Compatibility templates with multi-agent tool declarations are safer. | Continue using canonical, explicit agent names in package docs and frontmatter. |
|
|
59
|
+
| Hook `if` conditions such as `PowerShell(git push*)` were fixed to match as intended | Claude hook compatibility improved. | Keep Codex hook routing Bash-first unless a hook is explicitly PowerShell-specific. |
|
|
60
|
+
|
|
5
61
|
## v2.1.146
|
|
6
62
|
|
|
7
63
|
Published: 2026-05-21.
|
package/templates/manifest.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.5.
|
|
2
|
+
"version": "0.5.3",
|
|
3
3
|
"requiresCC": ">=2.1.121",
|
|
4
4
|
"claudeCode": {
|
|
5
5
|
"minimumVersion": "2.1.121",
|
|
6
6
|
"protectedPathBypassVersion": "2.1.126"
|
|
7
7
|
},
|
|
8
|
-
"lastUpdated": "2026-05-
|
|
8
|
+
"lastUpdated": "2026-05-24T00:00:00.000Z",
|
|
9
9
|
"components": [
|
|
10
10
|
{
|
|
11
11
|
"name": "rules",
|