lazycodex-ai 5.0.0-beta.48 → 5.0.0-beta.49

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 (118) hide show
  1. package/README.ja.md +35 -27
  2. package/README.ko.md +35 -27
  3. package/README.md +19 -34
  4. package/README.ru.md +33 -28
  5. package/README.zh-cn.md +31 -27
  6. package/dist/cli/index.js +19 -15
  7. package/dist/cli-node/index.js +19 -15
  8. package/package.json +1 -1
  9. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +2 -2
  10. package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
  11. package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
  12. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  13. package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
  14. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  15. package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
  16. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
  17. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
  18. package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +2 -2
  19. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  20. package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
  21. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  22. package/packages/omo-codex/plugin/components/rules/package.json +1 -1
  23. package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
  24. package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
  25. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  26. package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
  27. package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +11 -10
  28. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  29. package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
  30. package/packages/omo-codex/plugin/components/ultrawork/src/directive-content.ts +1 -1
  31. package/packages/omo-codex/plugin/components/ulw-execute-continuation/AGENTS.md +3 -3
  32. package/packages/omo-codex/plugin/components/ulw-execute-continuation/README.md +3 -3
  33. package/packages/omo-codex/plugin/components/ulw-execute-continuation/directive.md +4 -4
  34. package/packages/omo-codex/plugin/components/ulw-execute-continuation/dist/cli.js +1 -1
  35. package/packages/omo-codex/plugin/components/ulw-execute-continuation/hooks/hooks.json +1 -13
  36. package/packages/omo-codex/plugin/components/ulw-execute-continuation/package.json +1 -1
  37. package/packages/omo-codex/plugin/components/ulw-execute-continuation/src/codex-hook.ts +1 -1
  38. package/packages/omo-codex/plugin/components/ulw-execute-continuation/src/types.ts +1 -1
  39. package/packages/omo-codex/plugin/components/ulw-execute-continuation/test/cli.test.ts +3 -7
  40. package/packages/omo-codex/plugin/components/ulw-execute-continuation/test/codex-hook.test.ts +16 -0
  41. package/packages/omo-codex/plugin/components/ulw-loop/README.md +2 -2
  42. package/packages/omo-codex/plugin/components/ulw-loop/directive.md +11 -10
  43. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.js +8 -15
  44. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +2 -2
  45. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +1 -1
  46. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +1 -1
  47. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +88 -67
  48. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +3 -4
  49. package/packages/omo-codex/plugin/components/ulw-loop/dist/domain-types.d.ts +1 -1
  50. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.js +1 -1
  51. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate.js +13 -16
  52. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-guard.d.ts +2 -0
  53. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-guard.js +47 -26
  54. package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.js +2 -2
  55. package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.d.ts +1 -0
  56. package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.js +14 -4
  57. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +17 -4
  58. package/packages/omo-codex/plugin/components/ulw-loop/package.json +2 -2
  59. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +1 -1
  60. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-template.ts +8 -14
  61. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +2 -2
  62. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +1 -1
  63. package/packages/omo-codex/plugin/components/ulw-loop/src/cli.ts +5 -1
  64. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +3 -4
  65. package/packages/omo-codex/plugin/components/ulw-loop/src/domain-types.ts +1 -1
  66. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-fields.ts +4 -1
  67. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate.ts +21 -16
  68. package/packages/omo-codex/plugin/components/ulw-loop/src/spawn-guard.ts +52 -25
  69. package/packages/omo-codex/plugin/components/ulw-loop/src/status-next-actions.ts +2 -2
  70. package/packages/omo-codex/plugin/components/ulw-loop/src/surface.ts +16 -4
  71. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-final.test.ts +11 -12
  72. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-fields-messages.test.ts +98 -0
  73. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-lazycodex-surface.test.ts +93 -0
  74. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-roles.test.ts +9 -4
  75. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate.test.ts +10 -0
  76. package/packages/omo-codex/plugin/components/ulw-loop/test/spawn-guard.test.ts +70 -7
  77. package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
  78. package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
  79. package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
  80. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
  81. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
  82. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
  83. package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
  84. package/packages/omo-codex/plugin/hooks/post-tool-use-recording-spawn-admission.json +18 -0
  85. package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
  86. package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
  87. package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
  88. package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
  89. package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
  90. package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
  91. package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
  92. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-execute-continuation.json +1 -1
  93. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
  94. package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
  95. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
  96. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
  97. package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
  98. package/packages/omo-codex/plugin/package-lock.json +12 -12
  99. package/packages/omo-codex/plugin/package.json +1 -1
  100. package/packages/omo-codex/plugin/scripts/sync-skills.mjs +61 -33
  101. package/packages/omo-codex/plugin/skills/init-deep/SKILL.md +4 -2
  102. package/packages/omo-codex/plugin/skills/refactor/SKILL.md +4 -2
  103. package/packages/omo-codex/plugin/skills/remove-ai-slops/SKILL.md +4 -2
  104. package/packages/omo-codex/plugin/skills/review-work/SKILL.md +13 -3
  105. package/packages/omo-codex/plugin/skills/ultrawork/SKILL.md +11 -10
  106. package/packages/omo-codex/plugin/skills/ulw-execute/SKILL.md +11 -6
  107. package/packages/omo-codex/plugin/skills/ulw-loop/SKILL.md +24 -0
  108. package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +1 -1
  109. package/packages/omo-codex/plugin/skills/ulw-research/SKILL.md +4 -2
  110. package/packages/omo-codex/plugin/skills/visual-qa/SKILL.md +4 -2
  111. package/packages/omo-codex/plugin/test/aggregate-hooks.test.mjs +8 -4
  112. package/packages/omo-codex/plugin/test/component-hook-contract-cases.mjs +62 -0
  113. package/packages/omo-codex/plugin/test/hook-status-message.test.mjs +3 -3
  114. package/packages/omo-codex/plugin/test/sync-skills-codex-compatibility.test.mjs +23 -1
  115. package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +36 -16
  116. package/packages/omo-codex/scripts/install-dist/install-local.mjs +2 -2
  117. package/packages/prompts-core/prompts/ultrawork/codex.md +11 -10
  118. package/packages/omo-codex/plugin/hooks/subagent-stop-checking-ulw-execute-continuation.json +0 -17
