oh-my-codex 0.11.13 → 0.12.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/Cargo.lock +5 -5
- package/Cargo.toml +1 -1
- package/README.md +27 -17
- package/crates/omx-runtime/src/main.rs +6 -2
- package/dist/agents/native-config.js +1 -1
- package/dist/agents/native-config.js.map +1 -1
- package/dist/cli/__tests__/autoresearch-guided.test.js +74 -2
- package/dist/cli/__tests__/autoresearch-guided.test.js.map +1 -1
- package/dist/cli/__tests__/cleanup.test.js +22 -30
- package/dist/cli/__tests__/cleanup.test.js.map +1 -1
- package/dist/cli/__tests__/error-handling-warnings.test.js +3 -1
- package/dist/cli/__tests__/error-handling-warnings.test.js.map +1 -1
- package/dist/cli/__tests__/index.test.js +217 -4
- package/dist/cli/__tests__/index.test.js.map +1 -1
- package/dist/cli/__tests__/setup-refresh.test.js +49 -9
- package/dist/cli/__tests__/setup-refresh.test.js.map +1 -1
- package/dist/cli/__tests__/setup-scope.test.js +9 -0
- package/dist/cli/__tests__/setup-scope.test.js.map +1 -1
- package/dist/cli/__tests__/team.test.js +136 -11
- package/dist/cli/__tests__/team.test.js.map +1 -1
- package/dist/cli/__tests__/uninstall.test.js +10 -0
- package/dist/cli/__tests__/uninstall.test.js.map +1 -1
- package/dist/cli/__tests__/windows-popup-loop-contract.test.js +1 -0
- package/dist/cli/__tests__/windows-popup-loop-contract.test.js.map +1 -1
- package/dist/cli/autoresearch-guided.d.ts.map +1 -1
- package/dist/cli/autoresearch-guided.js +2 -1
- package/dist/cli/autoresearch-guided.js.map +1 -1
- package/dist/cli/autoresearch.d.ts.map +1 -1
- package/dist/cli/autoresearch.js +2 -1
- package/dist/cli/autoresearch.js.map +1 -1
- package/dist/cli/cleanup.d.ts.map +1 -1
- package/dist/cli/cleanup.js +4 -2
- package/dist/cli/cleanup.js.map +1 -1
- package/dist/cli/index.d.ts +12 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +238 -30
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/omx.js +2 -0
- package/dist/cli/omx.js.map +1 -1
- package/dist/cli/setup.d.ts +1 -0
- package/dist/cli/setup.d.ts.map +1 -1
- package/dist/cli/setup.js +41 -7
- package/dist/cli/setup.js.map +1 -1
- package/dist/cli/team.d.ts.map +1 -1
- package/dist/cli/team.js +16 -557
- package/dist/cli/team.js.map +1 -1
- package/dist/cli/uninstall.d.ts.map +1 -1
- package/dist/cli/uninstall.js +34 -9
- package/dist/cli/uninstall.js.map +1 -1
- package/dist/config/__tests__/generator-idempotent.test.js +79 -2
- package/dist/config/__tests__/generator-idempotent.test.js.map +1 -1
- package/dist/config/__tests__/generator-notify.test.js +2 -0
- package/dist/config/__tests__/generator-notify.test.js.map +1 -1
- package/dist/config/codex-hooks.d.ts +11 -0
- package/dist/config/codex-hooks.d.ts.map +1 -0
- package/dist/config/codex-hooks.js +50 -0
- package/dist/config/codex-hooks.js.map +1 -0
- package/dist/config/generator.d.ts +5 -3
- package/dist/config/generator.d.ts.map +1 -1
- package/dist/config/generator.js +24 -14
- package/dist/config/generator.js.map +1 -1
- package/dist/hooks/__tests__/debugger-log-recency-contract.test.d.ts +2 -0
- package/dist/hooks/__tests__/debugger-log-recency-contract.test.d.ts.map +1 -0
- package/dist/hooks/__tests__/debugger-log-recency-contract.test.js +20 -0
- package/dist/hooks/__tests__/debugger-log-recency-contract.test.js.map +1 -0
- package/dist/hooks/__tests__/notify-fallback-watcher.test.js +236 -2
- package/dist/hooks/__tests__/notify-fallback-watcher.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-all-workers-idle.test.js +86 -0
- package/dist/hooks/__tests__/notify-hook-all-workers-idle.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-auto-nudge.test.js +40 -0
- package/dist/hooks/__tests__/notify-hook-auto-nudge.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-managed-tmux.test.d.ts +2 -0
- package/dist/hooks/__tests__/notify-hook-managed-tmux.test.d.ts.map +1 -0
- package/dist/hooks/__tests__/notify-hook-managed-tmux.test.js +54 -0
- package/dist/hooks/__tests__/notify-hook-managed-tmux.test.js.map +1 -0
- package/dist/hooks/__tests__/notify-hook-modules.test.js +31 -0
- package/dist/hooks/__tests__/notify-hook-modules.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-ralph-resume.test.js +51 -0
- package/dist/hooks/__tests__/notify-hook-ralph-resume.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-session-idle-dedupe.test.d.ts +2 -0
- package/dist/hooks/__tests__/notify-hook-session-idle-dedupe.test.d.ts.map +1 -0
- package/dist/hooks/__tests__/notify-hook-session-idle-dedupe.test.js +136 -0
- package/dist/hooks/__tests__/notify-hook-session-idle-dedupe.test.js.map +1 -0
- package/dist/hooks/__tests__/notify-hook-team-dispatch.test.js +120 -0
- package/dist/hooks/__tests__/notify-hook-team-dispatch.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js +145 -20
- package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-team-tmux-guard.test.js +116 -0
- package/dist/hooks/__tests__/notify-hook-team-tmux-guard.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-worker-idle.test.js +86 -0
- package/dist/hooks/__tests__/notify-hook-worker-idle.test.js.map +1 -1
- package/dist/hooks/__tests__/pre-context-gate-skills.test.js +1 -0
- package/dist/hooks/__tests__/pre-context-gate-skills.test.js.map +1 -1
- package/dist/hooks/extensibility/__tests__/runtime.test.js +49 -0
- package/dist/hooks/extensibility/__tests__/runtime.test.js.map +1 -1
- package/dist/hooks/extensibility/runtime.d.ts.map +1 -1
- package/dist/hooks/extensibility/runtime.js +10 -0
- package/dist/hooks/extensibility/runtime.js.map +1 -1
- package/dist/hooks/extensibility/types.d.ts +1 -1
- package/dist/hooks/extensibility/types.d.ts.map +1 -1
- package/dist/hooks/prompt-guidance-contract.d.ts.map +1 -1
- package/dist/hooks/prompt-guidance-contract.js +12 -8
- package/dist/hooks/prompt-guidance-contract.js.map +1 -1
- package/dist/hooks/session.d.ts +5 -1
- package/dist/hooks/session.d.ts.map +1 -1
- package/dist/hooks/session.js +10 -6
- package/dist/hooks/session.js.map +1 -1
- package/dist/hud/index.d.ts.map +1 -1
- package/dist/hud/index.js +6 -1
- package/dist/hud/index.js.map +1 -1
- package/dist/mcp/__tests__/bootstrap.test.js +0 -3
- package/dist/mcp/__tests__/bootstrap.test.js.map +1 -1
- package/dist/mcp/__tests__/code-intel-server.test.js +27 -1
- package/dist/mcp/__tests__/code-intel-server.test.js.map +1 -1
- package/dist/mcp/__tests__/server-lifecycle.test.js +0 -5
- package/dist/mcp/__tests__/server-lifecycle.test.js.map +1 -1
- package/dist/mcp/bootstrap.d.ts +1 -1
- package/dist/mcp/bootstrap.d.ts.map +1 -1
- package/dist/mcp/bootstrap.js +0 -1
- package/dist/mcp/bootstrap.js.map +1 -1
- package/dist/mcp/code-intel-server.d.ts +20 -0
- package/dist/mcp/code-intel-server.d.ts.map +1 -1
- package/dist/mcp/code-intel-server.js +6 -5
- package/dist/mcp/code-intel-server.js.map +1 -1
- package/dist/notifications/__tests__/idle-cooldown.test.js +24 -1
- package/dist/notifications/__tests__/idle-cooldown.test.js.map +1 -1
- package/dist/notifications/__tests__/reply-listener.test.js +20 -1
- package/dist/notifications/__tests__/reply-listener.test.js.map +1 -1
- package/dist/notifications/__tests__/tmux.test.js +41 -0
- package/dist/notifications/__tests__/tmux.test.js.map +1 -1
- package/dist/notifications/idle-cooldown.d.ts +13 -0
- package/dist/notifications/idle-cooldown.d.ts.map +1 -1
- package/dist/notifications/idle-cooldown.js +50 -16
- package/dist/notifications/idle-cooldown.js.map +1 -1
- package/dist/notifications/reply-listener.d.ts.map +1 -1
- package/dist/notifications/reply-listener.js +2 -0
- package/dist/notifications/reply-listener.js.map +1 -1
- package/dist/notifications/tmux.d.ts.map +1 -1
- package/dist/notifications/tmux.js +4 -0
- package/dist/notifications/tmux.js.map +1 -1
- package/dist/scripts/__tests__/codex-native-hook.test.d.ts +2 -0
- package/dist/scripts/__tests__/codex-native-hook.test.d.ts.map +1 -0
- package/dist/scripts/__tests__/codex-native-hook.test.js +720 -0
- package/dist/scripts/__tests__/codex-native-hook.test.js.map +1 -0
- package/dist/scripts/codex-native-hook.d.ts +22 -0
- package/dist/scripts/codex-native-hook.d.ts.map +1 -0
- package/dist/scripts/codex-native-hook.js +594 -0
- package/dist/scripts/codex-native-hook.js.map +1 -0
- package/dist/scripts/codex-native-pre-post.d.ts +26 -0
- package/dist/scripts/codex-native-pre-post.d.ts.map +1 -0
- package/dist/scripts/codex-native-pre-post.js +118 -0
- package/dist/scripts/codex-native-pre-post.js.map +1 -0
- package/dist/scripts/notify-fallback-watcher.js +262 -18
- package/dist/scripts/notify-fallback-watcher.js.map +1 -1
- package/dist/scripts/notify-hook/auto-nudge.d.ts.map +1 -1
- package/dist/scripts/notify-hook/auto-nudge.js +5 -6
- package/dist/scripts/notify-hook/auto-nudge.js.map +1 -1
- package/dist/scripts/notify-hook/log.d.ts +2 -2
- package/dist/scripts/notify-hook/log.d.ts.map +1 -1
- package/dist/scripts/notify-hook/log.js +10 -2
- package/dist/scripts/notify-hook/log.js.map +1 -1
- package/dist/scripts/notify-hook/managed-tmux.d.ts.map +1 -1
- package/dist/scripts/notify-hook/managed-tmux.js +2 -0
- package/dist/scripts/notify-hook/managed-tmux.js.map +1 -1
- package/dist/scripts/notify-hook/orchestration-intent.d.ts +18 -0
- package/dist/scripts/notify-hook/orchestration-intent.d.ts.map +1 -0
- package/dist/scripts/notify-hook/orchestration-intent.js +72 -0
- package/dist/scripts/notify-hook/orchestration-intent.js.map +1 -0
- package/dist/scripts/notify-hook/process-runner.js.map +1 -1
- package/dist/scripts/notify-hook/ralph-session-resume.d.ts.map +1 -1
- package/dist/scripts/notify-hook/ralph-session-resume.js +7 -0
- package/dist/scripts/notify-hook/ralph-session-resume.js.map +1 -1
- package/dist/scripts/notify-hook/team-dispatch.d.ts +15 -6
- package/dist/scripts/notify-hook/team-dispatch.d.ts.map +1 -1
- package/dist/scripts/notify-hook/team-dispatch.js +125 -6
- package/dist/scripts/notify-hook/team-dispatch.js.map +1 -1
- package/dist/scripts/notify-hook/team-leader-nudge.d.ts +3 -2
- package/dist/scripts/notify-hook/team-leader-nudge.d.ts.map +1 -1
- package/dist/scripts/notify-hook/team-leader-nudge.js +165 -37
- package/dist/scripts/notify-hook/team-leader-nudge.js.map +1 -1
- package/dist/scripts/notify-hook/team-tmux-guard.d.ts +4 -1
- package/dist/scripts/notify-hook/team-tmux-guard.d.ts.map +1 -1
- package/dist/scripts/notify-hook/team-tmux-guard.js +33 -44
- package/dist/scripts/notify-hook/team-tmux-guard.js.map +1 -1
- package/dist/scripts/notify-hook/team-worker.d.ts.map +1 -1
- package/dist/scripts/notify-hook/team-worker.js +68 -5
- package/dist/scripts/notify-hook/team-worker.js.map +1 -1
- package/dist/scripts/notify-hook/utils.d.ts +1 -1
- package/dist/scripts/notify-hook/utils.d.ts.map +1 -1
- package/dist/scripts/notify-hook/utils.js.map +1 -1
- package/dist/scripts/notify-hook.js +55 -32
- package/dist/scripts/notify-hook.js.map +1 -1
- package/dist/team/__tests__/api-interop.test.js +344 -18
- package/dist/team/__tests__/api-interop.test.js.map +1 -1
- package/dist/team/__tests__/delivery-e2e-smoke.test.d.ts +2 -0
- package/dist/team/__tests__/delivery-e2e-smoke.test.d.ts.map +1 -0
- package/dist/team/__tests__/delivery-e2e-smoke.test.js +671 -0
- package/dist/team/__tests__/delivery-e2e-smoke.test.js.map +1 -0
- package/dist/team/__tests__/mcp-comm.test.js +5 -0
- package/dist/team/__tests__/mcp-comm.test.js.map +1 -1
- package/dist/team/__tests__/runtime.test.js +422 -12
- package/dist/team/__tests__/runtime.test.js.map +1 -1
- package/dist/team/__tests__/state.test.js +126 -8
- package/dist/team/__tests__/state.test.js.map +1 -1
- package/dist/team/__tests__/team-ops-contract.test.js +4 -0
- package/dist/team/__tests__/team-ops-contract.test.js.map +1 -1
- package/dist/team/__tests__/tmux-session.test.js +160 -0
- package/dist/team/__tests__/tmux-session.test.js.map +1 -1
- package/dist/team/__tests__/worker-bootstrap.test.js +19 -1
- package/dist/team/__tests__/worker-bootstrap.test.js.map +1 -1
- package/dist/team/api-interop.d.ts.map +1 -1
- package/dist/team/api-interop.js +95 -23
- package/dist/team/api-interop.js.map +1 -1
- package/dist/team/contracts.d.ts +11 -1
- package/dist/team/contracts.d.ts.map +1 -1
- package/dist/team/contracts.js +29 -0
- package/dist/team/contracts.js.map +1 -1
- package/dist/team/delivery-log.d.ts +14 -0
- package/dist/team/delivery-log.d.ts.map +1 -0
- package/dist/team/delivery-log.js +35 -0
- package/dist/team/delivery-log.js.map +1 -0
- package/dist/team/idle-nudge.d.ts +2 -2
- package/dist/team/idle-nudge.js +2 -2
- package/dist/team/mcp-comm.d.ts +4 -0
- package/dist/team/mcp-comm.d.ts.map +1 -1
- package/dist/team/mcp-comm.js +84 -1
- package/dist/team/mcp-comm.js.map +1 -1
- package/dist/team/pane-status.d.ts +149 -0
- package/dist/team/pane-status.d.ts.map +1 -0
- package/dist/team/pane-status.js +558 -0
- package/dist/team/pane-status.js.map +1 -0
- package/dist/team/reminder-intents.d.ts +11 -0
- package/dist/team/reminder-intents.d.ts.map +1 -0
- package/dist/team/reminder-intents.js +40 -0
- package/dist/team/reminder-intents.js.map +1 -0
- package/dist/team/runtime-cli.d.ts +1 -1
- package/dist/team/runtime-cli.js +2 -2
- package/dist/team/runtime-cli.js.map +1 -1
- package/dist/team/runtime.d.ts +2 -1
- package/dist/team/runtime.d.ts.map +1 -1
- package/dist/team/runtime.js +407 -190
- package/dist/team/runtime.js.map +1 -1
- package/dist/team/scaling.d.ts.map +1 -1
- package/dist/team/scaling.js +6 -5
- package/dist/team/scaling.js.map +1 -1
- package/dist/team/state/dispatch.d.ts +4 -1
- package/dist/team/state/dispatch.d.ts.map +1 -1
- package/dist/team/state/dispatch.js +59 -18
- package/dist/team/state/dispatch.js.map +1 -1
- package/dist/team/state/mailbox.d.ts.map +1 -1
- package/dist/team/state/mailbox.js +39 -2
- package/dist/team/state/mailbox.js.map +1 -1
- package/dist/team/state/monitor.d.ts +2 -1
- package/dist/team/state/monitor.d.ts.map +1 -1
- package/dist/team/state/monitor.js +30 -1
- package/dist/team/state/monitor.js.map +1 -1
- package/dist/team/state/types.d.ts +5 -2
- package/dist/team/state/types.d.ts.map +1 -1
- package/dist/team/state/types.js.map +1 -1
- package/dist/team/state.d.ts +30 -3
- package/dist/team/state.d.ts.map +1 -1
- package/dist/team/state.js +170 -2
- package/dist/team/state.js.map +1 -1
- package/dist/team/team-ops.d.ts +5 -1
- package/dist/team/team-ops.d.ts.map +1 -1
- package/dist/team/team-ops.js +4 -0
- package/dist/team/team-ops.js.map +1 -1
- package/dist/team/tmux-session.d.ts +2 -0
- package/dist/team/tmux-session.d.ts.map +1 -1
- package/dist/team/tmux-session.js +19 -3
- package/dist/team/tmux-session.js.map +1 -1
- package/dist/team/worker-bootstrap.d.ts +4 -0
- package/dist/team/worker-bootstrap.d.ts.map +1 -1
- package/dist/team/worker-bootstrap.js +33 -6
- package/dist/team/worker-bootstrap.js.map +1 -1
- package/dist/utils/__tests__/paths.test.js +63 -1
- package/dist/utils/__tests__/paths.test.js.map +1 -1
- package/dist/utils/__tests__/platform-command.test.js +50 -4
- package/dist/utils/__tests__/platform-command.test.js.map +1 -1
- package/dist/utils/paths.d.ts +12 -0
- package/dist/utils/paths.d.ts.map +1 -1
- package/dist/utils/paths.js +44 -2
- package/dist/utils/paths.js.map +1 -1
- package/dist/utils/platform-command.d.ts.map +1 -1
- package/dist/utils/platform-command.js +13 -5
- package/dist/utils/platform-command.js.map +1 -1
- package/dist/utils/sleep.d.ts.map +1 -1
- package/dist/utils/sleep.js +10 -1
- package/dist/utils/sleep.js.map +1 -1
- package/package.json +1 -1
- package/prompts/analyst.md +2 -2
- package/prompts/api-reviewer.md +2 -2
- package/prompts/architect.md +2 -2
- package/prompts/build-fixer.md +2 -2
- package/prompts/code-reviewer.md +2 -2
- package/prompts/code-simplifier.md +1 -1
- package/prompts/critic.md +2 -2
- package/prompts/debugger.md +3 -2
- package/prompts/dependency-expert.md +2 -2
- package/prompts/designer.md +2 -2
- package/prompts/executor.md +3 -2
- package/prompts/explore.md +2 -2
- package/prompts/git-master.md +2 -2
- package/prompts/information-architect.md +2 -2
- package/prompts/performance-reviewer.md +2 -2
- package/prompts/planner.md +3 -2
- package/prompts/product-analyst.md +2 -2
- package/prompts/product-manager.md +2 -2
- package/prompts/qa-tester.md +2 -2
- package/prompts/quality-reviewer.md +2 -2
- package/prompts/quality-strategist.md +2 -2
- package/prompts/researcher.md +2 -2
- package/prompts/security-reviewer.md +2 -2
- package/prompts/sisyphus-lite.md +2 -2
- package/prompts/style-reviewer.md +2 -2
- package/prompts/team-executor.md +2 -2
- package/prompts/test-engineer.md +2 -2
- package/prompts/ux-researcher.md +2 -2
- package/prompts/verifier.md +3 -2
- package/prompts/vision.md +2 -2
- package/prompts/writer.md +2 -2
- package/skills/team/SKILL.md +18 -33
- package/src/scripts/__tests__/codex-native-hook.test.ts +931 -0
- package/src/scripts/codex-native-hook.ts +721 -0
- package/src/scripts/codex-native-pre-post.ts +161 -0
- package/src/scripts/notify-fallback-watcher.ts +318 -26
- package/src/scripts/notify-hook/auto-nudge.ts +5 -10
- package/src/scripts/notify-hook/log.ts +18 -4
- package/src/scripts/notify-hook/managed-tmux.ts +1 -0
- package/src/scripts/notify-hook/orchestration-intent.ts +82 -0
- package/src/scripts/notify-hook/process-runner.ts +4 -4
- package/src/scripts/notify-hook/ralph-session-resume.ts +9 -0
- package/src/scripts/notify-hook/team-dispatch.ts +134 -6
- package/src/scripts/notify-hook/team-leader-nudge.ts +183 -37
- package/src/scripts/notify-hook/team-tmux-guard.ts +35 -43
- package/src/scripts/notify-hook/team-worker.ts +73 -4
- package/src/scripts/notify-hook/utils.ts +1 -1
- package/src/scripts/notify-hook.ts +64 -32
- package/templates/AGENTS.md +21 -11
- package/README.de.md +0 -263
- package/README.el.md +0 -223
- package/README.es.md +0 -263
- package/README.fr.md +0 -263
- package/README.it.md +0 -263
- package/README.ja.md +0 -264
- package/README.ko.md +0 -264
- package/README.pl.md +0 -216
- package/README.pt.md +0 -263
- package/README.ru.md +0 -263
- package/README.tr.md +0 -263
- package/README.vi.md +0 -223
- package/README.zh-TW.md +0 -293
- package/README.zh.md +0 -264
- package/dist/mcp/__tests__/team-server-cleanup.test.d.ts +0 -2
- package/dist/mcp/__tests__/team-server-cleanup.test.d.ts.map +0 -1
- package/dist/mcp/__tests__/team-server-cleanup.test.js +0 -219
- package/dist/mcp/__tests__/team-server-cleanup.test.js.map +0 -1
- package/dist/mcp/__tests__/team-server-runtime-deps.test.d.ts +0 -2
- package/dist/mcp/__tests__/team-server-runtime-deps.test.d.ts.map +0 -1
- package/dist/mcp/__tests__/team-server-runtime-deps.test.js +0 -13
- package/dist/mcp/__tests__/team-server-runtime-deps.test.js.map +0 -1
- package/dist/mcp/__tests__/team-server-wait.test.d.ts +0 -2
- package/dist/mcp/__tests__/team-server-wait.test.d.ts.map +0 -1
- package/dist/mcp/__tests__/team-server-wait.test.js +0 -155
- package/dist/mcp/__tests__/team-server-wait.test.js.map +0 -1
- package/dist/mcp/team-server.d.ts +0 -24
- package/dist/mcp/team-server.d.ts.map +0 -1
- package/dist/mcp/team-server.js +0 -482
- package/dist/mcp/team-server.js.map +0 -1
package/README.it.md
DELETED
|
@@ -1,263 +0,0 @@
|
|
|
1
|
-
# oh-my-codex (OMX)
|
|
2
|
-
|
|
3
|
-
<p align="center">
|
|
4
|
-
<img src="https://yeachan-heo.github.io/oh-my-codex-website/omx-character-nobg.png" alt="oh-my-codex character" width="280">
|
|
5
|
-
<br>
|
|
6
|
-
<em>Il tuo codex non è solo.</em>
|
|
7
|
-
</p>
|
|
8
|
-
|
|
9
|
-
[](https://www.npmjs.com/package/oh-my-codex)
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
11
|
-
[](https://nodejs.org)
|
|
12
|
-
|
|
13
|
-
> **[Website](https://yeachan-heo.github.io/oh-my-codex-website/)** | **[Documentation](https://yeachan-heo.github.io/oh-my-codex-website/docs.html)** | **[CLI Reference](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#cli-reference)** | **[Workflows](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#workflows)** | **[Guida all’integrazione OpenClaw](./docs/openclaw-integration.it.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
|
-
|
|
15
|
-
Livello di orchestrazione multi-agente per [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
|
-
|
|
17
|
-
## Novità nella v0.9.0 — Spark Initiative
|
|
18
|
-
|
|
19
|
-
Spark Initiative è la release che rafforza il percorso nativo di esplorazione e ispezione in OMX.
|
|
20
|
-
|
|
21
|
-
- **Harness nativo per `omx explore`** — esegue l’esplorazione del repository in sola lettura tramite un percorso Rust più rapido e più rigoroso.
|
|
22
|
-
- **`omx sparkshell`** — superficie nativa per operatori con riepiloghi dell’output lungo e cattura esplicita dei pannelli tmux.
|
|
23
|
-
- **Asset nativi multipiattaforma** — il percorso di hydration per `omx-explore-harness`, `omx-sparkshell` e `native-release-manifest.json` ora fa parte della pipeline di release.
|
|
24
|
-
- **CI/CD rafforzato** — aggiunge la configurazione esplicita della toolchain Rust nel job `build`, oltre a `cargo fmt --check` e `cargo clippy -- -D warnings`.
|
|
25
|
-
|
|
26
|
-
Vedi anche le [note di rilascio v0.9.0](./docs/release-notes-0.9.0.md) e il [testo della release](./docs/release-body-0.9.0.md).
|
|
27
|
-
|
|
28
|
-
## Prima sessione
|
|
29
|
-
|
|
30
|
-
All'interno di Codex:
|
|
31
|
-
|
|
32
|
-
```text
|
|
33
|
-
$deep-interview "clarify the auth change"
|
|
34
|
-
$ralplan "approve the auth plan and review tradeoffs"
|
|
35
|
-
$ralph "carry the approved plan to completion"
|
|
36
|
-
$team 3:executor "execute the approved plan in parallel"
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
Dal terminale:
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
omx team 4:executor "parallelize a multi-module refactor"
|
|
43
|
-
omx team status <team-name>
|
|
44
|
-
omx team shutdown <team-name>
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## Flusso consigliato
|
|
48
|
-
|
|
49
|
-
1. `$deep-interview` — quando ambito o confini non sono ancora chiari.
|
|
50
|
-
2. `$ralplan` — per trasformare l’ambito chiarito in un piano approvato di architettura e implementazione.
|
|
51
|
-
3. `$team` o `$ralph` — usa `$team` per l’esecuzione parallela coordinata, oppure `$ralph` per un loop persistente di completamento/verifica con un solo responsabile.
|
|
52
|
-
|
|
53
|
-
## Modello di base
|
|
54
|
-
|
|
55
|
-
OMX installa e collega questi livelli:
|
|
56
|
-
|
|
57
|
-
```text
|
|
58
|
-
User
|
|
59
|
-
-> Codex CLI
|
|
60
|
-
-> AGENTS.md (cervello dell'orchestrazione)
|
|
61
|
-
-> ~/.codex/prompts/*.md (catalogo prompt degli agenti)
|
|
62
|
-
-> ~/.codex/skills/*/SKILL.md (catalogo skill)
|
|
63
|
-
-> ~/.codex/config.toml (funzionalità, notifiche, MCP)
|
|
64
|
-
-> .omx/ (stato di esecuzione, memoria, piani, log)
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Comandi principali
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
omx # Avvia Codex (+ HUD in tmux se disponibile)
|
|
71
|
-
omx setup # Installa prompt/skill/config per scope + .omx del progetto + AGENTS.md specifico dello scope
|
|
72
|
-
omx doctor # Diagnostica installazione/esecuzione
|
|
73
|
-
omx doctor --team # Diagnostica Team/Swarm
|
|
74
|
-
omx team ... # Avvia/stato/riprendi/arresta i worker del team tmux
|
|
75
|
-
omx status # Mostra le modalità attive
|
|
76
|
-
omx cancel # Annulla le modalità di esecuzione attive
|
|
77
|
-
omx reasoning <mode> # low|medium|high|xhigh
|
|
78
|
-
omx tmux-hook ... # init|status|validate|test
|
|
79
|
-
omx hooks ... # init|status|validate|test (workflow estensione plugin)
|
|
80
|
-
omx hud ... # --watch|--json|--preset
|
|
81
|
-
omx help
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
## Estensione Hooks (Superficie additiva)
|
|
85
|
-
|
|
86
|
-
OMX ora include `omx hooks` per lo scaffolding e la validazione dei plugin.
|
|
87
|
-
|
|
88
|
-
- `omx tmux-hook` resta supportato e invariato.
|
|
89
|
-
- `omx hooks` è additivo e non sostituisce i workflow tmux-hook.
|
|
90
|
-
- I file dei plugin si trovano in `.omx/hooks/*.mjs`.
|
|
91
|
-
- I plugin sono disattivati per impostazione predefinita; abilitali con `OMX_HOOK_PLUGINS=1`.
|
|
92
|
-
|
|
93
|
-
Consulta `docs/hooks-extension.md` per il workflow completo di estensione e il modello degli eventi.
|
|
94
|
-
|
|
95
|
-
## Flag di avvio
|
|
96
|
-
|
|
97
|
-
```bash
|
|
98
|
-
--yolo
|
|
99
|
-
--high
|
|
100
|
-
--xhigh
|
|
101
|
-
--madmax
|
|
102
|
-
--force
|
|
103
|
-
--dry-run
|
|
104
|
-
--verbose
|
|
105
|
-
--scope <user|project> # solo per setup
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
`--madmax` corrisponde a Codex `--dangerously-bypass-approvals-and-sandbox`.
|
|
109
|
-
Utilizzare solo in ambienti sandbox fidati/esterni.
|
|
110
|
-
|
|
111
|
-
### Policy MCP workingDirectory (hardening opzionale)
|
|
112
|
-
|
|
113
|
-
Per impostazione predefinita, gli strumenti MCP stato/memoria/trace accettano il `workingDirectory` fornito dal chiamante.
|
|
114
|
-
Per limitare questo, imposta una lista di directory root consentite:
|
|
115
|
-
|
|
116
|
-
```bash
|
|
117
|
-
export OMX_MCP_WORKDIR_ROOTS="/path/to/project:/path/to/another-root"
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
Quando impostato, i valori `workingDirectory` al di fuori di queste root vengono rifiutati.
|
|
121
|
-
|
|
122
|
-
## Controllo Codex-First dei prompt
|
|
123
|
-
|
|
124
|
-
Per impostazione predefinita, OMX inietta:
|
|
125
|
-
|
|
126
|
-
```text
|
|
127
|
-
-c model_instructions_file="<cwd>/AGENTS.md"
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
Questo unisce l'`AGENTS.md` di `CODEX_HOME` con l'`AGENTS.md` del progetto (se presente) e poi aggiunge l'overlay di runtime.
|
|
131
|
-
Estende il comportamento di Codex, ma non sostituisce/aggira le policy di sistema core di Codex.
|
|
132
|
-
|
|
133
|
-
Controlli:
|
|
134
|
-
|
|
135
|
-
```bash
|
|
136
|
-
OMX_BYPASS_DEFAULT_SYSTEM_PROMPT=0 omx # disabilita l'iniezione AGENTS.md
|
|
137
|
-
OMX_MODEL_INSTRUCTIONS_FILE=/path/to/instructions.md omx
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
## Modalità team
|
|
141
|
-
|
|
142
|
-
Usa la modalità team per lavori ampi che beneficiano di worker paralleli.
|
|
143
|
-
|
|
144
|
-
Ciclo di vita:
|
|
145
|
-
|
|
146
|
-
```text
|
|
147
|
-
start -> assign scoped lanes -> monitor -> verify terminal tasks -> shutdown
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
Comandi operativi:
|
|
151
|
-
|
|
152
|
-
```bash
|
|
153
|
-
omx team <args>
|
|
154
|
-
omx team status <team-name>
|
|
155
|
-
omx team resume <team-name>
|
|
156
|
-
omx team shutdown <team-name>
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
Regola importante: non arrestare mentre i task sono ancora `in_progress`, a meno che non si stia abortendo.
|
|
160
|
-
|
|
161
|
-
### Team shutdown policy
|
|
162
|
-
|
|
163
|
-
Use `omx team shutdown <team-name>` after the team reaches a terminal state.
|
|
164
|
-
Team cleanup now follows one standalone path; legacy linked-Ralph shutdown handling is no longer a separate public workflow.
|
|
165
|
-
|
|
166
|
-
Selezione CLI worker per i worker del team:
|
|
167
|
-
|
|
168
|
-
```bash
|
|
169
|
-
OMX_TEAM_WORKER_CLI=auto # predefinito; usa claude quando worker --model contiene "claude"
|
|
170
|
-
OMX_TEAM_WORKER_CLI=codex # forza i worker Codex CLI
|
|
171
|
-
OMX_TEAM_WORKER_CLI=claude # forza i worker Claude CLI
|
|
172
|
-
OMX_TEAM_WORKER_CLI_MAP=codex,codex,claude,claude # mix CLI per worker (lunghezza=1 o numero di worker)
|
|
173
|
-
OMX_TEAM_AUTO_INTERRUPT_RETRY=0 # opzionale: disabilita il fallback adattivo queue->resend
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
Note:
|
|
177
|
-
- Gli argomenti di avvio dei worker sono ancora condivisi tramite `OMX_TEAM_WORKER_LAUNCH_ARGS`.
|
|
178
|
-
- `OMX_TEAM_WORKER_CLI_MAP` sovrascrive `OMX_TEAM_WORKER_CLI` per la selezione per singolo worker.
|
|
179
|
-
- L'invio dei trigger usa per impostazione predefinita tentativi adattivi (queue/submit, poi fallback sicuro clear-line+resend quando necessario).
|
|
180
|
-
- In modalità worker Claude, OMX avvia i worker come semplice `claude` (nessun argomento di avvio aggiuntivo) e ignora le sovrascritture esplicite `--model` / `--config` / `--effort` in modo che Claude usi il `settings.json` predefinito.
|
|
181
|
-
|
|
182
|
-
## Cosa scrive `omx setup`
|
|
183
|
-
|
|
184
|
-
- `.omx/setup-scope.json` (scope di setup persistito)
|
|
185
|
-
- Installazioni dipendenti dallo scope:
|
|
186
|
-
- `user`: `~/.codex/prompts/`, `~/.codex/skills/`, `~/.codex/config.toml`, `~/.omx/agents/`, `~/.codex/AGENTS.md`
|
|
187
|
-
- `project`: `./.codex/prompts/`, `./.codex/skills/`, `./.codex/config.toml`, `./.omx/agents/`, `./AGENTS.md`
|
|
188
|
-
- Comportamento all'avvio: se lo scope persistito è `project`, l'avvio `omx` usa automaticamente `CODEX_HOME=./.codex` (a meno che `CODEX_HOME` non sia già impostato).
|
|
189
|
-
- Le istruzioni di avvio uniscono `~/.codex/AGENTS.md` (o `CODEX_HOME/AGENTS.md` se ridefinito) con `./AGENTS.md` del progetto, quindi aggiungono l'overlay di runtime.
|
|
190
|
-
- I file `AGENTS.md` esistenti non vengono mai sovrascritti in silenzio: in TTY interattivo il setup chiede prima di sostituire; in modalità non interattiva la sostituzione viene saltata salvo `--force` (i controlli di sicurezza della sessione attiva restano validi).
|
|
191
|
-
- Aggiornamenti `config.toml` (per entrambi gli scope):
|
|
192
|
-
- `notify = ["node", "..."]`
|
|
193
|
-
- `model_reasoning_effort = "high"`
|
|
194
|
-
- `developer_instructions = "..."`
|
|
195
|
-
- `[features] multi_agent = true, child_agents_md = true`
|
|
196
|
-
- Voci server MCP (`omx_state`, `omx_memory`, `omx_code_intel`, `omx_trace`)
|
|
197
|
-
- `[tui] status_line`
|
|
198
|
-
- `AGENTS.md` specifico dello scope
|
|
199
|
-
- Directory di esecuzione `.omx/` e configurazione HUD
|
|
200
|
-
|
|
201
|
-
## Agenti e Skill
|
|
202
|
-
|
|
203
|
-
- Prompt: `prompts/*.md` (installati in `~/.codex/prompts/` per `user`, `./.codex/prompts/` per `project`)
|
|
204
|
-
- Skill: `skills/*/SKILL.md` (installati in `~/.codex/skills/` per `user`, `./.codex/skills/` per `project`)
|
|
205
|
-
|
|
206
|
-
Esempi:
|
|
207
|
-
- Agenti: `architect`, `planner`, `executor`, `debugger`, `verifier`, `security-reviewer`
|
|
208
|
-
- Skill: `deep-interview`, `ralplan`, `team`, `ralph`, `plan`, `cancel`
|
|
209
|
-
|
|
210
|
-
## Struttura del progetto
|
|
211
|
-
|
|
212
|
-
```text
|
|
213
|
-
oh-my-codex/
|
|
214
|
-
bin/omx.js
|
|
215
|
-
src/
|
|
216
|
-
cli/
|
|
217
|
-
team/
|
|
218
|
-
mcp/
|
|
219
|
-
hooks/
|
|
220
|
-
hud/
|
|
221
|
-
config/
|
|
222
|
-
modes/
|
|
223
|
-
notifications/
|
|
224
|
-
verification/
|
|
225
|
-
prompts/
|
|
226
|
-
skills/
|
|
227
|
-
templates/
|
|
228
|
-
scripts/
|
|
229
|
-
```
|
|
230
|
-
|
|
231
|
-
## Sviluppo
|
|
232
|
-
|
|
233
|
-
```bash
|
|
234
|
-
git clone https://github.com/Yeachan-Heo/oh-my-codex.git
|
|
235
|
-
cd oh-my-codex
|
|
236
|
-
npm install
|
|
237
|
-
npm run build
|
|
238
|
-
npm test
|
|
239
|
-
```
|
|
240
|
-
|
|
241
|
-
## Documentazione
|
|
242
|
-
|
|
243
|
-
- **[Documentazione completa](https://yeachan-heo.github.io/oh-my-codex-website/docs.html)** — Guida completa
|
|
244
|
-
- **[Riferimento CLI](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#cli-reference)** — Tutti i comandi `omx`, flag e strumenti
|
|
245
|
-
- **[Guida alle notifiche](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#notifications)** — Configurazione Discord, Telegram, Slack e webhook
|
|
246
|
-
- **[Workflow consigliati](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#workflows)** — Catene di skill collaudate per i compiti comuni
|
|
247
|
-
- **[Note di rilascio](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#release-notes)** — Novità di ogni versione
|
|
248
|
-
|
|
249
|
-
## Note
|
|
250
|
-
|
|
251
|
-
- Changelog completo: `CHANGELOG.md`
|
|
252
|
-
- Guida alla migrazione (post-v0.4.4 mainline): `docs/migration-mainline-post-v0.4.4.md`
|
|
253
|
-
- Note di copertura e parità: `COVERAGE.md`
|
|
254
|
-
- Workflow estensione hook: `docs/hooks-extension.md`
|
|
255
|
-
- Dettagli setup e contribuzione: `CONTRIBUTING.md`
|
|
256
|
-
|
|
257
|
-
## Ringraziamenti
|
|
258
|
-
|
|
259
|
-
Ispirato da [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode), adattato per Codex CLI.
|
|
260
|
-
|
|
261
|
-
## Licenza
|
|
262
|
-
|
|
263
|
-
MIT
|
package/README.ja.md
DELETED
|
@@ -1,264 +0,0 @@
|
|
|
1
|
-
# oh-my-codex (OMX)
|
|
2
|
-
|
|
3
|
-
<p align="center">
|
|
4
|
-
<img src="https://yeachan-heo.github.io/oh-my-codex-website/omx-character-nobg.png" alt="oh-my-codex character" width="280">
|
|
5
|
-
<br>
|
|
6
|
-
<em>あなたのcodexは一人じゃない。</em>
|
|
7
|
-
</p>
|
|
8
|
-
|
|
9
|
-
[](https://www.npmjs.com/package/oh-my-codex)
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
11
|
-
[](https://nodejs.org)
|
|
12
|
-
[](https://discord.gg/PUwSMR9XNk)
|
|
13
|
-
|
|
14
|
-
> **[Website](https://yeachan-heo.github.io/oh-my-codex-website/)** | **[Documentation](https://yeachan-heo.github.io/oh-my-codex-website/docs.html)** | **[CLI Reference](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#cli-reference)** | **[Workflows](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#workflows)** | **[OpenClaw 統合ガイド](./docs/openclaw-integration.ja.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
15
|
-
|
|
16
|
-
[OpenAI Codex CLI](https://github.com/openai/codex)のためのマルチエージェントオーケストレーションレイヤー。
|
|
17
|
-
|
|
18
|
-
## v0.9.0 の新機能 — Spark Initiative
|
|
19
|
-
|
|
20
|
-
Spark Initiative は、OMX のネイティブ探索・検査経路を強化するリリースです。
|
|
21
|
-
|
|
22
|
-
- **`omx explore` ネイティブハーネス** — 読み取り専用のリポジトリ探索を Rust ベースのハーネスで高速かつ厳格に実行します。
|
|
23
|
-
- **`omx sparkshell`** — 長い出力の要約と tmux pane キャプチャを行う、オペレーター向けのネイティブ検査サーフェスです。
|
|
24
|
-
- **クロスプラットフォームのネイティブリリース資産** — `omx-explore-harness`、`omx-sparkshell`、`native-release-manifest.json` を中心とした hydration 経路がリリースパイプラインに組み込まれました。
|
|
25
|
-
- **強化された CI/CD** — `build` ジョブでの明示的な Rust toolchain セットアップ、`cargo fmt --check`、`cargo clippy -- -D warnings` を追加しました。
|
|
26
|
-
|
|
27
|
-
詳細は [v0.9.0 リリースノート](./docs/release-notes-0.9.0.md) と [リリース本文](./docs/release-body-0.9.0.md) を参照してください。
|
|
28
|
-
|
|
29
|
-
## 最初のセッション
|
|
30
|
-
|
|
31
|
-
Codex内部で:
|
|
32
|
-
|
|
33
|
-
```text
|
|
34
|
-
$deep-interview "clarify the auth change"
|
|
35
|
-
$ralplan "approve the auth plan and review tradeoffs"
|
|
36
|
-
$ralph "carry the approved plan to completion"
|
|
37
|
-
$team 3:executor "execute the approved plan in parallel"
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
ターミナルから:
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
omx team 4:executor "parallelize a multi-module refactor"
|
|
44
|
-
omx team status <team-name>
|
|
45
|
-
omx team shutdown <team-name>
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## 推奨ワークフロー
|
|
49
|
-
|
|
50
|
-
1. `$deep-interview` — スコープや境界がまだ曖昧なときに明確化するために使います。
|
|
51
|
-
2. `$ralplan` — 明確になった内容を、承認可能なアーキテクチャ/実装計画に落とし込みます。
|
|
52
|
-
3. `$team` または `$ralph` — 承認済みプランを並列で進めるなら `$team`、1 人の担当者が完了と検証まで粘り強く進めるなら `$ralph` を使います。
|
|
53
|
-
|
|
54
|
-
## コアモデル
|
|
55
|
-
|
|
56
|
-
OMXは以下のレイヤーをインストールして接続します:
|
|
57
|
-
|
|
58
|
-
```text
|
|
59
|
-
User
|
|
60
|
-
-> Codex CLI
|
|
61
|
-
-> AGENTS.md (オーケストレーションブレイン)
|
|
62
|
-
-> ~/.codex/prompts/*.md (エージェントプロンプトカタログ)
|
|
63
|
-
-> ~/.codex/skills/*/SKILL.md (スキルカタログ)
|
|
64
|
-
-> ~/.codex/config.toml (機能、通知、MCP)
|
|
65
|
-
-> .omx/ (ランタイム状態、メモリ、計画、ログ)
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
## 主要コマンド
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
omx # Codexを起動(tmuxでHUD付き)
|
|
72
|
-
omx setup # スコープ別にプロンプト/スキル/設定をインストール + プロジェクト .omx + スコープ別 AGENTS.md
|
|
73
|
-
omx doctor # インストール/ランタイム診断
|
|
74
|
-
omx doctor --team # Team/swarm診断
|
|
75
|
-
omx team ... # tmuxチームワーカーの開始/ステータス/再開/シャットダウン
|
|
76
|
-
omx status # アクティブなモードを表示
|
|
77
|
-
omx cancel # アクティブな実行モードをキャンセル
|
|
78
|
-
omx reasoning <mode> # low|medium|high|xhigh
|
|
79
|
-
omx tmux-hook ... # init|status|validate|test
|
|
80
|
-
omx hooks ... # init|status|validate|test(プラグイン拡張ワークフロー)
|
|
81
|
-
omx hud ... # --watch|--json|--preset
|
|
82
|
-
omx help
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
## Hooks拡張(追加サーフェス)
|
|
86
|
-
|
|
87
|
-
OMXにはプラグインのスキャフォールディングとバリデーション用の`omx hooks`が含まれるようになりました。
|
|
88
|
-
|
|
89
|
-
- `omx tmux-hook`は引き続きサポートされ、変更されていません。
|
|
90
|
-
- `omx hooks`は追加的であり、tmux-hookワークフローを置き換えません。
|
|
91
|
-
- プラグインファイルは`.omx/hooks/*.mjs`に配置されます。
|
|
92
|
-
- プラグインはデフォルトで無効です;`OMX_HOOK_PLUGINS=1`で有効にします。
|
|
93
|
-
|
|
94
|
-
完全な拡張ワークフローとイベントモデルについては`docs/hooks-extension.md`を参照してください。
|
|
95
|
-
|
|
96
|
-
## 起動フラグ
|
|
97
|
-
|
|
98
|
-
```bash
|
|
99
|
-
--yolo
|
|
100
|
-
--high
|
|
101
|
-
--xhigh
|
|
102
|
-
--madmax
|
|
103
|
-
--force
|
|
104
|
-
--dry-run
|
|
105
|
-
--verbose
|
|
106
|
-
--scope <user|project> # setupのみ
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
`--madmax`はCodexの`--dangerously-bypass-approvals-and-sandbox`にマッピングされます。
|
|
110
|
-
信頼された/外部のサンドボックス環境でのみ使用してください。
|
|
111
|
-
|
|
112
|
-
### MCP workingDirectoryポリシー(オプションの強化)
|
|
113
|
-
|
|
114
|
-
デフォルトでは、MCP state/memory/traceツールは呼び出し元が提供する`workingDirectory`を受け入れます。
|
|
115
|
-
これを制限するには、許可されたルートのリストを設定します:
|
|
116
|
-
|
|
117
|
-
```bash
|
|
118
|
-
export OMX_MCP_WORKDIR_ROOTS="/path/to/project:/path/to/another-root"
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
設定すると、これらのルート外の`workingDirectory`値は拒否されます。
|
|
122
|
-
|
|
123
|
-
## Codex-Firstプロンプト制御
|
|
124
|
-
|
|
125
|
-
デフォルトでは、OMXは以下を注入します:
|
|
126
|
-
|
|
127
|
-
```text
|
|
128
|
-
-c model_instructions_file="<cwd>/AGENTS.md"
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
これは`CODEX_HOME`の`AGENTS.md`とプロジェクトの`AGENTS.md`(存在する場合)を結合し、その上にランタイムオーバーレイを追加します。
|
|
132
|
-
Codexの動作を拡張しますが、Codexのコアシステムポリシーを置き換えたりバイパスしたりしません。
|
|
133
|
-
|
|
134
|
-
制御:
|
|
135
|
-
|
|
136
|
-
```bash
|
|
137
|
-
OMX_BYPASS_DEFAULT_SYSTEM_PROMPT=0 omx # AGENTS.md注入を無効化
|
|
138
|
-
OMX_MODEL_INSTRUCTIONS_FILE=/path/to/instructions.md omx
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
## チームモード
|
|
142
|
-
|
|
143
|
-
並列ワーカーが有利な大規模作業にはチームモードを使用します。
|
|
144
|
-
|
|
145
|
-
ライフサイクル:
|
|
146
|
-
|
|
147
|
-
```text
|
|
148
|
-
start -> assign scoped lanes -> monitor -> verify terminal tasks -> shutdown
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
運用コマンド:
|
|
152
|
-
|
|
153
|
-
```bash
|
|
154
|
-
omx team <args>
|
|
155
|
-
omx team status <team-name>
|
|
156
|
-
omx team resume <team-name>
|
|
157
|
-
omx team shutdown <team-name>
|
|
158
|
-
```
|
|
159
|
-
|
|
160
|
-
重要なルール:中断する場合を除き、タスクが`in_progress`状態の間はシャットダウンしないでください。
|
|
161
|
-
|
|
162
|
-
### Team shutdown policy
|
|
163
|
-
|
|
164
|
-
Use `omx team shutdown <team-name>` after the team reaches a terminal state.
|
|
165
|
-
Team cleanup now follows one standalone path; legacy linked-Ralph shutdown handling is no longer a separate public workflow.
|
|
166
|
-
|
|
167
|
-
チームワーカー用のWorker CLI選択:
|
|
168
|
-
|
|
169
|
-
```bash
|
|
170
|
-
OMX_TEAM_WORKER_CLI=auto # デフォルト;worker --modelに"claude"が含まれる場合claudeを使用
|
|
171
|
-
OMX_TEAM_WORKER_CLI=codex # Codex CLIワーカーを強制
|
|
172
|
-
OMX_TEAM_WORKER_CLI=claude # Claude CLIワーカーを強制
|
|
173
|
-
OMX_TEAM_WORKER_CLI_MAP=codex,codex,claude,claude # ワーカーごとのCLIミックス(長さ=1またはワーカー数)
|
|
174
|
-
OMX_TEAM_AUTO_INTERRUPT_RETRY=0 # オプション:適応型queue->resendフォールバックを無効化
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
注意:
|
|
178
|
-
- ワーカー起動引数は引き続き`OMX_TEAM_WORKER_LAUNCH_ARGS`を通じて共有されます。
|
|
179
|
-
- `OMX_TEAM_WORKER_CLI_MAP`はワーカーごとの選択で`OMX_TEAM_WORKER_CLI`をオーバーライドします。
|
|
180
|
-
- トリガー送信はデフォルトで適応型リトライを使用します(queue/submit、必要に応じて安全なclear-line+resendフォールバック)。
|
|
181
|
-
- Claude workerモードでは、OMXはワーカーをプレーンな`claude`として起動し(追加の起動引数なし)、明示的な`--model` / `--config` / `--effort`オーバーライドを無視して、Claudeがデフォルトの`settings.json`を使用します。
|
|
182
|
-
|
|
183
|
-
## `omx setup`が書き込む内容
|
|
184
|
-
|
|
185
|
-
- `.omx/setup-scope.json`(永続化されたセットアップスコープ)
|
|
186
|
-
- スコープ依存のインストール:
|
|
187
|
-
- `user`:`~/.codex/prompts/`、`~/.codex/skills/`、`~/.codex/config.toml`、`~/.omx/agents/`、`~/.codex/AGENTS.md`
|
|
188
|
-
- `project`:`./.codex/prompts/`、`./.codex/skills/`、`./.codex/config.toml`、`./.omx/agents/`、`./AGENTS.md`
|
|
189
|
-
- 起動動作:永続化されたスコープが`project`の場合、`omx`起動時に自動的に`CODEX_HOME=./.codex`を使用(`CODEX_HOME`が既に設定されている場合を除く)。
|
|
190
|
-
- 起動命令は`~/.codex/AGENTS.md`(または上書きされた`CODEX_HOME/AGENTS.md`)とプロジェクトの`./AGENTS.md`を結合し、その後ランタイムオーバーレイを追加して使用します。
|
|
191
|
-
- 既存の`AGENTS.md`は黙って上書きされません。インタラクティブTTYでは置き換え前に確認し、非インタラクティブ実行では`--force`がない限り置き換えをスキップします(アクティブセッションの安全チェックは引き続き適用されます)。
|
|
192
|
-
- `config.toml`の更新(両スコープ共通):
|
|
193
|
-
- `notify = ["node", "..."]`
|
|
194
|
-
- `model_reasoning_effort = "high"`
|
|
195
|
-
- `developer_instructions = "..."`
|
|
196
|
-
- `[features] multi_agent = true, child_agents_md = true`
|
|
197
|
-
- MCPサーバーエントリ(`omx_state`、`omx_memory`、`omx_code_intel`、`omx_trace`)
|
|
198
|
-
- `[tui] status_line`
|
|
199
|
-
- スコープ別`AGENTS.md`
|
|
200
|
-
- `.omx/`ランタイムディレクトリとHUD設定
|
|
201
|
-
|
|
202
|
-
## エージェントとスキル
|
|
203
|
-
|
|
204
|
-
- プロンプト:`prompts/*.md`(`user`は`~/.codex/prompts/`に、`project`は`./.codex/prompts/`にインストール)
|
|
205
|
-
- スキル:`skills/*/SKILL.md`(`user`は`~/.codex/skills/`に、`project`は`./.codex/skills/`にインストール)
|
|
206
|
-
|
|
207
|
-
例:
|
|
208
|
-
- エージェント:`architect`、`planner`、`executor`、`debugger`、`verifier`、`security-reviewer`
|
|
209
|
-
- スキル:`deep-interview`、`ralplan`、`team`、`ralph`、`plan`、`cancel`
|
|
210
|
-
|
|
211
|
-
## プロジェクト構成
|
|
212
|
-
|
|
213
|
-
```text
|
|
214
|
-
oh-my-codex/
|
|
215
|
-
bin/omx.js
|
|
216
|
-
src/
|
|
217
|
-
cli/
|
|
218
|
-
team/
|
|
219
|
-
mcp/
|
|
220
|
-
hooks/
|
|
221
|
-
hud/
|
|
222
|
-
config/
|
|
223
|
-
modes/
|
|
224
|
-
notifications/
|
|
225
|
-
verification/
|
|
226
|
-
prompts/
|
|
227
|
-
skills/
|
|
228
|
-
templates/
|
|
229
|
-
scripts/
|
|
230
|
-
```
|
|
231
|
-
|
|
232
|
-
## 開発
|
|
233
|
-
|
|
234
|
-
```bash
|
|
235
|
-
git clone https://github.com/Yeachan-Heo/oh-my-codex.git
|
|
236
|
-
cd oh-my-codex
|
|
237
|
-
npm install
|
|
238
|
-
npm run build
|
|
239
|
-
npm test
|
|
240
|
-
```
|
|
241
|
-
|
|
242
|
-
## ドキュメント
|
|
243
|
-
|
|
244
|
-
- **[完全なドキュメント](https://yeachan-heo.github.io/oh-my-codex-website/docs.html)** — 完全ガイド
|
|
245
|
-
- **[CLIリファレンス](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#cli-reference)** — すべての`omx`コマンド、フラグ、ツール
|
|
246
|
-
- **[通知ガイド](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#notifications)** — Discord、Telegram、Slack、webhookの設定
|
|
247
|
-
- **[推奨ワークフロー](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#workflows)** — 一般的なタスクのための実戦で検証されたスキルチェーン
|
|
248
|
-
- **[リリースノート](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#release-notes)** — 各バージョンの新機能
|
|
249
|
-
|
|
250
|
-
## 備考
|
|
251
|
-
|
|
252
|
-
- 完全な変更ログ:`CHANGELOG.md`
|
|
253
|
-
- 移行ガイド(v0.4.4以降のmainline):`docs/migration-mainline-post-v0.4.4.md`
|
|
254
|
-
- カバレッジとパリティノート:`COVERAGE.md`
|
|
255
|
-
- Hook拡張ワークフロー:`docs/hooks-extension.md`
|
|
256
|
-
- セットアップと貢献の詳細:`CONTRIBUTING.md`
|
|
257
|
-
|
|
258
|
-
## 謝辞
|
|
259
|
-
|
|
260
|
-
[oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode)にインスパイアされ、Codex CLI向けに適応されました。
|
|
261
|
-
|
|
262
|
-
## ライセンス
|
|
263
|
-
|
|
264
|
-
MIT
|