oh-my-customcodex 0.5.21 → 1.0.0
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 -4
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/rules/MUST-agent-design.md +2 -1
- package/templates/.claude/rules/MUST-agent-teams.md +4 -0
- package/templates/.claude/rules/MUST-completion-verification.md +12 -0
- package/templates/.claude/rules/MUST-intent-transparency.md +13 -0
- package/templates/.claude/rules/MUST-safety.md +1 -1
- package/templates/.claude/skills/fsd/SKILL.md +137 -0
- package/templates/.claude/skills/help/SKILL.md +2 -0
- package/templates/.claude/skills/lists/SKILL.md +2 -0
- package/templates/.claude/skills/status/SKILL.md +1 -1
- package/templates/guides/claude-code/15-version-compatibility.md +13 -0
- package/templates/guides/openai-codex/01-version-compatibility.md +13 -0
- package/templates/manifest.json +3 -3
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
**[한국어 문서 (Korean)](./README_ko.md)**
|
|
15
15
|
|
|
16
|
-
50 agents.
|
|
16
|
+
50 agents. 122 skills. 23 rules. One command.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install -g oh-my-customcodex && cd your-project && omcustomcodex init
|
|
@@ -135,13 +135,13 @@ Each agent declares its tools, model, memory scope, and limitations in YAML fron
|
|
|
135
135
|
|
|
136
136
|
---
|
|
137
137
|
|
|
138
|
-
### Skills (
|
|
138
|
+
### Skills (122)
|
|
139
139
|
|
|
140
140
|
| Category | Count | Includes |
|
|
141
141
|
|----------|-------|----------|
|
|
142
142
|
| Best Practices | 24 | Go, Python, TypeScript, Kotlin, Rust, React, FastAPI, Spring Boot, Django, Flutter, Docker, AWS, Postgres, Redis, Kafka, dbt, Spark, Snowflake, Airflow, pipeline-architecture-patterns, alembic, and more |
|
|
143
143
|
| Routing | 4 | secretary, dev-lead, de-lead, qa-lead |
|
|
144
|
-
| Workflow |
|
|
144
|
+
| Workflow | 14 | structured-dev-cycle, deep-plan, research, evaluator-optimizer, dag-orchestration, worker-reviewer-pipeline, reasoning-sandwich, pipeline, fsd, and more |
|
|
145
145
|
| Development | 10 | dev-review, dev-refactor, analysis, create-agent, intent-detection, web-design-guidelines, omcodex:takeover, skill-extractor, pre-generation-arch-check, idea |
|
|
146
146
|
| Operations | 10 | update-docs, audit-agents, sauron-watch, monitoring-setup, token-efficiency-audit, fix-refs, release-notes, and more |
|
|
147
147
|
| Memory | 3 | memory-save, memory-recall, memory-management |
|
|
@@ -172,6 +172,7 @@ All commands are invoked inside the oh-my-customcodex GPT Codex + OMX session.
|
|
|
172
172
|
| `/pre-generation-arch-check` | Check architecture risks before implementation |
|
|
173
173
|
| `/adversarial-review` | Attacker-mindset security code review |
|
|
174
174
|
| `/omcustomcodex:goal` | Keep a concrete objective in view through planning, execution, and verification |
|
|
175
|
+
| `/omcustomcodex:fsd` | Full Self Driving release loop: repeat `/pipeline auto-dev` + `/homework` until eligible issues are exhausted |
|
|
175
176
|
| `/pipeline` | Execute YAML-defined pipelines |
|
|
176
177
|
| `/pipeline resume` | Resume a halted pipeline from last failure point |
|
|
177
178
|
|
|
@@ -288,7 +289,7 @@ your-project/
|
|
|
288
289
|
│ ├── contexts/ # 4 shared context files
|
|
289
290
|
│ └── ontology/ # Knowledge graph for RAG
|
|
290
291
|
├── .agents/
|
|
291
|
-
│ └── skills/ #
|
|
292
|
+
│ └── skills/ # 122 installed skill modules
|
|
292
293
|
└── guides/ # 52 reference documents
|
|
293
294
|
```
|
|
294
295
|
|
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@ tools: [Read, Write, ...] # Allowed tools
|
|
|
27
27
|
Extended context suffix: `[1m]` (e.g., `claude-opus-4-6[1m]`) — enables 1M token context window.
|
|
28
28
|
|
|
29
29
|
<!-- DETAIL: Fallback Models and Thinking Toggle (Claude Code v2.1.166+)
|
|
30
|
-
Claude compatibility settings can declare up to three `fallbackModel` entries tried in order when the primary Claude model is overloaded or unavailable. `--fallback-model` also applies to interactive Claude sessions. Treat this as platform availability failover, not Codex-native model routing or outcome-based escalation. Claude Code v2.1.166+ also supports disabling default thinking with `MAX_THINKING_TOKENS=0`, `--thinking disabled`, or the per-model thinking toggle. Codex-native agents continue to use the OMX model contract and `reasoning_effort` routing.
|
|
30
|
+
Claude compatibility settings can declare up to three `fallbackModel` entries tried in order when the primary Claude model is overloaded or unavailable. `--fallback-model` also applies to interactive Claude sessions. Treat this as platform availability failover, not Codex-native model routing or outcome-based escalation. Claude Code v2.1.166+ also supports disabling default thinking with `MAX_THINKING_TOKENS=0`, `--thinking disabled`, or the per-model thinking toggle. Claude Code v2.1.169+ adds `--safe-mode` / `CLAUDE_CODE_SAFE_MODE` to disable customizations for regression isolation, plus `disableBundledSkills` / `CLAUDE_CODE_DISABLE_BUNDLED_SKILLS` to hide bundled skills/workflows/slash commands when they conflict with project skills. Codex-native agents continue to use the OMX model contract and `reasoning_effort` routing.
|
|
31
31
|
-->
|
|
32
32
|
|
|
33
33
|
### Optional Frontmatter
|
|
@@ -87,6 +87,7 @@ This Codex port ships `.claude` compatibility templates. When updating those tem
|
|
|
87
87
|
- v2.1.162: `claude agents --json` includes waiting/blocker metadata and explicit `--tools Grep/Glob` behavior is fixed; compatibility prompts may use those fields when diagnosing stuck Claude sessions.
|
|
88
88
|
- v2.1.163: managed `requiredMinimumVersion`/`requiredMaximumVersion`, `/plugin list`, Stop/SubagentStop `hookSpecificOutput.additionalContext`, and skill command literal `\$` escaping are available. Hook/skill template changes should preserve these affordances.
|
|
89
89
|
- v2.1.165: bug-fix/reliability release; no local template change required beyond compatibility confirmation. v2.1.166: fallbackModel availability failover and thinking-disable controls are Claude compatibility settings, not Codex/OMX routing. v2.1.167/v2.1.168: bug-fix-only compatibility confirmation.
|
|
90
|
+
- v2.1.169: `--safe-mode` / `CLAUDE_CODE_SAFE_MODE` disables all customizations for Claude regression isolation; `disableBundledSkills` / `CLAUDE_CODE_DISABLE_BUNDLED_SKILLS` hides bundled skills/workflows/slash commands from the model. Keep distinct from advisory `skills:` frontmatter metadata.
|
|
90
91
|
- v2.1.170: Claude compatibility sessions gain access to the `fable` alias (`claude-fable-5`) and fix a VS Code integrated-terminal transcript persistence bug. Skills that rely on transcript replay (for example `homework`) should prefer v2.1.170+ in Claude-template sessions. No Codex runtime model-routing change.
|
|
91
92
|
-->
|
|
92
93
|
|
|
@@ -49,6 +49,10 @@ Do not confuse these mechanisms.
|
|
|
49
49
|
Claude Code v2.1.166+ no longer propagates user authority through cross-session relays: permission requests relayed from another session are refused, and auto mode blocks them. A relayed message from session A cannot grant session B permissions the user did not authorize in session B. This hardens `send_message` / peer relay against privilege escalation. Intra-session Agent Teams `SendMessage` is unaffected, but privileged actions still require authority in the receiving session.
|
|
50
50
|
-->
|
|
51
51
|
|
|
52
|
+
<!-- DETAIL: Claude Agent Session Ground Truth (Claude Code v2.1.169+)
|
|
53
|
+
Claude Code v2.1.169+ makes `claude agents --json` include blocked and just-dispatched background sessions, adds `--all` for completed sessions, and includes `id` plus `state`. In Claude-template Agent Teams compatibility checks, prefer `--all` + `state` as ground truth for blocked/running/completed instead of inferring completion from a member disappearing from the active list. Codex/OMX sessions should use their native runtime state plus deterministic repository evidence.
|
|
54
|
+
-->
|
|
55
|
+
|
|
52
56
|
## Self-Check Before Agent Tool
|
|
53
57
|
|
|
54
58
|
Quick rule: explicit user preference for plain subagents wins. Otherwise use Teams for 3+ agents, review cycles, shared state, complex debugging, dynamic creation, or multi-issue batches; use Agent Tool for 1-2 simple tasks, sequential scaffolding, or mechanical disjoint-file batches with explicit scopes.
|
|
@@ -78,6 +78,18 @@ When diagnosing pipeline or data state, verify the canonical store — the autho
|
|
|
78
78
|
|
|
79
79
|
A single path's failure does not prove the whole multi-path system is down.
|
|
80
80
|
|
|
81
|
+
## Config-Schema-Before-Edit
|
|
82
|
+
|
|
83
|
+
Before planning edits to configuration that participates in an override, precedence, inheritance, provider, endpoint, credential, or multi-key chain, read the full config schema and precedence chain first. Do not plan partial edits before understanding which fields override which.
|
|
84
|
+
|
|
85
|
+
This applies when a change touches interdependent fields such as provider + `base_url`, endpoint overrides, multi-key fallback, or layered defaults. A single independent field edit does not require a full-schema read.
|
|
86
|
+
|
|
87
|
+
| Anti-pattern | Required |
|
|
88
|
+
|--------------|----------|
|
|
89
|
+
| Plan a provider/endpoint switch as N commands without reading the override chain | Read schema and precedence → enumerate every touched field, including `base_url` → then plan |
|
|
90
|
+
|
|
91
|
+
Sibling discipline to Read-Before-Characterize: diagnosis must read evidence before labeling; config edits must read precedence before planning.
|
|
92
|
+
|
|
81
93
|
## Degraded-Output Re-Verification Gate
|
|
82
94
|
|
|
83
95
|
When tool output shows provider instability, buffering, truncation, duplicated chunks, `529`, timeout recovery, or `(no result)` while a permanent action is being considered, treat the current read as degraded. Do not characterize corruption, missing files, stale state, release failure, or data loss from that single degraded read.
|
|
@@ -73,6 +73,19 @@ R001-listed catastrophic git operations (`git reset --hard`, `git clean -fd`, `g
|
|
|
73
73
|
|
|
74
74
|
Boundary: this rule governs model behavior only. It cannot suppress Codex/Claude runtime auto-mode permission prompts. For genuine prompt suppression on a repeated destructive command, surface the scoped settings/permission-rule workaround for the specific command instead of re-asking the same high-level question.
|
|
75
75
|
|
|
76
|
+
## User-Provided Input Precedence
|
|
77
|
+
|
|
78
|
+
When the user explicitly provides new input (credentials, config values, IdP, API keys, endpoints), applying that new input takes precedence over idempotent "reuse existing" logic. After applying, verify the change took effect using only non-secret identifiers such as `client_id`, endpoint URL, key fingerprint/last-4, or a side-effect probe. Never echo secret values into the transcript.
|
|
79
|
+
|
|
80
|
+
| Anti-pattern | Required |
|
|
81
|
+
|--------------|----------|
|
|
82
|
+
| "An existing X is present → reuse it" when the user just supplied a new X | Apply the user-supplied X; reuse only when the user supplied nothing |
|
|
83
|
+
| User-supplied X equals the existing X | Treat as an idempotent no-op; do not re-provision |
|
|
84
|
+
| User supplies only a subset of fields | Apply supplied fields; reuse existing values only for unsupplied fields |
|
|
85
|
+
| Apply new credential, assume it took effect | Verify via non-secret identifier match or side-effect probe |
|
|
86
|
+
|
|
87
|
+
Cross-reference: R001 credential guardrails and R020 actual-outcome verification.
|
|
88
|
+
|
|
76
89
|
## Structured Question Failure Discipline
|
|
77
90
|
|
|
78
91
|
When a structured question surface (`AskUserQuestion`, `omx question`, or native structured input) is rejected, unavailable, or malformed, the orchestrator must not silently downgrade to a different workflow.
|
|
@@ -25,7 +25,7 @@ When the user has a standing "do not touch X" constraint and a safety classifier
|
|
|
25
25
|
|
|
26
26
|
### Infra-Diagnostic File Checks — Metadata, Not Contents
|
|
27
27
|
|
|
28
|
-
When diagnosing infrastructure or health issues, file checks must stay metadata-only: `ls -la` for existence, size, permissions, and mtime. Do not `cat .env`, inspect credential JSON keys, or read secret contents into the transcript just to confirm configuration exists.
|
|
28
|
+
When diagnosing infrastructure or health issues (502s, container state, env/config presence), file checks must stay metadata-only: `ls -la` for existence, size, permissions, and mtime. Do not `cat .env`, inspect credential JSON keys, parse secret-bearing files, or read secret contents into the transcript just to confirm configuration exists.
|
|
29
29
|
|
|
30
30
|
| Anti-pattern | Required |
|
|
31
31
|
|--------------|----------|
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: omcustomcodex:fsd
|
|
3
|
+
description: Full Self Driving — autonomous release loop that processes all auto-dev-eligible GitHub issues until none remain, by repeatedly running /pipeline auto-dev then /homework.
|
|
4
|
+
scope: harness
|
|
5
|
+
user-invocable: true
|
|
6
|
+
argument-hint: "[<max-releases>]"
|
|
7
|
+
version: 0.1.0
|
|
8
|
+
effort: high
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /omcustomcodex:fsd — Full Self Driving
|
|
12
|
+
|
|
13
|
+
Autonomous release loop. Equivalent to running:
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
/omcustomcodex:goal "모든 이슈가 처리될 때까지" /omcustomcodex:loop "/pipeline auto-dev -> /homework"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
This is a **thin alias / orchestrator skill**. It does not implement loop, issue-polling, release, or verification logic — it delegates entirely to existing skills.
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
/omcustomcodex:fsd # Run until all auto-dev-eligible issues are exhausted
|
|
25
|
+
/omcustomcodex:fsd 3 # Optional: cap at N releases (default: unlimited)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
No arguments are required. The default behavior runs until the auto-dev-eligible issue set is empty.
|
|
29
|
+
|
|
30
|
+
## What It Does
|
|
31
|
+
|
|
32
|
+
FSD expands into:
|
|
33
|
+
|
|
34
|
+
1. **`/omcustomcodex:goal` wrapper** — applies disciplined goal-to-execution workflow:
|
|
35
|
+
- Objective: "모든 이슈가 처리될 때까지"
|
|
36
|
+
- Delegates planning, gap detection, and R020 completion verification to the `goal` skill
|
|
37
|
+
2. **`/omcustomcodex:loop` recurrence** — self-paced loop, each iteration runs:
|
|
38
|
+
1. `/pipeline auto-dev` — full release pipeline for the next eligible issue or release unit
|
|
39
|
+
2. `/homework` — retrospective 찐빠 audit gate
|
|
40
|
+
|
|
41
|
+
### Loop Convergence
|
|
42
|
+
|
|
43
|
+
The loop converges naturally when the auto-dev-eligible issue set reaches 0. Issue eligibility follows `/pipeline auto-dev` label selection exactly:
|
|
44
|
+
|
|
45
|
+
- **Included**: `verify-ready` (preferred), unlabeled auto-dev candidates
|
|
46
|
+
- **Excluded**: `verify-done`, `needs-review`, `decision-needed` labels
|
|
47
|
+
|
|
48
|
+
Do NOT invent new label logic here — defer to the `pipeline` skill's auto-dev issue selection.
|
|
49
|
+
|
|
50
|
+
### Iteration Flow (per iteration)
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
[FSD Iteration N]
|
|
54
|
+
├── /pipeline auto-dev → one release (PR create → merge → npm publish → milestone close)
|
|
55
|
+
├── /homework → extract 찐빠, confirm gate (or --dry-run if requested)
|
|
56
|
+
└── Check: any eligible issues remain?
|
|
57
|
+
├── YES → next iteration
|
|
58
|
+
└── NO → [FSD Done] converged naturally
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Safety and Discipline
|
|
62
|
+
|
|
63
|
+
Each iteration operates under full project rules — no relaxation because FSD is autonomous:
|
|
64
|
+
|
|
65
|
+
| Rule | Applies |
|
|
66
|
+
|------|---------|
|
|
67
|
+
| R001 (safety) | Destructive ops still require explicit approval. Credential guardrails always active. |
|
|
68
|
+
| R009 (parallel) | Independent subtasks within each pipeline iteration run in parallel. |
|
|
69
|
+
| R010 (orchestration) | File modifications follow repo delegation/ownership rules. |
|
|
70
|
+
| R017 (sync verification) | Structural verification passes before any commit. |
|
|
71
|
+
| R020 (completion verification) | Each release verified via `npm view`, `gh release view`, closed issues before `[Done]`. |
|
|
72
|
+
|
|
73
|
+
`/homework` runs as a **retrospective gate** between iterations — findings go through `omcustomcodex:feedback`'s preview/confirmation gate. The loop does NOT skip homework because it is "automated". If homework requires user confirmation, the loop pauses and waits.
|
|
74
|
+
|
|
75
|
+
If a release operation triggers the safety classifier, the current iteration stops and surfaces the block before continuing.
|
|
76
|
+
|
|
77
|
+
## When to Use
|
|
78
|
+
|
|
79
|
+
| Scenario | Use FSD? |
|
|
80
|
+
|----------|----------|
|
|
81
|
+
| Multiple eligible issues ready to process autonomously | YES |
|
|
82
|
+
| Session where the user wants to "let it run" through the backlog | YES |
|
|
83
|
+
| Verifying the autonomous release loop pattern from session memory | YES |
|
|
84
|
+
| Single targeted issue fix | NO — use `/pipeline auto-dev` directly |
|
|
85
|
+
| Exploratory research / planning only | NO — use `/research` or `/deep-plan` |
|
|
86
|
+
| Only one issue and it needs human judgment | NO — use `/pipeline auto-dev` with manual oversight |
|
|
87
|
+
|
|
88
|
+
## When NOT to Use
|
|
89
|
+
|
|
90
|
+
- When issues require stakeholder approval or design decisions before implementation
|
|
91
|
+
- When the issue set includes `decision-needed` or `needs-review` items only
|
|
92
|
+
- When cost sensitivity is high and the issue backlog is large — inspect the eligible set first before running FSD
|
|
93
|
+
|
|
94
|
+
## Optional Release Cap
|
|
95
|
+
|
|
96
|
+
Pass a numeric argument to cap at N releases:
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
/omcustomcodex:fsd 3 # Process at most 3 releases this FSD run
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
The cap is advisory — the pipeline itself may stop earlier if the eligible set runs out before the cap is reached.
|
|
103
|
+
|
|
104
|
+
## Session 114 Precedent
|
|
105
|
+
|
|
106
|
+
This skill was extracted from the upstream manual pattern used in Session 114 (2026-06-09):
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
/goal "모든 이슈가 처리될 때까지" /loop "/pipeline auto-dev -> /homework"
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
The Codex port keeps the intent but uses `omcustomcodex:` namespaced goal/loop surfaces to avoid native runtime command collisions.
|
|
113
|
+
|
|
114
|
+
## Cross-References
|
|
115
|
+
|
|
116
|
+
| Skill / Rule | Role |
|
|
117
|
+
|--------------|------|
|
|
118
|
+
| `omcustomcodex:goal` | Disciplined goal-to-execution wrapper — objective parse, gap detection, R020 verification |
|
|
119
|
+
| `omcustomcodex:loop` | Session auto-continuation during background work |
|
|
120
|
+
| `pipeline` | `/pipeline auto-dev` — the core release pipeline per iteration |
|
|
121
|
+
| `homework` | Retrospective 찐빠 audit gate per iteration |
|
|
122
|
+
| R001 (safety) | Destructive ops require approval; credential guardrails |
|
|
123
|
+
| R009 (parallel execution) | Parallel subtasks within each pipeline iteration |
|
|
124
|
+
| R010 (orchestrator coordination) | File ownership and delegation discipline |
|
|
125
|
+
| R017 (sync verification) | Structural verification before commit/push |
|
|
126
|
+
| R020 (completion verification) | Actual outcome verified before declaring each release done |
|
|
127
|
+
|
|
128
|
+
## Design Notes
|
|
129
|
+
|
|
130
|
+
This skill is intentionally a **thin alias**. It does NOT duplicate issue polling, loop cadence, release steps, retrospective analysis, or completion verification. If the underlying skills evolve, FSD automatically benefits.
|
|
131
|
+
|
|
132
|
+
## Artifact Output
|
|
133
|
+
|
|
134
|
+
Artifacts from each iteration follow the constituent skills' conventions:
|
|
135
|
+
|
|
136
|
+
- Pipeline artifacts: `.codex/outputs/sessions/{YYYY-MM-DD}/pipeline-auto-dev-{HHmmss}.md`
|
|
137
|
+
- Homework artifacts: `.codex/outputs/sessions/{YYYY-MM-DD}/homework-{HHmmss}.md`
|
|
@@ -31,9 +31,11 @@ Quick Start:
|
|
|
31
31
|
status Show system status
|
|
32
32
|
help <command> Get help for a specific command
|
|
33
33
|
/omcustomcodex:goal <objective> Run a goal-to-execution workflow
|
|
34
|
+
/omcustomcodex:fsd [max] Run the autonomous full-backlog release loop
|
|
34
35
|
|
|
35
36
|
Common Commands:
|
|
36
37
|
/omcustomcodex:goal Keep an objective through planning, execution, and verification
|
|
38
|
+
/omcustomcodex:fsd Repeat /pipeline auto-dev + /homework until eligible issues are exhausted
|
|
37
39
|
/update-docs Sync documentation with project
|
|
38
40
|
/update-external Update external agents
|
|
39
41
|
/audit-agents Check agent dependencies
|
|
@@ -28,6 +28,7 @@ System:
|
|
|
28
28
|
status Show system status
|
|
29
29
|
help Show help information
|
|
30
30
|
/omcustomcodex:goal Run a goal-to-execution workflow
|
|
31
|
+
/omcustomcodex:fsd Run the autonomous full-backlog release loop
|
|
31
32
|
|
|
32
33
|
Manager:
|
|
33
34
|
/create-agent Create a new agent
|
|
@@ -57,6 +58,7 @@ System Commands:
|
|
|
57
58
|
│ status │ Show system status and health checks │
|
|
58
59
|
│ help │ Show help for commands and agents │
|
|
59
60
|
│ /omcustomcodex:goal │ Run a goal-to-execution workflow │
|
|
61
|
+
│ /omcustomcodex:fsd │ Run full-backlog auto-dev loop │
|
|
60
62
|
└─────────┴──────────────────────────────────────────────┘
|
|
61
63
|
|
|
62
64
|
Manager Commands:
|
|
@@ -122,7 +122,7 @@ Guides:
|
|
|
122
122
|
✓ docker, aws
|
|
123
123
|
|
|
124
124
|
Commands:
|
|
125
|
-
system: lists, status, help, omcustomcodex:goal
|
|
125
|
+
system: lists, status, help, omcustomcodex:goal, omcustomcodex:fsd
|
|
126
126
|
manager: create-agent, update-docs, update-external, audit-agents, fix-refs
|
|
127
127
|
dev: dev-review, dev-refactor
|
|
128
128
|
|
|
@@ -13,6 +13,19 @@ Source: upstream oh-my-customcode #1352/#1354, Codex port #1504.
|
|
|
13
13
|
| Claude Fable 5 is available through the `fable` alias (`claude-fable-5`) | Useful only for packaged Claude compatibility sessions needing mythos-class reasoning; Codex-native subagents continue to use the OMX model contract and `reasoning_effort`. | Document in R006 as Claude-compatibility metadata. Do not change Codex routing defaults. |
|
|
14
14
|
| VS Code integrated-terminal sessions save transcripts correctly and show them in `--resume` | Improves Claude-template workflows that depend on transcript replay, including imported `homework`/retrospective flows. | Prefer Claude Code v2.1.170+ when testing Claude compatibility transcript-dependent skills. No Codex runtime change. |
|
|
15
15
|
|
|
16
|
+
## v2.1.169
|
|
17
|
+
|
|
18
|
+
Published: 2026-06-08.
|
|
19
|
+
|
|
20
|
+
Source: upstream oh-my-customcode #1329, Codex port #1496.
|
|
21
|
+
|
|
22
|
+
| Change | Impact on oh-my-customcodex | Action |
|
|
23
|
+
|--------|------------------------------|--------|
|
|
24
|
+
| `--safe-mode` and `CLAUDE_CODE_SAFE_MODE` start Claude Code with all customizations disabled | Useful for isolating whether a packaged `.claude` template, skill, hook, plugin, or MCP server causes a Claude-compatibility regression. | Document in R006; do not change Codex/OMX runtime loading. |
|
|
25
|
+
| `disableBundledSkills` and `CLAUDE_CODE_DISABLE_BUNDLED_SKILLS` hide bundled skills, workflows, and built-in slash commands from the model | Helps when Claude bundled skills duplicate or conflict with project skills. Distinct from advisory `skills:` frontmatter metadata. | Record as Claude platform setting; keep Codex skill roots unchanged. |
|
|
26
|
+
| `claude agents --json` includes blocked and just-dispatched sessions; `--all` includes completed sessions; output includes `id` and `state` | Strengthens Claude-template Agent Teams completion checks. | Prefer `--all` + `state` when diagnosing Claude Agent Teams; Codex/OMX uses native runtime state plus repo evidence. |
|
|
27
|
+
| `/cd` command and reliability fixes for MCP policy/history behavior | Claude operator convenience only. | No Codex runtime change. |
|
|
28
|
+
|
|
16
29
|
## v2.1.168
|
|
17
30
|
|
|
18
31
|
Published: 2026-06-07.
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
This guide records OpenAI Codex release-note impact decisions for oh-my-customcodex. Use it for Codex/OMX runtime compatibility notes; keep Claude-only release notes in `guides/claude-code/15-version-compatibility.md`.
|
|
4
4
|
|
|
5
|
+
## rust-v0.139.0 / CLI 0.139.0
|
|
6
|
+
|
|
7
|
+
Source: upstream OpenAI Codex release `rust-v0.139.0`, Codex-port issue #1498.
|
|
8
|
+
|
|
9
|
+
| Change | Impact on oh-my-customcodex | Action |
|
|
10
|
+
| --- | --- | --- |
|
|
11
|
+
| Code mode can call standalone web search directly, including nested JavaScript tool calls, and receive plaintext results | Improves Codex runtime research ergonomics but does not change packaged skill/tool routing. | Keep repository research guidance source-backed; no package dependency change. |
|
|
12
|
+
| Tool and connector schemas preserve `oneOf`/`allOf`; large schemas keep more shallow structure during compaction | Reduces MCP/app connector schema loss for richer tools. | No template migration; continue to prefer connector schemas as runtime ground truth. |
|
|
13
|
+
| `codex doctor` includes editor and pager environment details while redacting raw values in JSON output | Aligns with metadata-only diagnostics and secret-redaction rules. | Document compatibility; keep `omcustomcodex doctor` separate. |
|
|
14
|
+
| Plugin marketplace automation exposes marketplace source in `list --json` and returns cached catalogs before background refresh | Useful for future plugin inventory automation. | Prefer JSON when automating plugin inventory; no current CLI behavior change. |
|
|
15
|
+
| `codex resume --last "..."` and `codex fork --last "..."` treat trailing text as the initial prompt | Reduces operator surprise for resume/fork workflows. | No package change. |
|
|
16
|
+
| MCP startup warnings are scoped to the owning thread, image edits use exact referenced paths, URLs with `~` linkify correctly, thread resets preserve cloud requirements, and sandbox execution preserves approved escalation/proxy-only networking more consistently | Runtime stability and evidence quality improvements. | No package change beyond this compatibility record. |
|
|
17
|
+
|
|
5
18
|
## rust-v0.138.0 / CLI 0.138.0
|
|
6
19
|
|
|
7
20
|
Source: upstream OpenAI Codex release `rust-v0.138.0`, Codex-port issue #1481.
|
package/templates/manifest.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "1.0.0",
|
|
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-06-
|
|
8
|
+
"lastUpdated": "2026-06-11",
|
|
9
9
|
"components": [
|
|
10
10
|
{
|
|
11
11
|
"name": "rules",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"name": "skills",
|
|
24
24
|
"path": ".agents/skills",
|
|
25
25
|
"description": "Reusable skill modules (project-scoped repo skills)",
|
|
26
|
-
"files":
|
|
26
|
+
"files": 122
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"name": "guides",
|