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.de.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>Dein Codex ist nicht allein.</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)** | **[OpenClaw-Integrationsleitfaden](./docs/openclaw-integration.de.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
|
-
|
|
15
|
-
Multi-Agenten-Orchestrierungsschicht für [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
|
-
|
|
17
|
-
## Neu in v0.9.0 — Spark Initiative
|
|
18
|
-
|
|
19
|
-
Spark Initiative ist das Release, das den nativen Pfad für Exploration und Inspektion in OMX stärkt.
|
|
20
|
-
|
|
21
|
-
- **Nativer Harness für `omx explore`** — führt Read-only-Repository-Exploration über einen schnelleren und strengeren Rust-Pfad aus.
|
|
22
|
-
- **`omx sparkshell`** — native Operator-Oberfläche für Inspektion mit Zusammenfassungen langer Ausgaben und expliziter tmux-Pane-Erfassung.
|
|
23
|
-
- **Plattformübergreifende native Release-Artefakte** — der Hydration-Pfad für `omx-explore-harness`, `omx-sparkshell` und `native-release-manifest.json` ist jetzt Teil der Release-Pipeline.
|
|
24
|
-
- **Gehärtetes CI/CD** — ergänzt ein explizites Rust-Toolchain-Setup im `build`-Job sowie `cargo fmt --check` und `cargo clippy -- -D warnings`.
|
|
25
|
-
|
|
26
|
-
Siehe auch die [Release Notes zu v0.9.0](./docs/release-notes-0.9.0.md) und den [Release-Text](./docs/release-body-0.9.0.md).
|
|
27
|
-
|
|
28
|
-
## Erste Sitzung
|
|
29
|
-
|
|
30
|
-
Innerhalb von 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
|
-
Vom Terminal:
|
|
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
|
-
## Empfohlener Workflow
|
|
48
|
-
|
|
49
|
-
1. `$deep-interview` — wenn Scope oder Grenzen noch unklar sind.
|
|
50
|
-
2. `$ralplan` — um daraus einen abgestimmten Architektur- und Umsetzungsplan zu machen.
|
|
51
|
-
3. `$team` oder `$ralph` — nutzen Sie `$team` für koordinierte parallele Ausführung oder `$ralph` für einen hartnäckigen Abschluss-/Verifikations-Loop mit einer verantwortlichen Instanz.
|
|
52
|
-
|
|
53
|
-
## Kernmodell
|
|
54
|
-
|
|
55
|
-
OMX installiert und verbindet diese Schichten:
|
|
56
|
-
|
|
57
|
-
```text
|
|
58
|
-
User
|
|
59
|
-
-> Codex CLI
|
|
60
|
-
-> AGENTS.md (Orchestrierungs-Gehirn)
|
|
61
|
-
-> ~/.codex/prompts/*.md (Agenten-Prompt-Katalog)
|
|
62
|
-
-> ~/.codex/skills/*/SKILL.md (Skill-Katalog)
|
|
63
|
-
-> ~/.codex/config.toml (Features, Benachrichtigungen, MCP)
|
|
64
|
-
-> .omx/ (Laufzeitzustand, Speicher, Pläne, Protokolle)
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Hauptbefehle
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
omx # Codex starten (+ HUD in tmux wenn verfügbar)
|
|
71
|
-
omx setup # Prompts/Skills/Config nach Bereich installieren + Projekt-.omx + bereichsspezifische AGENTS.md
|
|
72
|
-
omx doctor # Installations-/Laufzeitdiagnose
|
|
73
|
-
omx doctor --team # Team/Swarm-Diagnose
|
|
74
|
-
omx team ... # tmux-Team-Worker starten/Status/fortsetzen/herunterfahren
|
|
75
|
-
omx status # Aktive Modi anzeigen
|
|
76
|
-
omx cancel # Aktive Ausführungsmodi abbrechen
|
|
77
|
-
omx reasoning <mode> # low|medium|high|xhigh
|
|
78
|
-
omx tmux-hook ... # init|status|validate|test
|
|
79
|
-
omx hooks ... # init|status|validate|test (Plugin-Erweiterungs-Workflow)
|
|
80
|
-
omx hud ... # --watch|--json|--preset
|
|
81
|
-
omx help
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
## Hooks-Erweiterung (Additive Oberfläche)
|
|
85
|
-
|
|
86
|
-
OMX enthält jetzt `omx hooks` für Plugin-Gerüstbau und -Validierung.
|
|
87
|
-
|
|
88
|
-
- `omx tmux-hook` wird weiterhin unterstützt und ist unverändert.
|
|
89
|
-
- `omx hooks` ist additiv und ersetzt keine tmux-hook-Workflows.
|
|
90
|
-
- Plugin-Dateien befinden sich unter `.omx/hooks/*.mjs`.
|
|
91
|
-
- Plugins sind standardmäßig deaktiviert; aktivieren mit `OMX_HOOK_PLUGINS=1`.
|
|
92
|
-
|
|
93
|
-
Siehe `docs/hooks-extension.md` für den vollständigen Erweiterungs-Workflow und das Ereignismodell.
|
|
94
|
-
|
|
95
|
-
## Start-Flags
|
|
96
|
-
|
|
97
|
-
```bash
|
|
98
|
-
--yolo
|
|
99
|
-
--high
|
|
100
|
-
--xhigh
|
|
101
|
-
--madmax
|
|
102
|
-
--force
|
|
103
|
-
--dry-run
|
|
104
|
-
--verbose
|
|
105
|
-
--scope <user|project> # nur bei setup
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
`--madmax` entspricht Codex `--dangerously-bypass-approvals-and-sandbox`.
|
|
109
|
-
Nur in vertrauenswürdigen/externen Sandbox-Umgebungen verwenden.
|
|
110
|
-
|
|
111
|
-
### MCP workingDirectory-Richtlinie (optionale Härtung)
|
|
112
|
-
|
|
113
|
-
Standardmäßig akzeptieren MCP-Zustand/Speicher/Trace-Tools das vom Aufrufer bereitgestellte `workingDirectory`.
|
|
114
|
-
Um dies einzuschränken, setzen Sie eine Erlaubnisliste von Wurzelverzeichnissen:
|
|
115
|
-
|
|
116
|
-
```bash
|
|
117
|
-
export OMX_MCP_WORKDIR_ROOTS="/path/to/project:/path/to/another-root"
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
Wenn gesetzt, werden `workingDirectory`-Werte außerhalb dieser Wurzeln abgelehnt.
|
|
121
|
-
|
|
122
|
-
## Codex-First Prompt-Steuerung
|
|
123
|
-
|
|
124
|
-
Standardmäßig injiziert OMX:
|
|
125
|
-
|
|
126
|
-
```text
|
|
127
|
-
-c model_instructions_file="<cwd>/AGENTS.md"
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
Dies kombiniert `AGENTS.md` aus `CODEX_HOME` mit dem Projekt-`AGENTS.md` (falls vorhanden) und legt dann die Laufzeit-Überlagerung darüber.
|
|
131
|
-
Es erweitert das Codex-Verhalten, ersetzt/umgeht aber nicht die Codex-Kernsystemrichtlinien.
|
|
132
|
-
|
|
133
|
-
Steuerung:
|
|
134
|
-
|
|
135
|
-
```bash
|
|
136
|
-
OMX_BYPASS_DEFAULT_SYSTEM_PROMPT=0 omx # AGENTS.md-Injektion deaktivieren
|
|
137
|
-
OMX_MODEL_INSTRUCTIONS_FILE=/path/to/instructions.md omx
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
## Team-Modus
|
|
141
|
-
|
|
142
|
-
Verwenden Sie den Team-Modus für umfangreiche Arbeiten, die von parallelen Workern profitieren.
|
|
143
|
-
|
|
144
|
-
Lebenszyklus:
|
|
145
|
-
|
|
146
|
-
```text
|
|
147
|
-
start -> assign scoped lanes -> monitor -> verify terminal tasks -> shutdown
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
Operationelle Befehle:
|
|
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
|
-
Wichtige Regel: Fahren Sie nicht herunter, während Aufgaben noch `in_progress` sind, es sei denn, Sie brechen ab.
|
|
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
|
-
Worker-CLI-Auswahl für Team-Worker:
|
|
167
|
-
|
|
168
|
-
```bash
|
|
169
|
-
OMX_TEAM_WORKER_CLI=auto # Standard; verwendet claude wenn Worker --model "claude" enthält
|
|
170
|
-
OMX_TEAM_WORKER_CLI=codex # Codex-CLI-Worker erzwingen
|
|
171
|
-
OMX_TEAM_WORKER_CLI=claude # Claude-CLI-Worker erzwingen
|
|
172
|
-
OMX_TEAM_WORKER_CLI_MAP=codex,codex,claude,claude # CLI-Mix pro Worker (Länge=1 oder Worker-Anzahl)
|
|
173
|
-
OMX_TEAM_AUTO_INTERRUPT_RETRY=0 # optional: adaptiven Queue->Resend-Fallback deaktivieren
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
Hinweise:
|
|
177
|
-
- Worker-Startargumente werden weiterhin über `OMX_TEAM_WORKER_LAUNCH_ARGS` geteilt.
|
|
178
|
-
- `OMX_TEAM_WORKER_CLI_MAP` überschreibt `OMX_TEAM_WORKER_CLI` für Worker-spezifische Auswahl.
|
|
179
|
-
- Trigger-Übermittlung verwendet standardmäßig adaptive Wiederholungsversuche (Queue/Submit, dann sicherer Clear-Line+Resend-Fallback bei Bedarf).
|
|
180
|
-
- Im Claude-Worker-Modus startet OMX Worker als einfaches `claude` (keine zusätzlichen Startargumente) und ignoriert explizite `--model` / `--config` / `--effort`-Überschreibungen, sodass Claude die Standard-`settings.json` verwendet.
|
|
181
|
-
|
|
182
|
-
## Was `omx setup` schreibt
|
|
183
|
-
|
|
184
|
-
- `.omx/setup-scope.json` (persistierter Setup-Bereich)
|
|
185
|
-
- Bereichsabhängige Installationen:
|
|
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
|
-
- Startverhalten: Wenn der persistierte Bereich `project` ist, verwendet `omx` automatisch `CODEX_HOME=./.codex` (sofern `CODEX_HOME` nicht bereits gesetzt ist).
|
|
189
|
-
- Startanweisungen kombinieren `~/.codex/AGENTS.md` (bzw. `CODEX_HOME/AGENTS.md`, wenn überschrieben) mit dem Projekt-`./AGENTS.md` und hängen anschließend die Runtime-Überlagerung an.
|
|
190
|
-
- Vorhandene `AGENTS.md`-Dateien werden nie stillschweigend überschrieben: Interaktive TTY-Läufe fragen vor dem Ersetzen, nicht-interaktive Läufe überspringen das Ersetzen ohne `--force` (aktive Sitzungs-Sicherheitsprüfungen gelten weiterhin).
|
|
191
|
-
- `config.toml`-Aktualisierungen (für beide Bereiche):
|
|
192
|
-
- `notify = ["node", "..."]`
|
|
193
|
-
- `model_reasoning_effort = "high"`
|
|
194
|
-
- `developer_instructions = "..."`
|
|
195
|
-
- `[features] multi_agent = true, child_agents_md = true`
|
|
196
|
-
- MCP-Server-Einträge (`omx_state`, `omx_memory`, `omx_code_intel`, `omx_trace`)
|
|
197
|
-
- `[tui] status_line`
|
|
198
|
-
- Bereichsspezifische `AGENTS.md`
|
|
199
|
-
- `.omx/`-Laufzeitverzeichnisse und HUD-Konfiguration
|
|
200
|
-
|
|
201
|
-
## Agenten und Skills
|
|
202
|
-
|
|
203
|
-
- Prompts: `prompts/*.md` (installiert nach `~/.codex/prompts/` für `user`, `./.codex/prompts/` für `project`)
|
|
204
|
-
- Skills: `skills/*/SKILL.md` (installiert nach `~/.codex/skills/` für `user`, `./.codex/skills/` für `project`)
|
|
205
|
-
|
|
206
|
-
Beispiele:
|
|
207
|
-
- Agenten: `architect`, `planner`, `executor`, `debugger`, `verifier`, `security-reviewer`
|
|
208
|
-
- Skills: `deep-interview`, `ralplan`, `team`, `ralph`, `plan`, `cancel`
|
|
209
|
-
|
|
210
|
-
## Projektstruktur
|
|
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
|
-
## Entwicklung
|
|
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
|
-
## Dokumentation
|
|
242
|
-
|
|
243
|
-
- **[Vollständige Dokumentation](https://yeachan-heo.github.io/oh-my-codex-website/docs.html)** — Kompletter Leitfaden
|
|
244
|
-
- **[CLI-Referenz](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#cli-reference)** — Alle `omx`-Befehle, Flags und Tools
|
|
245
|
-
- **[Benachrichtigungs-Leitfaden](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#notifications)** — Discord, Telegram, Slack und Webhook-Einrichtung
|
|
246
|
-
- **[Empfohlene Workflows](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#workflows)** — Praxiserprobte Skill-Ketten für häufige Aufgaben
|
|
247
|
-
- **[Versionshinweise](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#release-notes)** — Neuheiten in jeder Version
|
|
248
|
-
|
|
249
|
-
## Hinweise
|
|
250
|
-
|
|
251
|
-
- Vollständiges Änderungsprotokoll: `CHANGELOG.md`
|
|
252
|
-
- Migrationsleitfaden (nach v0.4.4 mainline): `docs/migration-mainline-post-v0.4.4.md`
|
|
253
|
-
- Abdeckungs- und Paritätsnotizen: `COVERAGE.md`
|
|
254
|
-
- Hook-Erweiterungs-Workflow: `docs/hooks-extension.md`
|
|
255
|
-
- Setup- und Beitragsdetails: `CONTRIBUTING.md`
|
|
256
|
-
|
|
257
|
-
## Danksagungen
|
|
258
|
-
|
|
259
|
-
Inspiriert von [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode), angepasst für Codex CLI.
|
|
260
|
-
|
|
261
|
-
## Lizenz
|
|
262
|
-
|
|
263
|
-
MIT
|
package/README.el.md
DELETED
|
@@ -1,223 +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 πιο δυναμικά και αφήστε το OMX να προσθέσει καλύτερα prompts, workflows και runtime υποστήριξη όταν η δουλειά μεγαλώνει.</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
|
-
**Ιστοσελίδα:** https://yeachan-heo.github.io/oh-my-codex-website/
|
|
15
|
-
**Τεκμηρίωση:** [Ξεκινώντας](./docs/getting-started.html) · [Agents](./docs/agents.html) · [Skills](./docs/skills.html) · [Ενσωματώσεις](./docs/integrations.html) · [Demo](./DEMO.md) · [Οδηγός OpenClaw](./docs/openclaw-integration.md)
|
|
16
|
-
|
|
17
|
-
Το OMX είναι ένα workflow layer για το [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
18
|
-
|
|
19
|
-
Διατηρεί το Codex ως μηχανή εκτέλεσης και διευκολύνει τα εξής:
|
|
20
|
-
- να ξεκινάτε μια πιο δυναμική συνεδρία Codex από προεπιλογή
|
|
21
|
-
- να ακολουθείτε μία συνεπή ροή από διευκρίνιση μέχρι ολοκλήρωση
|
|
22
|
-
- να ενεργοποιείτε το βασικό μονοπάτι με `$deep-interview`, `$ralplan`, `$team` και `$ralph`
|
|
23
|
-
- να κρατάτε οδηγίες έργου, σχέδια, αρχεία καταγραφής και κατάσταση στον φάκελο `.omx/`
|
|
24
|
-
|
|
25
|
-
## Προτεινόμενη προεπιλεγμένη ροή
|
|
26
|
-
|
|
27
|
-
Αν θέλετε την προεπιλεγμένη εμπειρία OMX, ξεκινήστε εδώ:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
npm install -g @openai/codex oh-my-codex
|
|
31
|
-
omx setup
|
|
32
|
-
omx --madmax --high
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
Στη συνέχεια εργαστείτε κανονικά μέσα στο Codex:
|
|
36
|
-
|
|
37
|
-
```text
|
|
38
|
-
$deep-interview "clarify the authentication change"
|
|
39
|
-
$ralplan "approve the auth plan and review tradeoffs"
|
|
40
|
-
$ralph "carry the approved plan to completion"
|
|
41
|
-
$team 3:executor "execute the approved plan in parallel"
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
Αυτή είναι η βασική ροή.
|
|
45
|
-
Ξεκινήστε δυνατά, ξεκαθαρίστε πρώτα όταν χρειάζεται, εγκρίνετε το σχέδιο και μετά επιλέξτε `$team` για συντονισμένη παράλληλη εκτέλεση ή `$ralph` για επίμονο βρόχο ολοκλήρωσης.
|
|
46
|
-
|
|
47
|
-
## Σε τι χρησιμεύει το OMX
|
|
48
|
-
|
|
49
|
-
Χρησιμοποιήστε το OMX αν σας αρέσει ήδη το Codex και θέλετε ένα καλύτερο καθημερινό περιβάλλον εργασίας γύρω του:
|
|
50
|
-
- μια τυπική ροή βασισμένη στα `$deep-interview`, `$ralplan`, `$team` και `$ralph`
|
|
51
|
-
- εξειδικευμένους ρόλους και βοηθητικά skills όταν πραγματικά χρειάζονται
|
|
52
|
-
- καθοδήγηση έργου μέσω scoped `AGENTS.md`
|
|
53
|
-
- επίμονη κατάσταση στον `.omx/` για σχέδια, αρχεία καταγραφής, μνήμη και παρακολούθηση λειτουργίας
|
|
54
|
-
|
|
55
|
-
Αν θέλετε απλό Codex χωρίς επιπλέον επίπεδο ροής εργασίας, πιθανότατα δεν χρειάζεστε το OMX.
|
|
56
|
-
|
|
57
|
-
## Γρήγορη εκκίνηση
|
|
58
|
-
|
|
59
|
-
### Απαιτήσεις
|
|
60
|
-
|
|
61
|
-
- Node.js 20+
|
|
62
|
-
- Εγκατεστημένο Codex CLI: `npm install -g @openai/codex`
|
|
63
|
-
- Ρυθμισμένη αυθεντικοποίηση Codex
|
|
64
|
-
- `tmux` σε macOS/Linux αν θέλετε αργότερα τον ανθεκτικό team runtime
|
|
65
|
-
- `psmux` σε native Windows αν θέλετε αργότερα τη λειτουργία team για Windows
|
|
66
|
-
|
|
67
|
-
### Μια καλή πρώτη συνεδρία
|
|
68
|
-
|
|
69
|
-
Εκκινήστε το OMX με τον προτεινόμενο τρόπο:
|
|
70
|
-
|
|
71
|
-
```bash
|
|
72
|
-
omx --madmax --high
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
Στη συνέχεια δοκιμάστε την τυπική ροή:
|
|
76
|
-
|
|
77
|
-
```text
|
|
78
|
-
$deep-interview "clarify the authentication change"
|
|
79
|
-
$ralplan "approve the safest implementation path"
|
|
80
|
-
$ralph "carry the approved plan to completion"
|
|
81
|
-
$team 3:executor "execute the approved plan in parallel"
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
Χρησιμοποιήστε `$team` όταν το εγκεκριμένο σχέδιο χρειάζεται συντονισμένη παράλληλη εργασία ή `$ralph` όταν ένας επίμονος υπεύθυνος πρέπει να το φέρει μέχρι τέλους.
|
|
85
|
-
|
|
86
|
-
## Ένα απλό νοητικό μοντέλο
|
|
87
|
-
|
|
88
|
-
Το OMX **δεν** αντικαθιστά το Codex.
|
|
89
|
-
|
|
90
|
-
Προσθέτει ένα καλύτερο workflow layer γύρω του:
|
|
91
|
-
- **Codex** κάνει την πραγματική δουλειά του agent
|
|
92
|
-
- **Keywords ρόλων OMX** κάνουν τους χρήσιμους ρόλους επαναχρησιμοποιήσιμους
|
|
93
|
-
- **Skills OMX** κάνουν τα συνηθισμένα workflows επαναχρησιμοποιήσιμα
|
|
94
|
-
- **`.omx/`** αποθηκεύει σχέδια, αρχεία καταγραφής, μνήμη και κατάσταση εκτέλεσης
|
|
95
|
-
|
|
96
|
-
Οι περισσότεροι χρήστες καλό είναι να βλέπουν το OMX ως **καλύτερη δρομολόγηση εργασιών + καλύτερο workflow + καλύτερο runtime**, όχι ως ένα σύνολο εντολών για χειροκίνητη χρήση όλη μέρα.
|
|
97
|
-
|
|
98
|
-
## Ξεκινήστε εδώ αν είστε νέοι
|
|
99
|
-
|
|
100
|
-
1. Εκτελέστε `omx setup`
|
|
101
|
-
2. Εκκινήστε με `omx --madmax --high`
|
|
102
|
-
3. Χρησιμοποιήστε `$deep-interview "..."` όταν το αίτημα ή τα όρια είναι ακόμη ασαφή
|
|
103
|
-
4. Χρησιμοποιήστε `$ralplan "..."` για να εγκρίνετε το σχέδιο και τους συμβιβασμούς
|
|
104
|
-
5. Επιλέξτε `$team` για συντονισμένη παράλληλη εκτέλεση ή `$ralph` για επίμονο βρόχο ολοκλήρωσης
|
|
105
|
-
|
|
106
|
-
## Συνήθη surfaces μέσα στη συνεδρία
|
|
107
|
-
|
|
108
|
-
| Λειτουργία | Χρήση |
|
|
109
|
-
| --- | --- |
|
|
110
|
-
| `$deep-interview "..."` | αποσαφήνιση πρόθεσης, ορίων και μη-στόχων |
|
|
111
|
-
| `$ralplan "..."` | έγκριση σχεδίου υλοποίησης και συμβιβασμών |
|
|
112
|
-
| `$ralph "..."` | επίμονος βρόχος ολοκλήρωσης και επαλήθευσης |
|
|
113
|
-
| `$team "..."` | συντονισμένη παράλληλη εκτέλεση όταν η εργασία είναι αρκετά μεγάλη |
|
|
114
|
-
| `/skills` | περιήγηση στα διαθέσιμα skills και βοηθητικά εργαλεία |
|
|
115
|
-
|
|
116
|
-
Χρησιμοποιήστε `$deep-interview` όταν το αίτημα είναι ακόμη ασαφές, τα όρια δεν είναι ξεκάθαρα ή θέλετε το OMX να πιέσει μέχρι να ξεκαθαρίσει πρόθεση, μη-στόχους και όρια αποφάσεων πριν περάσει στο `$ralplan` και έπειτα στο `$team` ή στο `$ralph`.
|
|
117
|
-
|
|
118
|
-
Τυπικές περιπτώσεις:
|
|
119
|
-
- ασαφείς greenfield ιδέες που χρειάζονται πιο καθαρή πρόθεση και εύρος
|
|
120
|
-
- brownfield αλλαγές όπου το OMX πρέπει πρώτα να εξετάσει το repo και μετά να κάνει στοχευμένες ερωτήσεις επιβεβαίωσης
|
|
121
|
-
- αιτήματα όπου θέλετε έναν βρόχο διευκρίνισης μία-ερώτηση-τη-φορά αντί για άμεσο σχεδιασμό ή υλοποίηση
|
|
122
|
-
|
|
123
|
-
## Προχωρημένες λειτουργίες / για διαχειριστές
|
|
124
|
-
|
|
125
|
-
Αυτά είναι χρήσιμα, αλλά δεν είναι ο βασικός τρόπος για να ξεκινήσετε.
|
|
126
|
-
|
|
127
|
-
### Team runtime
|
|
128
|
-
|
|
129
|
-
Χρησιμοποιήστε τον team runtime όταν χρειάζεστε ειδικά ανθεκτικό συντονισμό tmux/worktree, όχι ως τον προεπιλεγμένο τρόπο για να ξεκινήσετε με το OMX.
|
|
130
|
-
|
|
131
|
-
```bash
|
|
132
|
-
omx team 3:executor "fix the failing tests with verification"
|
|
133
|
-
omx team status <team-name>
|
|
134
|
-
omx team resume <team-name>
|
|
135
|
-
omx team shutdown <team-name>
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
### Setup, doctor και HUD
|
|
139
|
-
|
|
140
|
-
Αυτές είναι λειτουργίες διαχείρισης/υποστήριξης:
|
|
141
|
-
- `omx setup` εγκαθιστά prompts, skills, ρυθμίσεις και scaffolding AGENTS
|
|
142
|
-
- `omx doctor` επαληθεύει την εγκατάσταση όταν κάτι φαίνεται λάθος
|
|
143
|
-
- `omx hud --watch` είναι λειτουργία παρακολούθησης/κατάστασης, όχι η κύρια ροή εργασίας του χρήστη
|
|
144
|
-
|
|
145
|
-
### Explore και sparkshell
|
|
146
|
-
|
|
147
|
-
- `omx explore --prompt "..."` είναι για αναζήτηση μόνο ανάγνωσης στο repository
|
|
148
|
-
- `omx sparkshell <command>` είναι για επιθεώρηση απευθείας από το shell και στοχευμένη επαλήθευση
|
|
149
|
-
|
|
150
|
-
Παραδείγματα:
|
|
151
|
-
|
|
152
|
-
```bash
|
|
153
|
-
omx explore --prompt "find where team state is written"
|
|
154
|
-
omx sparkshell git status
|
|
155
|
-
omx sparkshell --tmux-pane %12 --tail-lines 400
|
|
156
|
-
```
|
|
157
|
-
|
|
158
|
-
### Σημειώσεις πλατφόρμας για τη λειτουργία team
|
|
159
|
-
|
|
160
|
-
Η `omx team` χρειάζεται ένα tmux-συμβατό backend:
|
|
161
|
-
|
|
162
|
-
| Πλατφόρμα | Εγκατάσταση |
|
|
163
|
-
| --- | --- |
|
|
164
|
-
| macOS | `brew install tmux` |
|
|
165
|
-
| Ubuntu/Debian | `sudo apt install tmux` |
|
|
166
|
-
| Fedora | `sudo dnf install tmux` |
|
|
167
|
-
| Arch | `sudo pacman -S tmux` |
|
|
168
|
-
| Windows | `winget install psmux` |
|
|
169
|
-
| Windows (WSL2) | `sudo apt install tmux` |
|
|
170
|
-
|
|
171
|
-
## Γνωστά ζητήματα
|
|
172
|
-
|
|
173
|
-
### Mac με Intel: υψηλή χρήση CPU `syspolicyd` / `trustd` κατά την εκκίνηση
|
|
174
|
-
|
|
175
|
-
Σε ορισμένα Mac με Intel, η εκκίνηση του OMX, ειδικά με `--madmax --high`, μπορεί να αυξήσει απότομα τη χρήση CPU των `syspolicyd` / `trustd` ενώ το macOS Gatekeeper επαληθεύει πολλές ταυτόχρονες εκκινήσεις διεργασιών.
|
|
176
|
-
|
|
177
|
-
Αν συμβεί αυτό, δοκιμάστε:
|
|
178
|
-
- `xattr -dr com.apple.quarantine $(which omx)`
|
|
179
|
-
- προσθέστε την εφαρμογή τερματικού σας στη λίστα επιτρεπόμενων Developer Tools στις ρυθμίσεις Ασφάλειας του macOS
|
|
180
|
-
- χρησιμοποιήστε χαμηλότερο επίπεδο ταυτόχρονων εκτελέσεων (για παράδειγμα, αποφύγετε `--madmax --high`)
|
|
181
|
-
|
|
182
|
-
## Τεκμηρίωση
|
|
183
|
-
|
|
184
|
-
- [Ξεκινώντας](./docs/getting-started.html)
|
|
185
|
-
- [Οδηγός Demo](./DEMO.md)
|
|
186
|
-
- [Κατάλογος Agents](./docs/agents.html)
|
|
187
|
-
- [Αναφορά Skills](./docs/skills.html)
|
|
188
|
-
- [Ενσωματώσεις](./docs/integrations.html)
|
|
189
|
-
- [Οδηγός OpenClaw / notification gateway](./docs/openclaw-integration.md)
|
|
190
|
-
- [Συνεισφορά](./CONTRIBUTING.md)
|
|
191
|
-
- [Αρχείο αλλαγών](./CHANGELOG.md)
|
|
192
|
-
|
|
193
|
-
## Γλώσσες
|
|
194
|
-
|
|
195
|
-
- [English](./README.md)
|
|
196
|
-
- [한국어](./README.ko.md)
|
|
197
|
-
- [日本語](./README.ja.md)
|
|
198
|
-
- [简体中文](./README.zh.md)
|
|
199
|
-
- [繁體中文](./README.zh-TW.md)
|
|
200
|
-
- [Tiếng Việt](./README.vi.md)
|
|
201
|
-
- [Español](./README.es.md)
|
|
202
|
-
- [Português](./README.pt.md)
|
|
203
|
-
- [Русский](./README.ru.md)
|
|
204
|
-
- [Türkçe](./README.tr.md)
|
|
205
|
-
- [Deutsch](./README.de.md)
|
|
206
|
-
- [Français](./README.fr.md)
|
|
207
|
-
- [Italiano](./README.it.md)
|
|
208
|
-
- [Ελληνικά](./README.el.md)
|
|
209
|
-
|
|
210
|
-
## Συνεισφέροντες
|
|
211
|
-
|
|
212
|
-
| Ρόλος | Όνομα | GitHub |
|
|
213
|
-
| --- | --- | --- |
|
|
214
|
-
| Δημιουργός & Επικεφαλής | Yeachan Heo | [@Yeachan-Heo](https://github.com/Yeachan-Heo) |
|
|
215
|
-
| Συντηρητής | HaD0Yun | [@HaD0Yun](https://github.com/HaD0Yun) |
|
|
216
|
-
|
|
217
|
-
## Ιστορικό Αστεριών
|
|
218
|
-
|
|
219
|
-
[](https://www.star-history.com/#Yeachan-Heo/oh-my-codex&type=date&legend=top-left)
|
|
220
|
-
|
|
221
|
-
## Άδεια
|
|
222
|
-
|
|
223
|
-
MIT
|