package/README.ja.md CHANGED
@@ -1,3 +1,15 @@
1
+ > [!NOTE]
2
+ > **OmO ベータ: OmO ❤️ Pi**
3
+ > `bun install -g omo-ai@beta` でお試しください。メモリシステム、CodeMode、Anthropic サブスクリプションにすべて対応しています。
4
+ > [![OmO Herdr DAG - live OmO workflow DAGs in a Herdr side pane](./.github/assets/omo-herdr-dag.png)](https://github.com/jc01rho/omo-herdr-dag)
5
+ > *プロンプトに "mass ulw" と入れるだけ。あなたはもうグラフエンジニアリングのマスター。マルチモデルの ultracode を、より良いメモリシステムとともに。(右側のパネルは [omo-herdr-dag](https://github.com/jc01rho/omo-herdr-dag) です)*
6
+
7
+
8
+ > **Sponsors**
9
+ > 以下は私たちのスポンサーです。個人のサイドプロジェクトとして継続するための支援をいただいています。
10
+ > | [<img alt="OpenGateway" src="./.github/assets/opengateway-logo.svg" width="156px" />](https://opengateway.ai/) | **[OpenGateway](https://opengateway.ai/)** では **Kimi K3 Ultrafast (300 TPS)** を公式価格と同じ料金で提供しています。`opengateway/moonshotai/kimi-k3-ultrafast` を今すぐお試しください。 推論原文ノーロギングポリシーにより、プライバシーに配慮した利用が可能です。プロバイダーに直接リクエストしないため、匿名性も保てます。 |
11
+ > | :-----| :----- |
12
+
1
13
  > [!NOTE]
2
14
  > **OmO for Codex が登場しました。LazyCodex を試してください**
3
15
  >
@@ -11,17 +23,7 @@
11
23
  > [!NOTE]
12
24
  > **マルチハーネスエージェントOSへのリファクタリング進行中**
13
25
  >
14
- > OpenCode、Codex、Piなどの複数エージェントハーネスをサポートするため、コードベースを再構成しています。貢献に興味がある方は、まず[ROADMAP](./ROADMAP.md)をご確認ください。ROADMAP関連のPRには`ROADMAP`ラベルを付けてください。
15
-
16
- > [!TIP]
17
- > **Building in Public**
18
- >
19
- > メンテナーが Jobdori を使い、oh-my-openagent をリアルタイムで開発・メンテナンスしています。Jobdori は OpenClaw をベースに大幅カスタマイズされた AI アシスタントです。
20
- > すべての機能開発、修正、Issue トリアージを Discord でライブでご覧いただけます。
21
- >
22
- > [![Building in Public](./.github/assets/building-in-public.png)](https://discord.gg/PUwSMR9XNk)
23
- >
24
- > [**→ #building-in-public で確認する**](https://discord.gg/PUwSMR9XNk)
26
+ > OpenCode、Codex、Pi、Claude Codeなどの複数エージェントハーネスをサポートするため、コードベースを再構成しています。貢献に興味がある方は、まず[ROADMAP](./ROADMAP.md)をご確認ください。ROADMAP関連のPRには`ROADMAP`ラベルを付けてください。
25
27
 
26
28
 
27
29
  > [!NOTE]
@@ -126,14 +128,16 @@ https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/do
126
128
  インストールガイドを取得して、それに従ってください:
127
129
 
128
130
  ```bash
129
- curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
131
+ curl -fsSL https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
130
132
  ```
131
133
 
132
134
  **注記**: 公開されている npm パッケージと CLI バイナリ名は引き続き `oh-my-opencode` です (移行期間中は `oh-my-openagent` としても同時に公開されています)。`opencode.json` 内では、互換性レイヤーがプラグインエントリ `oh-my-openagent` を優先するようになりました。従来の `oh-my-opencode` エントリも警告付きで引き続き読み込まれます。ランタイム設定は `~/.omo/omo.jsonc` と、上位ディレクトリへたどるプロジェクトの `.omo/omo.jsonc` です。従来の `oh-my-openagent.json[c]` / `oh-my-opencode.json[c]` はマイグレーションエンジンが一度だけ取り込み、以降は読み込まれません。
133
135
 
136
+ 推奨される `bunx`/`npx` コマンドは `oh-my-openagent install` (もしくは元の `oh-my-opencode install`) です。インストール後の短いコマンドは `omo-agent-toolkit` です。今回のメジャーリリースで `omo` bin はこれらのパッケージから削除され、その名前は `npm i -g omo-ai@beta` (beta チャネルのみ) でインストールする Senpi ネイティブエディションのものになりました。`bunx omo` や `npx omo` は**使わないでください**。npm 上の `omo` は別の作者による無関係なパッケージで、これらのコマンドはそちらに解決されます。Senpi エディションのパッケージ名は `omo-ai` です。`lazycodex-ai` は単一目的の Node/npm インストーラーパッケージで、`npx lazycodex-ai install` は Codex Light インストーラーに直接つながります。Codex マーケットプレイス名ではありません (マーケットプレイスのリポジトリは `code-yeongyu/lazycodex`)。Codex 側ではマーケットプレイス `sisyphuslabs` とプラグイン `omo` として見え、`omo@sisyphuslabs` として有効化されます。
137
+
134
138
  匿名のテレメトリは、アクティブなインストール数(DAU/WAU/MAU)の集計のためにデフォルトで有効になっています。マシン1台につきUTC日あたり最大1回イベントが送信され、ハッシュ化されたインストール識別子を使用し、生のホスト名は使用せず、PostHog person profile も作成されません。無効化するには `OMO_SEND_ANONYMOUS_TELEMETRY=0` または `OMO_DISABLE_POSTHOG=1` を設定してください。[プライバシーポリシー](docs/legal/privacy-policy.md)と[利用規約](docs/legal/terms-of-service.md)をご覧ください。
135
139
 
136
- **Ultimate Light:** oh-my-openagent は同じ製品の 2 つのエディションとして提供されます。**Ultimate エディション**(`bunx oh-my-openagent install` または `--platform=opencode`、デフォルト)は OpenCode 上のフル機能で、11 エージェント、54+ フック、Team Mode、すべての MCP、スラッシュコマンド、IntentGate モードを提供します。**Light エディション**(`npx lazycodex-ai install` または `bunx oh-my-openagent install --platform=codex`)は OpenAI Codex CLI のプラグインシステムへ綺麗に移植できるコアコンポーネント(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`ulw-execute-continuation`、`telemetry`)に加え、`teammode` と補助コンポーネント(`bootstrap`、`lcx` など)を提供し、Codex エージェントの TOML を `~/.codex/agents/` にインストールします。両方を同時にインストールするには `--platform=both`。Codex 専用テレメトリは `OMO_CODEX_DISABLE_POSTHOG=1` または `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0` で無効化できます。
140
+ **Ultimate / Light / Senpi:** oh-my-openagent は同じ製品の 3 つのエディションとして提供されます。すでに使っているホストに読み込まれるプラグイン 2 つと、スタンドアロンのエディション 1 つです。**Ultimate エディション**(`bunx oh-my-openagent install` または `--platform=opencode`、デフォルト)は OpenCode 上のフル機能で、11 エージェント、54+ フック、Team Mode、4 つの組み込み MCP (websearch、context7、grep_app、lsp)、スラッシュコマンド、IntentGate モードを提供します。**Light エディション**(`npx lazycodex-ai install`)は OpenAI Codex CLI のプラグインシステムへ綺麗に移植できるコアコンポーネント(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`ulw-execute-continuation`、`telemetry`)に加え、`teammode` と補助コンポーネント(`bootstrap`、`lcx` など)を提供し、Codex エージェントの TOML を `~/.codex/agents/` にインストールします。両方を同時にインストールするには `--platform=both`。**Senpi エディション**(スタンドアロン、beta)は OMO 拡張を内蔵したネイティブの `omo` コマンドです。OpenCode や Codex に読み込むのではなく、`npm i -g omo-ai@beta` でインストールして `omo` を実行します。beta チャネルのみで、タグなしの `npm i -g omo-ai` は意図的に失敗します。Codex 専用テレメトリは `OMO_CODEX_DISABLE_POSTHOG=1` または `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0` で無効化できます。
137
141
 
138
142
  ---
139
143
 
@@ -166,13 +170,13 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
166
170
  | :---: | :------------------------------------------------------- | :------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
167
171
  | 🤖 | **規律あるエージェント (Discipline Agents)** | Ultimate | Sisyphus が Hephaestus、Oracle、Librarian、Explore をオーケストレーションします。完全な AI 開発チームが並列で動きます。 |
168
172
  | 🧩 | **Codex CLI Light Edition** | Light | OpenAI Codex CLI 上で動作する omo の移植コンポーネント (rules, comment-checker, git-bash, LSP, ultrawork, ulw-loop, ulw-execute continuation, telemetry, teammode など)。インストール: `npx lazycodex-ai install`。 |
169
- | 👥 | **Team Mode** (v4.0, オプトイン) | Ultimate | リードエージェント + 最大 8 メンバーの並列実行、リアルタイム tmux 可視化、専用 `team_*` ツール群。`hyperplan`(5 人の敵対的批評家)と `security-research`(3 人のハンター + 2 人の PoC エンジニア)を駆動します。[ドキュメント →](docs/guide/team-mode.md) |
173
+ | 👥 | **Team Mode** (オプトイン) | Ultimate | リードエージェント + 最大 8 メンバーの並列実行、リアルタイム tmux 可視化、専用 `team_*` ツール群。`hyperplan`(5 人の敵対的批評家)と `security-research`(3 人のハンター + 2 人の PoC エンジニア)を駆動します。[ドキュメント →](docs/guide/team-mode.md) |
170
174
  | ⚡ | **`ultrawork` / `ulw`** | Both | 一言で OK。すべてのエージェント (Ultimate) または Codex `ultrawork` コンポーネント (Light) がアクティブになり、終わるまで止まりません。 |
171
- | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | ユーザーの真の意図を分析してから分類・行動します。字面通りの誤解釈はもうありません。(Light は `ulw` / `ultrawork` キーワードのみ認識。) |
175
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | `ultrawork`/`ulw`、`team`、`hyperplan` のキーワードを検出します (意図を意味的に分類するわけではありません)。(Light は `ulw` / `ultrawork` キーワードのみ認識。) |
172
176
  | 🔗 | **ハッシュベースの編集ツール** | Ultimate | Hashline (`LINE#ID`) による編集/読取タグ付け。オプトイン: `~/.omo/omo.jsonc` で `hashline_edit: true` を設定。stale-line エラー 0%。[oh-my-pi](https://github.com/can1357/oh-my-pi) にインスパイア。[The Harness Problem →](https://blog.can.ac/2026/02/12/the-harness-problem/) (Codex はネイティブの `apply_patch` を使用。) |
173
177
  | 🛠️ | **LSP + AST-Grep** | Both | ワークスペース単位のリネーム、ビルド前の診断、AST を考慮した書き換え。LSP は MCP として、AST-Grep は共有 `ast-grep` skill と `sg` として提供します。 |
174
178
  | 🧠 | **バックグラウンドエージェント** | Ultimate | 5 人以上の専門家を並列で投入。コンテキストは軽く保ち、結果は準備ができ次第受け取ります。 |
175
- | 📚 | **組み込み MCP** | Both | Ultimate は Exa (Web 検索)、Context7 (公式ドキュメント)、Grep.app (GitHub 検索) をランタイム注入します。Light は plugin-scoped MCP として `grep_app`、`context7`、`git_bash`、`lsp` を提供します。 |
179
+ | 📚 | **組み込み MCP** | Both | Ultimate は websearch (Exa)、context7 (公式ドキュメント)、grep_app (GitHub 検索)、lsp をランタイム注入します。Light は plugin-scoped MCP として `grep_app`、`context7`、`git_bash`、`lsp` を提供します。 |
176
180
  | 🔁 | **Goal / `/goal`** | Ultimate | `/goal` がスレッドの永続目標を設定します。idle continuation は `goal.enabled` が true のときのみ動作します (デフォルト false)。 |
177
181
  | ✅ | **Todo Enforcer** (Boulder) | Ultimate | エージェントがサボる?システムが首根っこを掴んで戻します。あなたのタスクは必ず終わります。 |
178
182
  | 💬 | **コメントチェッカー** | Both | コメントから AI 臭い無駄話を排除。両エディションで同じ `@code-yeongyu/comment-checker` バイナリが動作。 |
@@ -184,7 +188,7 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
184
188
  | 📋 | **Prometheus プランナー** | Ultimate | インタビューモードで、実行前に戦略的な計画から立てます。 |
185
189
  | 🔍 | **`/init-deep`** | Ultimate | プロジェクト全体にわたって階層的な `AGENTS.md` ファイルを自動生成。トークン効率とエージェントのパフォーマンスの両方を向上させます。 |
186
190
 
187
- > **Editions legend.** **Ultimate** = OpenCode 専用 (`bunx oh-my-openagent install`)。**Light** = Codex CLI 専用 (`bunx oh-my-openagent install --platform=codex`)。**Both** = 両エディションに提供、しばしば内部実装は若干異なる。
191
+ > **Editions legend.** **Ultimate** = OpenCode 専用 (`bunx oh-my-openagent install`)。**Light** = Codex CLI 専用 (`npx lazycodex-ai install`)。**Both** = 両エディションに提供、しばしば内部実装は若干異なる。
188
192
 
189
193
  ### 規律あるエージェント (Discipline Agents)
190
194
 
@@ -195,9 +199,9 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
195
199
 
196
200
  **Sisyphus** (`claude-opus-5` / **`kimi-k3`** / **`gpt-5.6-sol`** / **`glm-5.2`**) はあなたのメインオーケストレーターです。計画を立て、専門家に委任し、攻撃的な並列実行でタスクを完了まで推進します。途中で投げ出すことはありません。Claude Opus 5 と Kimi K3 が推奨デフォルトです。
197
201
 
198
- **Hephaestus** (OpenAI、OpenAI Codex、GitHub Copilot、または OpenCode 経由で medium effort の `gpt-5.6-sol` のみを使う) はあなたの自律的なディープワーカーです。レシピではなく、目標を与えてください。手取り足取り教えなくても、コードベースを探索し、パターンを調査し、エンドツーエンドで実行します。最強の GPT を使いたいなら、OpenAI の最上位モデル `gpt-6-astra` を指定してください。*正当なる職人 (The Legitimate Craftsman).*
202
+ **Hephaestus** (OpenAI、OpenAI Codex、GitHub Copilot、または OpenCode 経由で medium effort の `gpt-5.6-sol` を使う) はあなたの自律的なディープワーカーです。レシピではなく、目標を与えてください。手取り足取り教えなくても、コードベースを探索し、パターンを調査し、エンドツーエンドで実行します。最強の GPT を使いたいなら、OpenAI の最上位モデル `gpt-6-astra` を指定してください。*正当なる職人 (The Legitimate Craftsman).*
199
203
 
200
- **Prometheus** (`claude-fable-5` / **`kimi-k3`**) はあなたの戦略プランナーです。インタビューモードで質問を投げ、スコープを特定し、コードに一行触れる前に詳細な計画を構築します。
204
+ **Prometheus** (`claude-fable-5-1` / **`kimi-k3`**) はあなたの戦略プランナーです。インタビューモードで質問を投げ、スコープを特定し、コードに一行触れる前に詳細な計画を構築します。
201
205
 
202
206
  すべてのエージェントは、それぞれのモデルの強みに合わせてチューニングされています。手動でモデルを切り替える必要はありません。[詳しくはこちら →](docs/guide/overview.md)
203
207
 
@@ -205,7 +209,7 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
205
209
  >
206
210
  > Opus または Kimi K3 で最もよく動きますが、Kimi K3 + GPT-5.6 Sol の組み合わせだけでも、バニラの Claude Code を軽く凌駕します。設定は一切不要です。
207
211
 
208
- ### Team Mode (v4.0)
212
+ ### Team Mode
209
213
 
210
214
  エージェント 1 体でも速い。調和したチームは*圧倒的*です。
211
215
 
@@ -281,8 +285,6 @@ MCP サーバーはあなたのコンテキスト予算を食いつぶします
281
285
 
282
286
  エージェントはこのタグを参照して編集します。最後に読んだ後でファイルが変更されていた場合、ハッシュが一致せず、コードが壊れる前に編集が拒否されます。空白を正確に再現する必要もなく、stale-line エラーもありません。
283
287
 
284
- Grok Code Fast 1 で、成功率が **6.7% → 68.3%** に上昇しました。編集ツールを 1 つ変えただけで、です。
285
-
286
288
  ### 深い初期化。`/init-deep`
287
289
 
288
290
  `/init-deep` を実行してください。階層的な `AGENTS.md` ファイルを生成します:
@@ -363,10 +365,16 @@ oh-my-openagent を削除するには:
363
365
  4. **omo-codex (Codex CLI Light エディション) を削除する**
364
366
 
365
367
  ```bash
366
- rm -rf ~/.codex/plugins/cache/sisyphuslabs
368
+ npx lazycodex-ai uninstall
369
+ # backward-compatible alias:
370
+ npx lazycodex-ai cleanup
371
+
372
+ omo-agent-toolkit uninstall --platform=codex
373
+ # backward-compatible alias:
374
+ omo-agent-toolkit cleanup --platform=codex
367
375
  ```
368
376
 
369
- その後 `~/.codex/config.toml` を開き、`[marketplaces.sisyphuslabs]`、`[plugins."omo@sisyphuslabs"]`、`[hooks.state."omo@sisyphuslabs:..."]` ブロックを削除してください。
377
+ uninstall コマンドは、管理下の `sisyphuslabs` Codex キャッシュ/マーケットプレイス状態を削除し、バックアップを書き出した上で `~/.codex/config.toml` から `omo@sisyphuslabs` のプラグイン・hook-state ブロックを取り除き、インストールマニフェストに記載されたエージェント TOML リンクを削除します。特定のプロジェクトに古いプロジェクトローカルの Codex プラグイン状態が残っている場合は、そのプロジェクトで実行するか `--project <path>` を渡してください。既知のプロジェクトローカル `.codex/config.toml` の衝突を修復し、プロジェクト所有のファイルは削除しないまま、残っている `.codex` アーティファクトを報告します。
370
378
 
371
379
  ## Features
372
380
 
@@ -381,7 +389,7 @@ oh-my-openagent を削除するには:
381
389
  - **ハッシュベース編集ツール** (`hashline_edit: true` でオプトイン): `LINE#ID` 参照で全ての変更前に内容を検証。外科的な編集、stale-line エラー 0
382
390
  - **コンテキスト注入**: AGENTS.md、README.md、条件付きルールを自動注入
383
391
  - **Claude Code 互換性**: 完全なフックシステム、コマンド、スキル、エージェント、MCP
384
- - **組み込み MCP**: websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)
392
+ - **組み込み MCP**: websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)、lsp。プラグインがランタイム注入するため `opencode mcp list` には表示されません ([MCP ドキュメント](docs/reference/features.md#native-vs-plugin-injected-mcps) 参照)
385
393
  - **セッションツール**: セッション履歴のリスト・閲覧・検索・分析
386
394
  - **生産性機能**: Goal、Todo Enforcer、Comment Checker、Think Mode など
387
395
  - **Doctor コマンド**: 組み込みの診断 (`bunx oh-my-opencode doctor`) でプラグイン登録、設定、モデル、環境を検証
@@ -405,9 +413,9 @@ oh-my-openagent を削除するには:
405
413
  - **バックグラウンドタスク**: プロバイダー/モデル別の同時実行数を設定
406
414
  - **カテゴリー**: `visual-engineering`、`ultrabrain`、`deep`、`artistry`、`quick`、`unspecified-low`、`unspecified-high`、`writing`、加えてカスタム名
407
415
  - **フック**: 54 以上の組み込みライフサイクルフック(Team Mode 有効時は 61)。すべて `disabled_hooks` で制御可能
408
- - **MCP**: 組み込み websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)
416
+ - **MCP**: 組み込み websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)、lsp。ランタイム注入のため `opencode mcp list` には表示されない
409
417
  - **LSP**: リファクタリングツールまで含む完全な LSP サポート
410
- - **Experimental**: 積極的な truncation、自動 resume など
418
+ - **Experimental**: 積極的な truncation、先回り compaction など
411
419
 
412
420
 
413
421
  ## 著者の言葉
package/README.ko.md CHANGED
@@ -1,3 +1,15 @@
1
+ > [!NOTE]
2
+ > **OmO 베타: OmO ❤️ Pi**
3
+ > `bun install -g omo-ai@beta`로 사용해보세요. 메모리 시스템, CodeMode, Anthropic 구독까지 전부 지원됩니다.
4
+ > [![OmO Herdr DAG - live OmO workflow DAGs in a Herdr side pane](./.github/assets/omo-herdr-dag.png)](https://github.com/jc01rho/omo-herdr-dag)
5
+ > *프롬프트에 "mass ulw" 한 줄이면 끝. 당신도 그래프 엔지니어링의 마스터가 됩니다. 멀티 모델 ultracode, 더 나은 메모리 시스템과 함께. (우측의 패널은 [omo-herdr-dag](https://github.com/jc01rho/omo-herdr-dag) 입니다)*
6
+
7
+
8
+ > **Sponsors**
9
+ > 아래는 저희의 스폰서입니다. 개인 사이드 프로젝트를 지속하는 데 도움을 주고 있습니다.
10
+ > | [<img alt="OpenGateway" src="./.github/assets/opengateway-logo.svg" width="156px" />](https://opengateway.ai/) | **[OpenGateway](https://opengateway.ai/)**에서 **Kimi K3 Ultrafast를 300 TPS**로 이용하세요. 공식 정가와 동일한 가격입니다. `opengateway/moonshotai/kimi-k3-ultrafast`를 지금 사용해보세요. 추론 원문 노로깅 정책으로 프라이버시를 지키며 사용할 수 있고, 제공사에 직접 요청하지 않기 때문에 익명성도 지킬 수 있습니다. |
11
+ > | :-----| :----- |
12
+
1
13
  > [!NOTE]
2
14
  > **OmO for Codex 출시: LazyCodex를 써보세요**
3
15
  >
@@ -11,17 +23,7 @@
11
23
  > [!NOTE]
12
24
  > **멀티 하니스 에이전트 OS 리팩토링 진행 중**
13
25
  >
14
- > OpenCode, Codex, Pi 등 여러 에이전트 하니스를 지원하기 위해 코드베이스를 재구성하고 있습니다. 기여에 관심이 있다면 먼저 [ROADMAP](./ROADMAP.md)을 확인해 주세요. ROADMAP 관련 PR에는 `ROADMAP` 라벨을 붙여 주세요.
15
-
16
- > [!TIP]
17
- > **Building in Public**
18
- >
19
- > 메인테이너는 oh-my-openagent를 실시간으로 개발하고 유지보수합니다. OpenClaw를 크게 커스터마이즈한 포크 위에서 동작하는 AI 어시스턴트 Jobdori와 함께요.
20
- > 모든 기능, 모든 수정, 모든 이슈 트리아지 — 전부 Discord에서 라이브로.
21
- >
22
- > [![Building in Public](./.github/assets/building-in-public.png)](https://discord.gg/PUwSMR9XNk)
23
- >
24
- > [**→ #building-in-public 채널에서 지켜보기**](https://discord.gg/PUwSMR9XNk)
26
+ > OpenCode, Codex, Pi, Claude Code 등 여러 에이전트 하니스를 지원하기 위해 코드베이스를 재구성하고 있습니다. 기여에 관심이 있다면 먼저 [ROADMAP](./ROADMAP.md)을 확인해 주세요. ROADMAP 관련 PR에는 `ROADMAP` 라벨을 붙여 주세요.
25
27
 
26
28
  > [!NOTE]
27
29
  >
@@ -127,14 +129,16 @@ https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/do
127
129
  설치 가이드를 받아와서 그대로 따르세요:
128
130
 
129
131
  ```bash
130
- curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
132
+ curl -fsSL https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
131
133
  ```
132
134
 
133
135
  **참고**: 배포된 npm 패키지와 CLI 바이너리 이름은 여전히 `oh-my-opencode`입니다(전환 기간 동안 `oh-my-openagent`로도 함께 배포됩니다). `opencode.json` 안에서는 호환성 레이어가 이제 `oh-my-openagent` 플러그인 엔트리를 우선합니다. 기존 `oh-my-opencode` 엔트리도 경고와 함께 여전히 로드됩니다. 런타임 설정은 `~/.omo/omo.jsonc`와 워킹 디렉터리에서 위로 탐색하는 프로젝트 `.omo/omo.jsonc`입니다. 기존 `oh-my-openagent.json[c]` / `oh-my-opencode.json[c]` 파일은 마이그레이션 엔진이 한 번만 가져오고, 그 후에는 읽지 않습니다.
134
136
 
137
+ 권장 `bunx`/`npx` 명령은 `oh-my-openagent install`(또는 원래의 `oh-my-opencode install`)입니다. 설치 후 짧은 명령은 `omo-agent-toolkit`입니다. 이번 메이저 릴리스에서 `omo` bin은 이 패키지들에서 제거되었고, 그 이름은 이제 `npm i -g omo-ai@beta`(beta 채널 전용)로 설치하는 Senpi 네이티브 에디션의 것입니다. `bunx omo`나 `npx omo`는 **쓰지 마세요**. npm의 `omo`는 다른 저자의 무관한 패키지이며, 그 명령들은 거기로 연결됩니다. Senpi 에디션의 패키지 이름은 `omo-ai`입니다. `lazycodex-ai`는 단일 목적의 Node/npm 설치 패키지로, `npx lazycodex-ai install`은 곧바로 Codex Light 설치기로 이어집니다. Codex 마켓플레이스 이름은 아닙니다(마켓플레이스 저장소는 `code-yeongyu/lazycodex`). Codex에서는 마켓플레이스 `sisyphuslabs`와 플러그인 `omo`로 보이며, `omo@sisyphuslabs`로 활성화됩니다.
138
+
135
139
  익명 텔레메트리는 활성 설치 수(DAU/WAU/MAU) 집계를 위해 기본적으로 활성화되어 있습니다. 머신당 UTC 하루에 최대 1회만 이벤트가 전송되며, 해시된 설치 식별자를 사용하고 원시 호스트명은 절대 사용하지 않으며 PostHog person profile은 생성되지 않습니다. `OMO_SEND_ANONYMOUS_TELEMETRY=0` 또는 `OMO_DISABLE_POSTHOG=1`로 비활성화할 수 있습니다. [개인정보처리방침](docs/legal/privacy-policy.md)과 [서비스 이용약관](docs/legal/terms-of-service.md)을 참조하세요.
136
140
 
137
- **Ultimate vs Light:** oh-my-openagent는 같은 제품의 에디션으로 출시됩니다. **Ultimate 에디션**(`bunx oh-my-openagent install` 또는 `--platform=opencode`, 기본값)은 OpenCode 위에서 풀 기능 — 11 agent, 54+ hook, Team Mode, 모든 MCP, 슬래시 명령, IntentGate 모드 — 을 제공합니다. **Light 에디션**(`npx lazycodex-ai install` 또는 `bunx oh-my-openagent install --platform=codex`)은 OpenAI Codex CLI의 플러그인 시스템에 깔끔히 포팅되는 핵심 컴포넌트(`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, `telemetry`)에 더해 `teammode`와 지원 컴포넌트(`bootstrap`, `lcx` 등)를 제공하고, Codex 에이전트 TOML을 `~/.codex/agents/`에 설치합니다. 둘 다 설치하려면 `--platform=both`. Codex 전용 텔레메트리는 `OMO_CODEX_DISABLE_POSTHOG=1` 또는 `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0`으로 비활성화할 수 있습니다.
141
+ **Ultimate / Light / Senpi:** oh-my-openagent는 같은 제품의 에디션으로 출시됩니다. 이미 쓰는 호스트에 올라가는 플러그인 둘, 그리고 독립 실행형 하나입니다. **Ultimate 에디션**(`bunx oh-my-openagent install` 또는 `--platform=opencode`, 기본값)은 OpenCode 위에서 풀 기능 — 11 agent, 54+ hook, Team Mode, 4개의 빌트인 MCP(websearch, context7, grep_app, lsp), 슬래시 명령, IntentGate 모드 — 을 제공합니다. **Light 에디션**(`npx lazycodex-ai install`)은 OpenAI Codex CLI의 플러그인 시스템에 깔끔히 포팅되는 핵심 컴포넌트(`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, `telemetry`)에 더해 `teammode`와 지원 컴포넌트(`bootstrap`, `lcx` 등)를 제공하고, Codex 에이전트 TOML을 `~/.codex/agents/`에 설치합니다. 둘 다 설치하려면 `--platform=both`. **Senpi 에디션**(독립 실행형, beta)은 OMO 확장이 내장된 네이티브 `omo` 명령입니다. OpenCode나 Codex 올라가지 않고 `npm i -g omo-ai@beta`로 설치한 뒤 `omo`를 실행합니다. beta 채널 전용이며, 태그 없는 `npm i -g omo-ai`는 의도적으로 실패합니다. Codex 전용 텔레메트리는 `OMO_CODEX_DISABLE_POSTHOG=1` 또는 `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0`으로 비활성화할 수 있습니다.
138
142
 
139
143
  ---
140
144
 
@@ -167,13 +171,13 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
167
171
  | :---: | :------------------------------------------------------- | :------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
168
172
  | 🤖 | **Discipline Agents** | Ultimate | Sisyphus가 Hephaestus, Oracle, Librarian, Explore를 지휘합니다. 병렬로 도는 풀스택 AI 개발팀. |
169
173
  | 🧩 | **Codex CLI Light Edition** | Light | OpenAI Codex CLI에서 동작하는 omo의 포팅 컴포넌트(rules, comment-checker, git-bash, LSP, ultrawork, ulw-loop, ulw-execute continuation, telemetry, teammode 등). 설치: `npx lazycodex-ai install`. |
170
- | 👥 | **Team Mode** (v4.0, opt-in) | Ultimate | 리드 에이전트 + 최대 8명의 병렬 멤버, 실시간 tmux 시각화, 전용 `team_*` 도구. `hyperplan`(5명의 적대적 비평가)과 `security-research`(3명의 헌터 + 2명의 PoC 엔지니어)를 구동합니다. [문서 →](docs/guide/team-mode.md) |
174
+ | 👥 | **Team Mode** (opt-in) | Ultimate | 리드 에이전트 + 최대 8명의 병렬 멤버, 실시간 tmux 시각화, 전용 `team_*` 도구. `hyperplan`(5명의 적대적 비평가)과 `security-research`(3명의 헌터 + 2명의 PoC 엔지니어)를 구동합니다. [문서 →](docs/guide/team-mode.md) |
171
175
  | ⚡ | **`ultrawork` / `ulw`** | Both | 한 단어. 모든 에이전트(Ultimate)나 Codex `ultrawork` 컴포넌트(Light)가 켜집니다. 끝날 때까지 멈추지 않습니다. |
172
- | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | 분류하거나 행동하기 전에 사용자의 진짜 의도부터 분석합니다. 이상 문자 그대로의 오해석은 없습니다. (Light는 `ulw` / `ultrawork` 키워드만 인식.) |
176
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | `ultrawork`/`ulw`, `team`, `hyperplan` 키워드를 감지합니다(의도를 의미론적으로 분류하지는 않습니다). (Light는 `ulw` / `ultrawork` 키워드만 인식.) |
173
177
  | 🔗 | **Hash-Anchored Edit Tool** | Ultimate | Hashline(`LINE#ID`) 편집/읽기 태깅. 옵트인: `~/.omo/omo.jsonc`에 `hashline_edit: true` 설정. 낡은 라인 에러 0건. [oh-my-pi](https://github.com/can1357/oh-my-pi)에서 영감. [The Harness Problem →](https://blog.can.ac/2026/02/12/the-harness-problem/) (Codex는 자체 `apply_patch` 사용.) |
174
178
  | 🛠️ | **LSP + AST-Grep** | Both | 워크스페이스 리네임, 빌드 전 진단, AST 기반 리라이트. LSP는 MCP로 제공하고 AST-Grep은 공유 `ast-grep` skill과 `sg`로 제공합니다. |
175
179
  | 🧠 | **Background Agents** | Ultimate | 전문가 5명 이상을 동시에 발사. 컨텍스트는 가볍게. 결과는 준비되면 도착. |
176
- | 📚 | **Built-in MCPs** | Both | Ultimate는 Exa(웹 검색), Context7(공식 문서), Grep.app(GitHub 검색)를 런타임에 주입합니다. Light는 plugin-scoped MCP로 `grep_app`, `context7`, `git_bash`, `lsp`를 제공합니다. |
180
+ | 📚 | **Built-in MCPs** | Both | Ultimate는 websearch(Exa), context7(공식 문서), grep_app(GitHub 검색), lsp를 런타임에 주입합니다. Light는 plugin-scoped MCP로 `grep_app`, `context7`, `git_bash`, `lsp`를 제공합니다. |
177
181
  | 🔁 | **Goal / `/goal`** | Ultimate | `/goal`이 스레드의 영속 목표를 설정합니다. idle continuation은 `goal.enabled`가 true일 때만 동작합니다(기본값 false). |
178
182
  | ✅ | **Todo Enforcer** (Boulder) | Ultimate | 에이전트가 놀고 있나요? 시스템이 다시 끌어옵니다. 당신의 작업은 반드시 끝납니다. |
179
183
  | 💬 | **Comment Checker** | Both | 주석에 AI 슬롭 금지. 동일한 `@code-yeongyu/comment-checker` 바이너리가 두 에디션 모두에서 동작. |
@@ -185,7 +189,7 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
185
189
  | 📋 | **Prometheus Planner** | Ultimate | 실행 전 인터뷰 모드로 전략 플래닝. |
186
190
  | 🔍 | **`/init-deep`** | Ultimate | 프로젝트 전반에 계층형 `AGENTS.md` 파일을 자동 생성합니다. 토큰 효율에도, 에이전트 성능에도 좋습니다. |
187
191
 
188
- > **Editions legend.** **Ultimate** = OpenCode 전용 (`bunx oh-my-openagent install`). **Light** = Codex CLI 전용 (`bunx oh-my-openagent install --platform=codex`). **Both** = 두 에디션 모두 제공, 종종 내부 구현은 약간 다름.
192
+ > **Editions legend.** **Ultimate** = OpenCode 전용 (`bunx oh-my-openagent install`). **Light** = Codex CLI 전용 (`npx lazycodex-ai install`). **Both** = 두 에디션 모두 제공, 종종 내부 구현은 약간 다름.
189
193
 
190
194
  ### Discipline Agents
191
195
 
@@ -196,9 +200,9 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
196
200
 
197
201
  **Sisyphus** (`claude-opus-5` / **`kimi-k3`** / **`gpt-5.6-sol`** / **`glm-5.2`**)는 메인 오케스트레이터입니다. 계획을 세우고, 전문가에게 위임하고, 공격적인 병렬 실행으로 작업을 끝까지 밀어붙입니다. 중간에 멈추지 않습니다. Claude Opus 5와 Kimi K3가 권장 기본값입니다.
198
202
 
199
- **Hephaestus** (OpenAI, OpenAI Codex, GitHub Copilot 또는 OpenCode에서 medium effort의 `gpt-5.6-sol`만 사용하는)는 자율적으로 깊게 파는 작업자입니다. 레시피가 아니라 목표를 주세요. 코드베이스를 탐색하고, 패턴을 조사하고, 손을 잡아주지 않아도 엔드투엔드로 실행합니다. 가장 강력한 GPT를 쓰고 싶다면 OpenAI의 최상위 모델인 `gpt-6-astra`를 지정하세요. *The Legitimate Craftsman.*
203
+ **Hephaestus** (OpenAI, OpenAI Codex, GitHub Copilot 또는 OpenCode에서 medium effort의 `gpt-5.6-sol`을 사용하는)는 자율적으로 깊게 파는 작업자입니다. 레시피가 아니라 목표를 주세요. 코드베이스를 탐색하고, 패턴을 조사하고, 손을 잡아주지 않아도 엔드투엔드로 실행합니다. 가장 강력한 GPT를 쓰고 싶다면 OpenAI의 최상위 모델인 `gpt-6-astra`를 지정하세요. *The Legitimate Craftsman.*
200
204
 
201
- **Prometheus** (`claude-fable-5` / **`kimi-k3`**)는 전략 플래너입니다. 인터뷰 모드: 질문으로 스코프를 파악하고, 코드에 손대기 전에 상세한 계획을 만듭니다.
205
+ **Prometheus** (`claude-fable-5-1` / **`kimi-k3`**)는 전략 플래너입니다. 인터뷰 모드: 질문으로 스코프를 파악하고, 코드에 손대기 전에 상세한 계획을 만듭니다.
202
206
 
203
207
  모든 에이전트는 자기 모델의 강점에 맞춰 튜닝되어 있습니다. 수동으로 모델을 돌려가며 쓸 필요가 없습니다. [더 알아보기 →](docs/guide/overview.md)
204
208
 
@@ -206,7 +210,7 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
206
210
  >
207
211
  > Opus나 Kimi K3에서 가장 잘 돌지만, Kimi K3 + GPT-5.6 Sol 조합만으로도 이미 바닐라 Claude Code를 이깁니다. 별도 설정 없이요.
208
212
 
209
- ### Team Mode (v4.0)
213
+ ### Team Mode
210
214
 
211
215
  에이전트 한 명도 빠릅니다. 조율된 팀은 *압도적*입니다.
212
216
 
@@ -282,8 +286,6 @@ MCP 서버는 컨텍스트 예산을 갉아먹습니다. 우리가 고쳤습니
282
286
 
283
287
  에이전트는 이 태그를 참조해 편집합니다. 마지막 읽은 이후 파일이 바뀌었다면 해시가 맞지 않고, 손상 전에 편집이 거부됩니다. 공백 재현 필요 없음. 낡은 라인 에러 없음.
284
288
 
285
- Grok Code Fast 1: **6.7% → 68.3%** 성공률. 편집 도구만 바꿔서요.
286
-
287
289
  ### 깊은 초기화. `/init-deep`
288
290
 
289
291
  `/init-deep`을 실행하세요. 계층형 `AGENTS.md` 파일을 생성합니다:
@@ -364,10 +366,16 @@ oh-my-openagent를 제거하려면:
364
366
  4. **omo-codex (Codex CLI Light 에디션) 제거**
365
367
 
366
368
  ```bash
367
- rm -rf ~/.codex/plugins/cache/sisyphuslabs
369
+ npx lazycodex-ai uninstall
370
+ # backward-compatible alias:
371
+ npx lazycodex-ai cleanup
372
+
373
+ omo-agent-toolkit uninstall --platform=codex
374
+ # backward-compatible alias:
375
+ omo-agent-toolkit cleanup --platform=codex
368
376
  ```
369
377
 
370
- 그런 다음 `~/.codex/config.toml`을 열어 `[marketplaces.sisyphuslabs]`, `[plugins."omo@sisyphuslabs"]`, `[hooks.state."omo@sisyphuslabs:..."]` 블록들을 삭제하세요.
378
+ uninstall 명령은 관리 대상인 `sisyphuslabs` Codex 캐시/마켓플레이스 상태를 제거하고, 백업을 남긴 뒤 `~/.codex/config.toml`에서 `omo@sisyphuslabs` 플러그인 및 hook-state 블록을 걷어내며, 설치 매니페스트에 기록된 에이전트 TOML 링크를 지웁니다. 특정 프로젝트에 오래된 프로젝트 로컬 Codex 플러그인 상태가 남아 있다면 그 프로젝트에서 실행하거나 `--project <path>`를 넘기세요. 알려진 프로젝트 로컬 `.codex/config.toml` 충돌을 복구하고, 프로젝트 소유 파일은 삭제하지 않은 채 남은 `.codex` 산출물을 보고합니다.
371
379
 
372
380
  ## Features
373
381
 
@@ -382,7 +390,7 @@ oh-my-openagent를 제거하려면:
382
390
  - **Hash-anchored Edit Tool** (`hashline_edit: true`로 옵트인): `LINE#ID` 참조로 모든 변경 전에 내용을 검증. 수술적 편집, 낡은 라인 에러 0
383
391
  - **Context Injection**: AGENTS.md, README.md, 조건부 규칙 자동 주입
384
392
  - **Claude Code Compatibility**: 전체 hook 시스템, command, skill, agent, MCP
385
- - **Built-in MCPs**: websearch(Exa), context7(문서), grep_app(GitHub 검색)
393
+ - **Built-in MCPs**: websearch(Exa), context7(문서), grep_app(GitHub 검색), lsp. 플러그인이 런타임에 주입하므로 `opencode mcp list`에는 보이지 않습니다([MCP 문서](docs/reference/features.md#native-vs-plugin-injected-mcps) 참고)
386
394
  - **Session Tools**: 세션 히스토리 조회·읽기·검색·분석
387
395
  - **Productivity Features**: Goal, Todo Enforcer, Comment Checker, Think Mode 등
388
396
  - **Doctor Command**: 빌트인 진단(`bunx oh-my-opencode doctor`)으로 플러그인 등록, 설정, 모델, 환경 검증
@@ -406,9 +414,9 @@ oh-my-openagent를 제거하려면:
406
414
  - **Background Tasks**: 프로바이더/모델별 동시성 제한 설정
407
415
  - **Categories**: `visual-engineering`, `ultrabrain`, `deep`, `artistry`, `quick`, `unspecified-low`, `unspecified-high`, `writing`, 그리고 커스텀 이름
408
416
  - **Hooks**: 54개 이상의 라이프사이클 hook (Team Mode 활성화 시 61개), 전부 `disabled_hooks`로 제어 가능
409
- - **MCPs**: 빌트인 websearch(Exa), context7(문서), grep_app(GitHub 검색)
417
+ - **MCPs**: 빌트인 websearch(Exa), context7(문서), grep_app(GitHub 검색), lsp. 런타임 주입이라 `opencode mcp list`에는 표시되지 않음
410
418
  - **LSP**: 리팩터링 도구까지 포함한 풀 LSP 지원
411
- - **Experimental**: 공격적 truncation, 자동 재개
419
+ - **Experimental**: 공격적 truncation, 선제적 compaction
412
420
 
413
421
 
414
422
  ## 저자의 메모
package/README.md CHANGED
@@ -1,27 +1,14 @@
1
1
  > [!NOTE]
2
- > **OmO for Codex is here: try LazyCodex**
3
- >
4
- > We loved Anthropic models enough to get blocked. Now we are backing Codex.
5
- > If you are an OmO fan but the setup felt like too much, use LazyCodex. OmO for Codex has shipped:
6
- > ```bash
7
- > npx lazycodex-ai install
8
- > ```
9
- > Learn more at [lazycodex.ai](https://lazycodex.ai).
10
-
11
- > [!NOTE]
12
- > **Multi-Harness Agent OS Refactor in Progress**
13
- >
14
- > We are restructuring the codebase to support multiple agent harnesses (OpenCode, Codex, Pi, and others). If you are interested in contributing, please read the [ROADMAP](./ROADMAP.md) first. PRs related to roadmap work should use the `ROADMAP` label.
2
+ > **OmO Beta: OmO ❤️ Pi**
3
+ > Try with `bun install -g omo-ai@beta` - Memory System, CodeMode, Anthropic subscriptions. All got covered.
4
+ > [![OmO Herdr DAG - live OmO workflow DAGs in a Herdr side pane](./.github/assets/omo-herdr-dag.png)](https://github.com/jc01rho/omo-herdr-dag)
5
+ > *Just type "mass ulw" with your prompt - now you are the master of graph engineering. Multi-model ultracode, together with a better memory system. (The right panel is [omo-herdr-dag](https://github.com/jc01rho/omo-herdr-dag).)*
6
+
7
+ > **Sponsors**
8
+ > These are our sponsors. They help keep OmO going as a personal side project.
9
+ > | [<img alt="OpenGateway" src="./.github/assets/opengateway-logo.svg" width="156px" />](https://opengateway.ai/) | **[OpenGateway](https://opengateway.ai/)** serves **Kimi K3 Ultrafast at 300 TPS** at the same price as the official list price. Try `opengateway/moonshotai/kimi-k3-ultrafast` today. It enforces a no-logging policy on inference raw content, so your prompts stay private - and since you never request the provider directly, you stay anonymous. |
10
+ > | :-----| :----- |
15
11
 
16
- > [!TIP]
17
- > **Building in Public**
18
- >
19
- > The maintainer builds and maintains oh-my-openagent in real-time with Jobdori, an AI assistant running on a heavily customized fork of OpenClaw.
20
- > Every feature, every fix, every issue triage — live in our Discord.
21
- >
22
- > [![Building in Public](./.github/assets/building-in-public.png)](https://discord.gg/PUwSMR9XNk)
23
- >
24
- > [**→ Watch it happen in #building-in-public**](https://discord.gg/PUwSMR9XNk)
25
12
 
26
13
  > [!NOTE]
27
14
  >
@@ -113,7 +100,7 @@ Install oh-my-openagent. Type `ultrawork`. Done.
113
100
 
114
101
  oh-my-openagent ships in three editions of the same product: two plugins that load into a host you already run, plus one standalone edition.
115
102
 
116
- - **Ultimate Edition (omo for OpenCode)** — full omo. 11 agents, 54+ lifecycle hooks, 5 built-in MCPs, all slash commands, Team Mode, `/goal`, ultrawork — everything. Hashline edits are opt-in (`hashline_edit: true`).
103
+ - **Ultimate Edition (omo for OpenCode)** — full omo. 11 agents, 54+ lifecycle hooks, 4 built-in MCPs (websearch, context7, grep_app, lsp), all slash commands, Team Mode, `/goal`, ultrawork — everything. Hashline edits are opt-in (`hashline_edit: true`).
117
104
  - **Light Edition (omo for Codex CLI)** — the portable components that fit Codex's plugin system: `rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, and `telemetry` at the core, plus `teammode` and supporting components (`bootstrap`, `lcx`, and more), plugin-scoped MCPs for `grep_app`, `context7`, `git_bash`, and `lsp`, and the shared `ast-grep` skill. It installs Codex agent TOMLs into `~/.codex/agents/`. No OpenCode `team_*` tools — Codex CLI's own spawn/collaboration surface does that work.
118
105
  - **Senpi Edition (standalone, beta)** — the native `omo` command with the OMO extension built in. It installs from `omo-ai@beta` rather than loading into OpenCode or Codex.
119
106
 
@@ -225,14 +212,14 @@ Even with only the following subscriptions, `ultrawork` works well (this project
225
212
  | :---: | :------------------------------------------------------- | :------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
226
213
  | 🤖 | **Discipline Agents** | Ultimate | Sisyphus orchestrates Hephaestus, Oracle, Librarian, Explore. A full AI dev team in parallel. |
227
214
  | 🧩 | **Codex CLI Light Edition** | Light | Portable OMO components (rules, comment-checker, git-bash, LSP, ultrawork, ulw-loop, ulw-execute continuation, telemetry, teammode, and more) running inside OpenAI Codex CLI. Install via `npx lazycodex-ai install`. |
228
- | 👥 | **Team Mode** (v4.0, opt-in) | Ultimate | Lead agent + up to 8 parallel members, real-time tmux visualization, dedicated `team_*` tools. Powers `hyperplan` (5 hostile critics) and `security-research` (3 hunters + 2 PoC engineers). [Docs →](docs/guide/team-mode.md) |
215
+ | 👥 | **Team Mode** (opt-in) | Ultimate | Lead agent + up to 8 parallel members, real-time tmux visualization, dedicated `team_*` tools. Powers `hyperplan` (5 hostile critics) and `security-research` (3 hunters + 2 PoC engineers). [Docs →](docs/guide/team-mode.md) |
229
216
  | ⚡ | **`ultrawork` / `ulw`** | Both | One word. Every agent activates. Doesn't stop until done. |
230
- | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | Analyzes true user intent before classifying or acting. No more literal misinterpretations. (Light edition only recognises the `ultrawork`/`ulw` keyword.) |
217
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | Keyword detection for `ultrawork`/`ulw`, `team`, and `hyperplan` (does not semantically classify intent). (Light edition only recognises the `ultrawork`/`ulw` keyword.) |
231
218
  | 🔗 | **Hash-Anchored Edit Tool** | Ultimate | Hashline (`LINE#ID`) edit/read tagging. Opt-in: set `hashline_edit: true` in `~/.omo/omo.jsonc`. Zero stale-line errors. Inspired by [oh-my-pi](https://github.com/can1357/oh-my-pi). [The Harness Problem →](https://blog.can.ac/2026/02/12/the-harness-problem/) |
232
219
  | 🛠️ | **LSP integration** | Both | Diagnostics, navigation, symbols, workspace rename. IDE precision for agents. Same LSP MCP server in both editions. |
233
- | 🔎 | **AST-Grep** | Both | Pattern-aware code search and rewriting across 25 languages. Ultimate uses the MCP tools; Light uses the shared `ast-grep` skill with a provisioned `sg`. |
220
+ | 🔎 | **AST-Grep** | Both | Pattern-aware code search and rewriting across 25 languages. Both editions use the shared `ast-grep` skill with a provisioned `sg`. |
234
221
  | 🧠 | **Background Agents** | Ultimate | Fire 5+ specialists in parallel. Context stays lean. Results when ready. |
235
- | 📚 | **Built-in MCPs** (web/docs/code search) | Ultimate | Exa (web search), Context7 (official docs), Grep.app (GitHub search). Always on. |
222
+ | 📚 | **Built-in MCPs** (web/docs/code search) | Ultimate | websearch (Exa), context7 (docs), grep_app (GitHub search), lsp. Always on. |
236
223
  | 🔁 | **Goal / `/goal`** | Ultimate | `/goal` sets a persistent thread objective. Idle continuation runs only when `goal.enabled` is true (default false). |
237
224
  | ✅ | **Todo Enforcer** | Ultimate | Agent goes idle? System yanks it back. Your task gets done, period. |
238
225
  | 💬 | **Comment Checker** | Both | No AI slop in comments. Code reads like a senior wrote it. |
@@ -257,7 +244,7 @@ Even with only the following subscriptions, `ultrawork` works well (this project
257
244
 
258
245
  **Hephaestus** (`gpt-5.6-sol` through OpenAI, OpenAI Codex, GitHub Copilot, or OpenCode at medium effort) is your autonomous deep worker. Give him a goal, not a recipe. He explores the codebase, researches patterns, and executes end-to-end without hand-holding. Point him at `gpt-6-astra`, OpenAI's most capable model, when you want the strongest GPT available. *The Legitimate Craftsman.*
259
246
 
260
- **Prometheus** (`claude-fable-5` / **`kimi-k3`**) is your strategic planner. Interview mode: he asks questions, identifies scope, and builds a detailed plan before a single line of code is touched.
247
+ **Prometheus** (`claude-fable-5-1` / **`kimi-k3`**) is your strategic planner. Interview mode: he asks questions, identifies scope, and builds a detailed plan before a single line of code is touched.
261
248
 
262
249
  Every agent is tuned to its model's specific strengths. No manual model juggling. [Learn more →](docs/guide/overview.md)
263
250
 
@@ -265,7 +252,7 @@ Every agent is tuned to its model's specific strengths. No manual model juggling
265
252
  >
266
253
  > We run best on Opus or Kimi K3, but Kimi K3 + GPT-5.6 Sol already beats vanilla Claude Code. Zero config needed.
267
254
 
268
- ### Team Mode (v4.0)
255
+ ### Team Mode
269
256
 
270
257
  One agent is fast. A coordinated team is *devastating*.
271
258
 
@@ -341,8 +328,6 @@ Inspired by [oh-my-pi](https://github.com/can1357/oh-my-pi), we built **Hashline
341
328
 
342
329
  The agent edits by referencing those tags. If the file has changed since the last read, the hash won't match and the edit is rejected before any corruption. No whitespace reproduction. No stale-line errors.
343
330
 
344
- Grok Code Fast 1: **6.7% → 68.3%** success rate, just from changing the edit tool.
345
-
346
331
  ### Deep Initialization. `/init-deep`
347
332
 
348
333
  Run `/init-deep`. It generates hierarchical `AGENTS.md` files:
@@ -447,7 +432,7 @@ See full [Features Documentation](docs/reference/features.md).
447
432
  - **Hash-anchored Edit Tool** (opt-in via `hashline_edit: true`): `LINE#ID` references validate content before applying every change. Surgical edits, zero stale-line errors
448
433
  - **Context Injection**: Auto-inject AGENTS.md, README.md, conditional rules
449
434
  - **Claude Code Compatibility**: Full hook system, commands, skills, agents, MCPs
450
- - **Built-in MCPs**: websearch (Exa), context7 (docs), grep_app (GitHub search) — injected at runtime by the plugin; not visible in `opencode mcp list` (see [MCP docs](docs/reference/features.md#native-vs-plugin-injected-mcps))
435
+ - **Built-in MCPs**: websearch (Exa), context7 (docs), grep_app (GitHub search), lsp — injected at runtime by the plugin; not visible in `opencode mcp list` (see [MCP docs](docs/reference/features.md#native-vs-plugin-injected-mcps))
451
436
  - **Session Tools**: List, read, search, and analyze session history
452
437
  - **Productivity Features**: Goal, Todo Enforcer, Comment Checker, Think Mode, and more
453
438
  - **Doctor Command**: Built-in diagnostics (`bunx oh-my-opencode doctor`) verify plugin registration, config, models, and environment
@@ -471,9 +456,9 @@ See [Configuration Documentation](docs/reference/configuration.md).
471
456
  - **Background Tasks**: Configure concurrency limits per provider/model
472
457
  - **Categories**: Domain-specific task delegation (`visual-engineering`, `ultrabrain`, `deep`, `artistry`, `quick`, `unspecified-low`, `unspecified-high`, `writing`, plus custom names)
473
458
  - **Hooks**: 54+ lifecycle hooks (61 with Team Mode), all configurable via `disabled_hooks`
474
- - **MCPs**: Built-in websearch (Exa), context7 (docs), grep_app (GitHub search) — runtime-injected, not shown in `opencode mcp list`
459
+ - **MCPs**: Built-in websearch (Exa), context7 (docs), grep_app (GitHub search), lsp — runtime-injected, not shown in `opencode mcp list`
475
460
  - **LSP**: Full LSP support with refactoring tools
476
- - **Experimental**: Aggressive truncation, auto-resume, and more
461
+ - **Experimental**: Aggressive truncation, preemptive compaction, and more
477
462
 
478
463
 
479
464
  ## Author's Note