oh-my-codex 0.8.0 → 0.8.2
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.de.md +7 -2
- package/README.es.md +7 -2
- package/README.fr.md +7 -2
- package/README.it.md +7 -2
- package/README.ja.md +7 -2
- package/README.ko.md +7 -2
- package/README.md +61 -11
- package/README.pt.md +7 -2
- package/README.ru.md +7 -2
- package/README.tr.md +7 -2
- package/README.vi.md +7 -2
- package/README.zh-TW.md +366 -0
- package/README.zh.md +7 -2
- package/dist/cli/__tests__/index.test.js +70 -4
- package/dist/cli/__tests__/index.test.js.map +1 -1
- package/dist/cli/__tests__/setup-skills-overwrite.test.js +100 -1
- package/dist/cli/__tests__/setup-skills-overwrite.test.js.map +1 -1
- package/dist/cli/__tests__/team.test.js +219 -1
- package/dist/cli/__tests__/team.test.js.map +1 -1
- package/dist/cli/catalog-contract.d.ts.map +1 -1
- package/dist/cli/catalog-contract.js +8 -2
- package/dist/cli/catalog-contract.js.map +1 -1
- package/dist/cli/index.d.ts +7 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +58 -12
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/setup.d.ts.map +1 -1
- package/dist/cli/setup.js +50 -17
- package/dist/cli/setup.js.map +1 -1
- package/dist/cli/team.d.ts.map +1 -1
- package/dist/cli/team.js +257 -0
- package/dist/cli/team.js.map +1 -1
- package/dist/config/__tests__/models.test.js +11 -11
- package/dist/config/__tests__/models.test.js.map +1 -1
- package/dist/config/models.d.ts +4 -3
- package/dist/config/models.d.ts.map +1 -1
- package/dist/config/models.js +6 -5
- package/dist/config/models.js.map +1 -1
- package/dist/hooks/__tests__/keyword-detector.test.js +46 -3
- package/dist/hooks/__tests__/keyword-detector.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-all-workers-idle.test.js +23 -7
- package/dist/hooks/__tests__/notify-hook-all-workers-idle.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-team-dispatch.test.js +176 -1
- package/dist/hooks/__tests__/notify-hook-team-dispatch.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js +61 -1
- package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js.map +1 -1
- package/dist/hooks/__tests__/notify-hook-worker-idle.test.js +17 -7
- package/dist/hooks/__tests__/notify-hook-worker-idle.test.js.map +1 -1
- package/dist/hooks/__tests__/openclaw-setup-contract.test.js +26 -16
- package/dist/hooks/__tests__/openclaw-setup-contract.test.js.map +1 -1
- package/dist/hooks/keyword-detector.d.ts +2 -1
- package/dist/hooks/keyword-detector.d.ts.map +1 -1
- package/dist/hooks/keyword-detector.js +41 -4
- package/dist/hooks/keyword-detector.js.map +1 -1
- package/dist/hooks/keyword-registry.d.ts.map +1 -1
- package/dist/hooks/keyword-registry.js +5 -0
- package/dist/hooks/keyword-registry.js.map +1 -1
- package/dist/mcp/__tests__/path-traversal.test.js +9 -227
- package/dist/mcp/__tests__/path-traversal.test.js.map +1 -1
- package/dist/mcp/__tests__/state-server-schema.test.js +16 -20
- package/dist/mcp/__tests__/state-server-schema.test.js.map +1 -1
- package/dist/mcp/__tests__/state-server-team-tools.test.js +30 -487
- package/dist/mcp/__tests__/state-server-team-tools.test.js.map +1 -1
- package/dist/mcp/state-server.d.ts +179 -0
- package/dist/mcp/state-server.d.ts.map +1 -1
- package/dist/mcp/state-server.js +217 -1111
- package/dist/mcp/state-server.js.map +1 -1
- package/dist/mcp/team-server.d.ts.map +1 -1
- package/dist/mcp/team-server.js +28 -7
- package/dist/mcp/team-server.js.map +1 -1
- package/dist/notifications/__tests__/dispatch-cooldown.test.d.ts +5 -0
- package/dist/notifications/__tests__/dispatch-cooldown.test.d.ts.map +1 -0
- package/dist/notifications/__tests__/dispatch-cooldown.test.js +100 -0
- package/dist/notifications/__tests__/dispatch-cooldown.test.js.map +1 -0
- package/dist/notifications/__tests__/temp-mode.test.d.ts +2 -0
- package/dist/notifications/__tests__/temp-mode.test.d.ts.map +1 -0
- package/dist/notifications/__tests__/temp-mode.test.js +172 -0
- package/dist/notifications/__tests__/temp-mode.test.js.map +1 -0
- package/dist/notifications/config.d.ts.map +1 -1
- package/dist/notifications/config.js +59 -6
- package/dist/notifications/config.js.map +1 -1
- package/dist/notifications/dispatch-cooldown.d.ts +36 -0
- package/dist/notifications/dispatch-cooldown.d.ts.map +1 -0
- package/dist/notifications/dispatch-cooldown.js +109 -0
- package/dist/notifications/dispatch-cooldown.js.map +1 -0
- package/dist/notifications/index.d.ts +5 -0
- package/dist/notifications/index.d.ts.map +1 -1
- package/dist/notifications/index.js +39 -8
- package/dist/notifications/index.js.map +1 -1
- package/dist/notifications/temp-contract.d.ts +22 -0
- package/dist/notifications/temp-contract.d.ts.map +1 -0
- package/dist/notifications/temp-contract.js +147 -0
- package/dist/notifications/temp-contract.js.map +1 -0
- package/dist/notifications/types.d.ts +18 -0
- package/dist/notifications/types.d.ts.map +1 -1
- package/dist/openclaw/__tests__/config.test.js +81 -0
- package/dist/openclaw/__tests__/config.test.js.map +1 -1
- package/dist/openclaw/__tests__/dispatcher.test.js +50 -7
- package/dist/openclaw/__tests__/dispatcher.test.js.map +1 -1
- package/dist/openclaw/config.d.ts +4 -0
- package/dist/openclaw/config.d.ts.map +1 -1
- package/dist/openclaw/config.js +110 -16
- package/dist/openclaw/config.js.map +1 -1
- package/dist/openclaw/dispatcher.d.ts +10 -4
- package/dist/openclaw/dispatcher.d.ts.map +1 -1
- package/dist/openclaw/dispatcher.js +40 -10
- package/dist/openclaw/dispatcher.js.map +1 -1
- package/dist/openclaw/types.d.ts +5 -1
- package/dist/openclaw/types.d.ts.map +1 -1
- package/dist/team/__tests__/api-interop.test.d.ts +2 -0
- package/dist/team/__tests__/api-interop.test.d.ts.map +1 -0
- package/dist/team/__tests__/api-interop.test.js +1052 -0
- package/dist/team/__tests__/api-interop.test.js.map +1 -0
- package/dist/team/__tests__/mcp-comm.test.js +30 -0
- package/dist/team/__tests__/mcp-comm.test.js.map +1 -1
- package/dist/team/__tests__/runtime-cli.test.js +6 -0
- package/dist/team/__tests__/runtime-cli.test.js.map +1 -1
- package/dist/team/__tests__/runtime.test.js +52 -22
- package/dist/team/__tests__/runtime.test.js.map +1 -1
- package/dist/team/__tests__/tmux-claude-workers-demo.test.d.ts +2 -0
- package/dist/team/__tests__/tmux-claude-workers-demo.test.d.ts.map +1 -0
- package/dist/team/__tests__/tmux-claude-workers-demo.test.js +190 -0
- package/dist/team/__tests__/tmux-claude-workers-demo.test.js.map +1 -0
- package/dist/team/__tests__/tmux-session.test.js +45 -2
- package/dist/team/__tests__/tmux-session.test.js.map +1 -1
- package/dist/team/__tests__/worker-bootstrap.test.js +20 -12
- package/dist/team/__tests__/worker-bootstrap.test.js.map +1 -1
- package/dist/team/api-interop.d.ts +19 -0
- package/dist/team/api-interop.d.ts.map +1 -0
- package/dist/team/api-interop.js +578 -0
- package/dist/team/api-interop.js.map +1 -0
- package/dist/team/mcp-comm.d.ts.map +1 -1
- package/dist/team/mcp-comm.js +26 -0
- package/dist/team/mcp-comm.js.map +1 -1
- package/dist/team/runtime-cli.d.ts +3 -0
- package/dist/team/runtime-cli.d.ts.map +1 -1
- package/dist/team/runtime-cli.js +24 -2
- package/dist/team/runtime-cli.js.map +1 -1
- package/dist/team/runtime.d.ts.map +1 -1
- package/dist/team/runtime.js +67 -11
- package/dist/team/runtime.js.map +1 -1
- package/dist/team/scaling.js.map +1 -1
- package/dist/team/state/types.d.ts +1 -1
- package/dist/team/state/types.d.ts.map +1 -1
- package/dist/team/state.d.ts +1 -1
- package/dist/team/state.d.ts.map +1 -1
- package/dist/team/tmux-session.d.ts +1 -1
- package/dist/team/tmux-session.d.ts.map +1 -1
- package/dist/team/tmux-session.js +17 -5
- package/dist/team/tmux-session.js.map +1 -1
- package/dist/team/worker-bootstrap.d.ts.map +1 -1
- package/dist/team/worker-bootstrap.js +48 -19
- package/dist/team/worker-bootstrap.js.map +1 -1
- package/package.json +1 -1
- package/scripts/demo-claude-workers.sh +241 -0
- package/scripts/demo-team-e2e.sh +179 -0
- package/scripts/notify-hook/team-dispatch.js +186 -12
- package/scripts/notify-hook/team-leader-nudge.js +42 -2
- package/scripts/notify-hook/team-worker.js +63 -4
- package/skills/configure-notifications/SKILL.md +193 -185
- package/skills/omx-setup/SKILL.md +1 -1
- package/skills/team/SKILL.md +47 -5
- package/skills/worker/SKILL.md +40 -10
- package/templates/AGENTS.md +7 -3
- package/templates/catalog-manifest.json +26 -3
- package/skills/configure-discord/SKILL.md +0 -256
- package/skills/configure-openclaw/SKILL.md +0 -264
- package/skills/configure-slack/SKILL.md +0 -226
- package/skills/configure-telegram/SKILL.md +0 -232
package/README.de.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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
14
|
|
|
15
15
|
Multi-Agenten-Orchestrierungsschicht für [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Empfohlene Leitfäden
|
|
18
|
+
|
|
19
|
+
- [OpenClaw-Integrationsleitfaden für generisches Notification-Gateway](./docs/openclaw-integration.de.md)
|
|
20
|
+
|
|
17
21
|
## Sprachen
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.es.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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)** | **[Guía de integración de OpenClaw](./docs/openclaw-integration.es.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
Capa de orquestación multiagente para [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Guías destacadas
|
|
18
|
+
|
|
19
|
+
- [Guía de integración de OpenClaw / pasarela genérica de notificaciones](./docs/openclaw-integration.es.md)
|
|
20
|
+
|
|
17
21
|
## Idiomas
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.fr.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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)** | **[Guide d’intégration OpenClaw](./docs/openclaw-integration.fr.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
Couche d'orchestration multi-agents pour [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Guides à la une
|
|
18
|
+
|
|
19
|
+
- [Guide d’intégration OpenClaw / passerelle de notifications générique](./docs/openclaw-integration.fr.md)
|
|
20
|
+
|
|
17
21
|
## Langues
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.it.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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
14
|
|
|
15
15
|
Livello di orchestrazione multi-agente per [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Guide in evidenza
|
|
18
|
+
|
|
19
|
+
- [Guida all’integrazione OpenClaw / gateway di notifiche generico](./docs/openclaw-integration.it.md)
|
|
20
|
+
|
|
17
21
|
## Lingue
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.ja.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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 統合ガイド](./docs/openclaw-integration.ja.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
[OpenAI Codex CLI](https://github.com/openai/codex)のためのマルチエージェントオーケストレーションレイヤー。
|
|
16
16
|
|
|
17
|
+
## 注目ガイド
|
|
18
|
+
|
|
19
|
+
- [OpenClaw / 汎用通知ゲートウェイ統合ガイド](./docs/openclaw-integration.ja.md)
|
|
20
|
+
|
|
17
21
|
## 言語
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.ko.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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 통합 가이드](./docs/openclaw-integration.ko.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
[OpenAI Codex CLI](https://github.com/openai/codex)를 위한 멀티 에이전트 오케스트레이션 레이어.
|
|
16
16
|
|
|
17
|
+
## 주요 가이드
|
|
18
|
+
|
|
19
|
+
- [OpenClaw / 범용 알림 게이트웨이 통합 가이드](./docs/openclaw-integration.ko.md)
|
|
20
|
+
|
|
17
21
|
## 언어
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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 Integration Guide](./docs/openclaw-integration.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
Multi-agent orchestration layer for [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Featured Guides
|
|
18
|
+
|
|
19
|
+
- [OpenClaw / Generic Notification Gateway Integration Guide](./docs/openclaw-integration.md)
|
|
20
|
+
|
|
17
21
|
## Languages
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
|
@@ -134,13 +139,15 @@ omx doctor # Installation/runtime diagnostics
|
|
|
134
139
|
omx doctor --team # Team/swarm diagnostics
|
|
135
140
|
omx ask ... # Ask local provider advisor (claude|gemini), writes .omx/artifacts/*
|
|
136
141
|
omx team ... # Start/status/resume/shutdown team workers (interactive tmux by default)
|
|
142
|
+
omx ralph # Launch Codex with ralph persistence mode active
|
|
137
143
|
omx status # Show active modes
|
|
138
144
|
omx cancel # Cancel active execution modes
|
|
139
145
|
omx reasoning <mode> # low|medium|high|xhigh
|
|
140
146
|
omx tmux-hook ... # init|status|validate|test
|
|
141
147
|
omx hooks ... # init|status|validate|test (plugin extension workflow)
|
|
142
148
|
omx hud ... # --watch|--json|--preset
|
|
143
|
-
omx
|
|
149
|
+
omx version # Show version information
|
|
150
|
+
omx help # Show help message
|
|
144
151
|
```
|
|
145
152
|
|
|
146
153
|
Ask command examples:
|
|
@@ -175,13 +182,18 @@ See `docs/hooks-extension.md` for the full extension workflow and event model.
|
|
|
175
182
|
## Launch Flags
|
|
176
183
|
|
|
177
184
|
```bash
|
|
178
|
-
--yolo
|
|
179
|
-
--high
|
|
180
|
-
--xhigh
|
|
181
|
-
--madmax
|
|
182
|
-
--
|
|
183
|
-
--
|
|
184
|
-
--
|
|
185
|
+
--yolo # Launch Codex in yolo mode
|
|
186
|
+
--high # High reasoning effort (shorthand for -c model_reasoning_effort="high")
|
|
187
|
+
--xhigh # xhigh reasoning effort (shorthand for -c model_reasoning_effort="xhigh")
|
|
188
|
+
--madmax # DANGEROUS: bypass Codex approvals and sandbox
|
|
189
|
+
--spark # Use Codex spark model for team workers only (~1.3x faster)
|
|
190
|
+
--madmax-spark # spark model for workers + bypass approvals for leader and workers
|
|
191
|
+
-w, --worktree[=<name>] # Launch Codex in a git worktree (detached when no name given)
|
|
192
|
+
--force # Force reinstall (overwrite existing files)
|
|
193
|
+
--dry-run # Show what would be done without doing it
|
|
194
|
+
--keep-config # Skip config.toml cleanup during uninstall
|
|
195
|
+
--purge # Remove .omx/ cache directory during uninstall
|
|
196
|
+
--verbose # Show detailed output
|
|
185
197
|
--scope <user|project> # setup only
|
|
186
198
|
```
|
|
187
199
|
|
|
@@ -231,6 +243,8 @@ Operational commands:
|
|
|
231
243
|
|
|
232
244
|
```bash
|
|
233
245
|
omx team <args>
|
|
246
|
+
omx team --help
|
|
247
|
+
omx team api --help
|
|
234
248
|
omx team status <team-name>
|
|
235
249
|
omx team resume <team-name>
|
|
236
250
|
omx team shutdown <team-name>
|
|
@@ -295,6 +309,41 @@ Examples:
|
|
|
295
309
|
- Agents: `architect`, `planner`, `executor`, `debugger`, `verifier`, `security-reviewer`
|
|
296
310
|
- Skills: `autopilot`, `plan`, `team`, `ralph`, `ultrawork`, `cancel`
|
|
297
311
|
|
|
312
|
+
### Notification Setup Skill (`$configure-notifications`)
|
|
313
|
+
|
|
314
|
+
Use `$configure-notifications` as the unified entry point for notification setup:
|
|
315
|
+
|
|
316
|
+
- Discord (webhook/bot)
|
|
317
|
+
- Telegram (bot)
|
|
318
|
+
- Slack (webhook)
|
|
319
|
+
- OpenClaw / custom webhook / custom CLI command
|
|
320
|
+
|
|
321
|
+
Examples:
|
|
322
|
+
|
|
323
|
+
```text
|
|
324
|
+
$configure-notifications "configure discord notifications"
|
|
325
|
+
$configure-notifications "configure slack notifications"
|
|
326
|
+
$configure-notifications "configure openclaw notifications"
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
For OpenClaw with **clawdbot agent turns** (instead of direct message forwarding),
|
|
330
|
+
configure a command gateway using `clawdbot agent --deliver --reply-channel ... --reply-to ...`
|
|
331
|
+
and map hook events (`session-start`, `session-idle`, `ask-user-question`, `session-stop`, `session-end`).
|
|
332
|
+
|
|
333
|
+
For dev teams using `#omc-dev`, the OpenClaw guide includes a dedicated runbook for:
|
|
334
|
+
- Korean-only hook responses
|
|
335
|
+
- `sessionId` + `tmuxSession` tracing
|
|
336
|
+
- `SOUL.md`-based follow-up workflow
|
|
337
|
+
|
|
338
|
+
See: `docs/openclaw-integration.md` (Dev Guide section).
|
|
339
|
+
|
|
340
|
+
Required env gates for OpenClaw command mode:
|
|
341
|
+
|
|
342
|
+
```bash
|
|
343
|
+
export OMX_OPENCLAW=1
|
|
344
|
+
export OMX_OPENCLAW_COMMAND=1
|
|
345
|
+
```
|
|
346
|
+
|
|
298
347
|
### Visual QA Loop (`$visual-verdict`)
|
|
299
348
|
|
|
300
349
|
Use `$visual-verdict` when a task depends on visual fidelity (reference image(s) + generated screenshot).
|
|
@@ -340,7 +389,7 @@ npm test
|
|
|
340
389
|
|
|
341
390
|
- **[Full Documentation](https://yeachan-heo.github.io/oh-my-codex-website/docs.html)** - Complete guide
|
|
342
391
|
- **[CLI Reference](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#cli-reference)** - All `omx` commands, flags, and tools
|
|
343
|
-
- **[Notifications Guide](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#notifications)** - Discord, Telegram, Slack, and webhook setup
|
|
392
|
+
- **[Notifications Guide](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#notifications)** - Discord, Telegram, Slack, OpenClaw, and custom command/webhook setup
|
|
344
393
|
- **[Recommended Workflows](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#workflows)** - Battle-tested skill chains for common tasks
|
|
345
394
|
- **[Release Notes](https://yeachan-heo.github.io/oh-my-codex-website/docs.html#release-notes)** - What's new in each version
|
|
346
395
|
|
|
@@ -350,6 +399,7 @@ npm test
|
|
|
350
399
|
- Migration guide (post-v0.4.4 mainline): `docs/migration-mainline-post-v0.4.4.md`
|
|
351
400
|
- Coverage and parity notes: `COVERAGE.md`
|
|
352
401
|
- Hook extension workflow: `docs/hooks-extension.md`
|
|
402
|
+
- OpenClaw integration examples: `docs/openclaw-integration.md`
|
|
353
403
|
- Setup and contribution details: `CONTRIBUTING.md`
|
|
354
404
|
|
|
355
405
|
## Acknowledgments
|
package/README.pt.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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)** | **[Guia de integração OpenClaw](./docs/openclaw-integration.pt.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
Camada de orquestração multiagente para [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Guias em destaque
|
|
18
|
+
|
|
19
|
+
- [Guia de integração OpenClaw / gateway genérico de notificações](./docs/openclaw-integration.pt.md)
|
|
20
|
+
|
|
17
21
|
## Idiomas
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.ru.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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](./docs/openclaw-integration.ru.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
Слой мультиагентной оркестрации для [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Рекомендуемые руководства
|
|
18
|
+
|
|
19
|
+
- [Руководство по интеграции OpenClaw / универсального шлюза уведомлений](./docs/openclaw-integration.ru.md)
|
|
20
|
+
|
|
17
21
|
## Языки
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.tr.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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 Entegrasyon Kılavuzu](./docs/openclaw-integration.tr.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
[OpenAI Codex CLI](https://github.com/openai/codex) için çok ajanlı orkestrasyon katmanı.
|
|
16
16
|
|
|
17
|
+
## Öne çıkan kılavuzlar
|
|
18
|
+
|
|
19
|
+
- [OpenClaw / Genel Bildirim Geçidi Entegrasyon Kılavuzu](./docs/openclaw-integration.tr.md)
|
|
20
|
+
|
|
17
21
|
## Diller
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|
package/README.vi.md
CHANGED
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
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)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
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)** | **[Hướng dẫn tích hợp OpenClaw](./docs/openclaw-integration.vi.md)** | **[GitHub](https://github.com/Yeachan-Heo/oh-my-codex)** | **[npm](https://www.npmjs.com/package/oh-my-codex)**
|
|
14
14
|
|
|
15
15
|
Lớp điều phối đa tác nhân cho [OpenAI Codex CLI](https://github.com/openai/codex).
|
|
16
16
|
|
|
17
|
+
## Hướng dẫn nổi bật
|
|
18
|
+
|
|
19
|
+
- [Hướng dẫn tích hợp OpenClaw / cổng thông báo chung](./docs/openclaw-integration.vi.md)
|
|
20
|
+
|
|
17
21
|
## Ngôn ngữ
|
|
18
22
|
|
|
19
23
|
- [English](./README.md)
|
|
20
24
|
- [한국어 (Korean)](./README.ko.md)
|
|
21
25
|
- [日本語 (Japanese)](./README.ja.md)
|
|
22
|
-
- [简体中文 (Chinese)](./README.zh.md)
|
|
26
|
+
- [简体中文 (Chinese Simplified)](./README.zh.md)
|
|
27
|
+
- [繁體中文 (Chinese Traditional)](./README.zh-TW.md)
|
|
23
28
|
- [Tiếng Việt (Vietnamese)](./README.vi.md)
|
|
24
29
|
- [Español (Spanish)](./README.es.md)
|
|
25
30
|
- [Português (Portuguese)](./README.pt.md)
|