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.
Files changed (169) hide show
  1. package/README.de.md +7 -2
  2. package/README.es.md +7 -2
  3. package/README.fr.md +7 -2
  4. package/README.it.md +7 -2
  5. package/README.ja.md +7 -2
  6. package/README.ko.md +7 -2
  7. package/README.md +61 -11
  8. package/README.pt.md +7 -2
  9. package/README.ru.md +7 -2
  10. package/README.tr.md +7 -2
  11. package/README.vi.md +7 -2
  12. package/README.zh-TW.md +366 -0
  13. package/README.zh.md +7 -2
  14. package/dist/cli/__tests__/index.test.js +70 -4
  15. package/dist/cli/__tests__/index.test.js.map +1 -1
  16. package/dist/cli/__tests__/setup-skills-overwrite.test.js +100 -1
  17. package/dist/cli/__tests__/setup-skills-overwrite.test.js.map +1 -1
  18. package/dist/cli/__tests__/team.test.js +219 -1
  19. package/dist/cli/__tests__/team.test.js.map +1 -1
  20. package/dist/cli/catalog-contract.d.ts.map +1 -1
  21. package/dist/cli/catalog-contract.js +8 -2
  22. package/dist/cli/catalog-contract.js.map +1 -1
  23. package/dist/cli/index.d.ts +7 -1
  24. package/dist/cli/index.d.ts.map +1 -1
  25. package/dist/cli/index.js +58 -12
  26. package/dist/cli/index.js.map +1 -1
  27. package/dist/cli/setup.d.ts.map +1 -1
  28. package/dist/cli/setup.js +50 -17
  29. package/dist/cli/setup.js.map +1 -1
  30. package/dist/cli/team.d.ts.map +1 -1
  31. package/dist/cli/team.js +257 -0
  32. package/dist/cli/team.js.map +1 -1
  33. package/dist/config/__tests__/models.test.js +11 -11
  34. package/dist/config/__tests__/models.test.js.map +1 -1
  35. package/dist/config/models.d.ts +4 -3
  36. package/dist/config/models.d.ts.map +1 -1
  37. package/dist/config/models.js +6 -5
  38. package/dist/config/models.js.map +1 -1
  39. package/dist/hooks/__tests__/keyword-detector.test.js +46 -3
  40. package/dist/hooks/__tests__/keyword-detector.test.js.map +1 -1
  41. package/dist/hooks/__tests__/notify-hook-all-workers-idle.test.js +23 -7
  42. package/dist/hooks/__tests__/notify-hook-all-workers-idle.test.js.map +1 -1
  43. package/dist/hooks/__tests__/notify-hook-team-dispatch.test.js +176 -1
  44. package/dist/hooks/__tests__/notify-hook-team-dispatch.test.js.map +1 -1
  45. package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js +61 -1
  46. package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js.map +1 -1
  47. package/dist/hooks/__tests__/notify-hook-worker-idle.test.js +17 -7
  48. package/dist/hooks/__tests__/notify-hook-worker-idle.test.js.map +1 -1
  49. package/dist/hooks/__tests__/openclaw-setup-contract.test.js +26 -16
  50. package/dist/hooks/__tests__/openclaw-setup-contract.test.js.map +1 -1
  51. package/dist/hooks/keyword-detector.d.ts +2 -1
  52. package/dist/hooks/keyword-detector.d.ts.map +1 -1
  53. package/dist/hooks/keyword-detector.js +41 -4
  54. package/dist/hooks/keyword-detector.js.map +1 -1
  55. package/dist/hooks/keyword-registry.d.ts.map +1 -1
  56. package/dist/hooks/keyword-registry.js +5 -0
  57. package/dist/hooks/keyword-registry.js.map +1 -1
  58. package/dist/mcp/__tests__/path-traversal.test.js +9 -227
  59. package/dist/mcp/__tests__/path-traversal.test.js.map +1 -1
  60. package/dist/mcp/__tests__/state-server-schema.test.js +16 -20
  61. package/dist/mcp/__tests__/state-server-schema.test.js.map +1 -1
  62. package/dist/mcp/__tests__/state-server-team-tools.test.js +30 -487
  63. package/dist/mcp/__tests__/state-server-team-tools.test.js.map +1 -1
  64. package/dist/mcp/state-server.d.ts +179 -0
  65. package/dist/mcp/state-server.d.ts.map +1 -1
  66. package/dist/mcp/state-server.js +217 -1111
  67. package/dist/mcp/state-server.js.map +1 -1
  68. package/dist/mcp/team-server.d.ts.map +1 -1
  69. package/dist/mcp/team-server.js +28 -7
  70. package/dist/mcp/team-server.js.map +1 -1
  71. package/dist/notifications/__tests__/dispatch-cooldown.test.d.ts +5 -0
  72. package/dist/notifications/__tests__/dispatch-cooldown.test.d.ts.map +1 -0
  73. package/dist/notifications/__tests__/dispatch-cooldown.test.js +100 -0
  74. package/dist/notifications/__tests__/dispatch-cooldown.test.js.map +1 -0
  75. package/dist/notifications/__tests__/temp-mode.test.d.ts +2 -0
  76. package/dist/notifications/__tests__/temp-mode.test.d.ts.map +1 -0
  77. package/dist/notifications/__tests__/temp-mode.test.js +172 -0
  78. package/dist/notifications/__tests__/temp-mode.test.js.map +1 -0
  79. package/dist/notifications/config.d.ts.map +1 -1
  80. package/dist/notifications/config.js +59 -6
  81. package/dist/notifications/config.js.map +1 -1
  82. package/dist/notifications/dispatch-cooldown.d.ts +36 -0
  83. package/dist/notifications/dispatch-cooldown.d.ts.map +1 -0
  84. package/dist/notifications/dispatch-cooldown.js +109 -0
  85. package/dist/notifications/dispatch-cooldown.js.map +1 -0
  86. package/dist/notifications/index.d.ts +5 -0
  87. package/dist/notifications/index.d.ts.map +1 -1
  88. package/dist/notifications/index.js +39 -8
  89. package/dist/notifications/index.js.map +1 -1
  90. package/dist/notifications/temp-contract.d.ts +22 -0
  91. package/dist/notifications/temp-contract.d.ts.map +1 -0
  92. package/dist/notifications/temp-contract.js +147 -0
  93. package/dist/notifications/temp-contract.js.map +1 -0
  94. package/dist/notifications/types.d.ts +18 -0
  95. package/dist/notifications/types.d.ts.map +1 -1
  96. package/dist/openclaw/__tests__/config.test.js +81 -0
  97. package/dist/openclaw/__tests__/config.test.js.map +1 -1
  98. package/dist/openclaw/__tests__/dispatcher.test.js +50 -7
  99. package/dist/openclaw/__tests__/dispatcher.test.js.map +1 -1
  100. package/dist/openclaw/config.d.ts +4 -0
  101. package/dist/openclaw/config.d.ts.map +1 -1
  102. package/dist/openclaw/config.js +110 -16
  103. package/dist/openclaw/config.js.map +1 -1
  104. package/dist/openclaw/dispatcher.d.ts +10 -4
  105. package/dist/openclaw/dispatcher.d.ts.map +1 -1
  106. package/dist/openclaw/dispatcher.js +40 -10
  107. package/dist/openclaw/dispatcher.js.map +1 -1
  108. package/dist/openclaw/types.d.ts +5 -1
  109. package/dist/openclaw/types.d.ts.map +1 -1
  110. package/dist/team/__tests__/api-interop.test.d.ts +2 -0
  111. package/dist/team/__tests__/api-interop.test.d.ts.map +1 -0
  112. package/dist/team/__tests__/api-interop.test.js +1052 -0
  113. package/dist/team/__tests__/api-interop.test.js.map +1 -0
  114. package/dist/team/__tests__/mcp-comm.test.js +30 -0
  115. package/dist/team/__tests__/mcp-comm.test.js.map +1 -1
  116. package/dist/team/__tests__/runtime-cli.test.js +6 -0
  117. package/dist/team/__tests__/runtime-cli.test.js.map +1 -1
  118. package/dist/team/__tests__/runtime.test.js +52 -22
  119. package/dist/team/__tests__/runtime.test.js.map +1 -1
  120. package/dist/team/__tests__/tmux-claude-workers-demo.test.d.ts +2 -0
  121. package/dist/team/__tests__/tmux-claude-workers-demo.test.d.ts.map +1 -0
  122. package/dist/team/__tests__/tmux-claude-workers-demo.test.js +190 -0
  123. package/dist/team/__tests__/tmux-claude-workers-demo.test.js.map +1 -0
  124. package/dist/team/__tests__/tmux-session.test.js +45 -2
  125. package/dist/team/__tests__/tmux-session.test.js.map +1 -1
  126. package/dist/team/__tests__/worker-bootstrap.test.js +20 -12
  127. package/dist/team/__tests__/worker-bootstrap.test.js.map +1 -1
  128. package/dist/team/api-interop.d.ts +19 -0
  129. package/dist/team/api-interop.d.ts.map +1 -0
  130. package/dist/team/api-interop.js +578 -0
  131. package/dist/team/api-interop.js.map +1 -0
  132. package/dist/team/mcp-comm.d.ts.map +1 -1
  133. package/dist/team/mcp-comm.js +26 -0
  134. package/dist/team/mcp-comm.js.map +1 -1
  135. package/dist/team/runtime-cli.d.ts +3 -0
  136. package/dist/team/runtime-cli.d.ts.map +1 -1
  137. package/dist/team/runtime-cli.js +24 -2
  138. package/dist/team/runtime-cli.js.map +1 -1
  139. package/dist/team/runtime.d.ts.map +1 -1
  140. package/dist/team/runtime.js +67 -11
  141. package/dist/team/runtime.js.map +1 -1
  142. package/dist/team/scaling.js.map +1 -1
  143. package/dist/team/state/types.d.ts +1 -1
  144. package/dist/team/state/types.d.ts.map +1 -1
  145. package/dist/team/state.d.ts +1 -1
  146. package/dist/team/state.d.ts.map +1 -1
  147. package/dist/team/tmux-session.d.ts +1 -1
  148. package/dist/team/tmux-session.d.ts.map +1 -1
  149. package/dist/team/tmux-session.js +17 -5
  150. package/dist/team/tmux-session.js.map +1 -1
  151. package/dist/team/worker-bootstrap.d.ts.map +1 -1
  152. package/dist/team/worker-bootstrap.js +48 -19
  153. package/dist/team/worker-bootstrap.js.map +1 -1
  154. package/package.json +1 -1
  155. package/scripts/demo-claude-workers.sh +241 -0
  156. package/scripts/demo-team-e2e.sh +179 -0
  157. package/scripts/notify-hook/team-dispatch.js +186 -12
  158. package/scripts/notify-hook/team-leader-nudge.js +42 -2
  159. package/scripts/notify-hook/team-worker.js +63 -4
  160. package/skills/configure-notifications/SKILL.md +193 -185
  161. package/skills/omx-setup/SKILL.md +1 -1
  162. package/skills/team/SKILL.md +47 -5
  163. package/skills/worker/SKILL.md +40 -10
  164. package/templates/AGENTS.md +7 -3
  165. package/templates/catalog-manifest.json +26 -3
  166. package/skills/configure-discord/SKILL.md +0 -256
  167. package/skills/configure-openclaw/SKILL.md +0 -264
  168. package/skills/configure-slack/SKILL.md +0 -226
  169. package/skills/configure-telegram/SKILL.md +0 -232
package/README.de.md CHANGED
@@ -10,16 +10,21 @@
10
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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 help
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
- --force
183
- --dry-run
184
- --verbose
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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
11
  [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)](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)