oh-my-opencode 3.9.0 → 3.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/README.ja.md +25 -36
  2. package/README.ko.md +25 -41
  3. package/README.md +4 -15
  4. package/README.ru.md +357 -0
  5. package/README.zh-cn.md +25 -36
  6. package/dist/agents/atlas/agent.d.ts +1 -1
  7. package/dist/agents/atlas/default.d.ts +1 -1
  8. package/dist/agents/atlas/gemini.d.ts +1 -1
  9. package/dist/agents/atlas/gpt.d.ts +6 -14
  10. package/dist/agents/dynamic-agent-prompt-builder.d.ts +2 -1
  11. package/dist/agents/hephaestus/agent.d.ts +19 -0
  12. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +21 -0
  13. package/dist/agents/hephaestus/gpt-5-4.d.ts +3 -0
  14. package/dist/agents/hephaestus/gpt.d.ts +3 -0
  15. package/dist/agents/hephaestus/index.d.ts +2 -0
  16. package/dist/agents/metis.d.ts +1 -1
  17. package/dist/agents/momus.d.ts +5 -1
  18. package/dist/agents/prometheus/gpt.d.ts +5 -18
  19. package/dist/agents/prometheus/system-prompt.d.ts +1 -1
  20. package/dist/agents/sisyphus/default.d.ts +9 -0
  21. package/dist/agents/{sisyphus-gemini-overlays.d.ts → sisyphus/gemini.d.ts} +2 -0
  22. package/dist/agents/sisyphus/gpt-5-4.d.ts +26 -0
  23. package/dist/agents/sisyphus/index.d.ts +11 -0
  24. package/dist/agents/sisyphus-junior/agent.d.ts +2 -5
  25. package/dist/agents/sisyphus-junior/gpt-5-3-codex.d.ts +8 -0
  26. package/dist/agents/sisyphus-junior/gpt-5-4.d.ts +11 -0
  27. package/dist/agents/sisyphus-junior/gpt.d.ts +2 -1
  28. package/dist/agents/sisyphus-junior/index.d.ts +2 -0
  29. package/dist/agents/types.d.ts +2 -0
  30. package/dist/cli/config-manager.d.ts +0 -3
  31. package/dist/cli/doctor/checks/system-loaded-version.d.ts +1 -0
  32. package/dist/cli/index.js +4093 -3285
  33. package/dist/config/schema/background-task.d.ts +1 -0
  34. package/dist/config/schema/categories.d.ts +1 -1
  35. package/dist/config/schema/hooks.d.ts +1 -0
  36. package/dist/config/schema/oh-my-opencode-config.d.ts +4 -0
  37. package/dist/config/schema/start-work.d.ts +5 -0
  38. package/dist/create-hooks.d.ts +1 -0
  39. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +1 -0
  40. package/dist/features/claude-code-plugin-loader/types.d.ts +13 -3
  41. package/dist/features/context-injector/types.d.ts +2 -2
  42. package/dist/features/hook-message-injector/injector.d.ts +2 -0
  43. package/dist/hooks/atlas/session-last-agent.d.ts +10 -3
  44. package/dist/hooks/atlas/tool-execute-after.d.ts +1 -0
  45. package/dist/hooks/atlas/types.d.ts +3 -0
  46. package/dist/hooks/atlas/verification-reminders.d.ts +2 -1
  47. package/dist/hooks/auto-slash-command/executor.d.ts +2 -0
  48. package/dist/hooks/auto-slash-command/hook.d.ts +2 -0
  49. package/dist/hooks/claude-code-hooks/dispatch-hook.d.ts +4 -0
  50. package/dist/hooks/claude-code-hooks/execute-http-hook.d.ts +4 -0
  51. package/dist/hooks/claude-code-hooks/types.d.ts +9 -1
  52. package/dist/hooks/index.d.ts +1 -0
  53. package/dist/hooks/keyword-detector/ultrawork/default.d.ts +1 -1
  54. package/dist/hooks/keyword-detector/ultrawork/gemini.d.ts +1 -1
  55. package/dist/hooks/keyword-detector/ultrawork/gpt.d.ts +11 -0
  56. package/dist/hooks/keyword-detector/ultrawork/index.d.ts +5 -5
  57. package/dist/hooks/keyword-detector/ultrawork/source-detector.d.ts +1 -1
  58. package/dist/hooks/preemptive-compaction.d.ts +1 -0
  59. package/dist/hooks/ralph-loop/completion-handler.d.ts +14 -0
  60. package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +1 -1
  61. package/dist/hooks/ralph-loop/constants.d.ts +1 -0
  62. package/dist/hooks/ralph-loop/continuation-prompt-builder.d.ts +1 -0
  63. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +3 -0
  64. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +3 -0
  65. package/dist/hooks/ralph-loop/session-event-handler.d.ts +12 -0
  66. package/dist/hooks/ralph-loop/types.d.ts +5 -1
  67. package/dist/hooks/ralph-loop/verification-failure-handler.d.ts +12 -0
  68. package/dist/hooks/read-image-resizer/hook.d.ts +12 -0
  69. package/dist/hooks/read-image-resizer/image-dimensions.d.ts +2 -0
  70. package/dist/hooks/read-image-resizer/image-resizer.d.ts +3 -0
  71. package/dist/hooks/read-image-resizer/index.d.ts +1 -0
  72. package/dist/hooks/read-image-resizer/types.d.ts +14 -0
  73. package/dist/hooks/session-notification-utils.d.ts +1 -0
  74. package/dist/index.js +22679 -5503
  75. package/dist/oh-my-opencode.schema.json +18 -1
  76. package/dist/plugin/hooks/create-core-hooks.d.ts +1 -0
  77. package/dist/plugin/hooks/create-skill-hooks.d.ts +2 -1
  78. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
  79. package/dist/plugin/system-transform.d.ts +6 -1
  80. package/dist/plugin/tool-execute-after.d.ts +2 -0
  81. package/dist/shared/index.d.ts +2 -0
  82. package/dist/shared/model-format-normalizer.d.ts +7 -0
  83. package/dist/shared/model-normalization.d.ts +2 -0
  84. package/dist/shared/plugin-command-discovery.d.ts +6 -0
  85. package/dist/tools/background-task/constants.d.ts +1 -1
  86. package/dist/tools/delegate-task/constants.d.ts +1 -1
  87. package/dist/tools/delegate-task/executor-types.d.ts +1 -0
  88. package/dist/tools/delegate-task/index.d.ts +1 -1
  89. package/dist/tools/delegate-task/prompt-builder.d.ts +1 -0
  90. package/dist/tools/delegate-task/sync-session-poller.d.ts +1 -1
  91. package/dist/tools/delegate-task/timing.d.ts +2 -0
  92. package/dist/tools/delegate-task/tools.d.ts +1 -1
  93. package/dist/tools/delegate-task/types.d.ts +1 -0
  94. package/dist/tools/hashline-edit/tool-description.d.ts +1 -1
  95. package/dist/tools/look-at/image-converter.d.ts +7 -0
  96. package/dist/tools/skill/types.d.ts +4 -0
  97. package/dist/tools/skill-mcp/constants.d.ts +1 -0
  98. package/dist/tools/slashcommand/command-discovery.d.ts +5 -1
  99. package/dist/tools/slashcommand/types.d.ts +1 -1
  100. package/package.json +19 -15
  101. package/dist/agents/hephaestus.d.ts +0 -6
  102. package/dist/cli/config-manager/add-provider-config.d.ts +0 -2
  103. package/dist/cli/config-manager/antigravity-provider-configuration.d.ts +0 -122
  104. package/dist/cli/config-manager/auth-plugins.d.ts +0 -3
  105. package/dist/cli/config-manager/jsonc-provider-editor.d.ts +0 -1
  106. package/dist/hooks/keyword-detector/ultrawork/gpt5.2.d.ts +0 -15
  107. package/dist/shared/model-name-matcher.d.ts +0 -1
package/README.ja.md CHANGED
@@ -1,14 +1,3 @@
1
- > [!WARNING]
2
- > **セキュリティ警告: 偽装サイトにご注意ください**
3
- >
4
- > **ohmyopencode.com はこのプロジェクトとは一切関係がありません。** 私たちはそのサイトを運営したり承認したりしていません。
5
- >
6
- > OhMyOpenCodeは**無料かつオープンソース**です。「公式」を名乗る第三者のサイトからインストーラーをダウンロードしたり、支払い情報を入力したり**しないでください。**
7
- >
8
- > 偽装サイトはペイウォールの背後に隠れており、**どのような悪意あるプログラムを配布しているか検証できません**。そこからのダウンロードはすべて**潜在的に危険**であると見なしてください。
9
- >
10
- > ✅ 公式ダウンロード: https://github.com/code-yeongyu/oh-my-opencode/releases
11
-
12
1
  > [!NOTE]
13
2
  >
14
3
  > [![Sisyphus Labs - Sisyphus is the agent that codes like your team.](./.github/assets/sisyphuslabs.png?v=2)](https://sisyphuslabs.ai)
@@ -44,7 +33,7 @@
44
33
  [![GitHub Forks](https://img.shields.io/github/forks/code-yeongyu/oh-my-opencode?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/network/members)
45
34
  [![GitHub Stars](https://img.shields.io/github/stars/code-yeongyu/oh-my-opencode?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
46
35
  [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/oh-my-opencode?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/issues)
47
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
36
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/LICENSE.md)
48
37
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/oh-my-opencode)
49
38
 
50
39
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
@@ -96,7 +85,7 @@ OmOをインストールして、`ultrawork`とタイプしてください。狂
96
85
 
97
86
  ```
98
87
  Install and configure oh-my-opencode by following the instructions here:
99
- https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/docs/guide/installation.md
88
+ https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
100
89
  ```
101
90
 
102
91
  もしくは[インストールガイド](docs/guide/installation.md)を直接読んでもいいですが、マジでエージェントにやらせてください。人間は設定で必ずタイポします。
@@ -106,7 +95,7 @@ https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/
106
95
  インストールガイドを取得して、それに従ってください:
107
96
 
108
97
  ```bash
109
- curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/docs/guide/installation.md
98
+ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
110
99
  ```
111
100
 
112
101
  ---
@@ -135,23 +124,23 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
135
124
  - [GLM Coding プラン ($10)](https://z.ai/subscribe)
136
125
  - 従量課金(pay-per-token)の対象であれば、kimiやgeminiモデルを使っても費用はほとんどかかりません。
137
126
 
138
- | | 機能 | 何をするのか |
139
- | :---: | :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------------- |
140
- | 🤖 | **規律あるエージェント (Discipline Agents)** | Sisyphusが Hephaestus、Oracle、Librarian、Exploreをオーケストレーションします。完全なAI開発チームが並列で動きます。 |
141
- | ⚡ | **`ultrawork` / `ulw`** | 一言でOK。すべてのエージェントがアクティブになり、終わるまで止まりません。 |
142
- | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | ユーザーの真の意図を分析してから分類・行動します。もう文字通りに誤解して的外れなことをすることはありません。 |
143
- | 🔗 | **ハッシュベースの編集ツール** | `LINE#ID` のコンテンツハッシュですべての変更を検証します。stale-lineエラー0%。[oh-my-pi](https://github.com/can1357/oh-my-pi)にインスパイアされています。[ハーネス問題 →](https://blog.can.ac/2026/02/12/the-harness-problem/) |
144
- | 🛠️ | **LSP + AST-Grep** | ワークスペース単位のリネーム、ビルド前の診断、ASTを考慮した書き換え。エージェントにIDEレベルの精度を提供します。 |
145
- | 🧠 | **バックグラウンドエージェント** | 5人以上の専門家を並列で投入します。コンテキストは軽く保ち、結果は準備ができ次第受け取ります。 |
146
- | 📚 | **組み込みMCP** | Exa(Web検索)、Context7(公式ドキュメント)、Grep.app(GitHub検索)。常にオンです。 |
147
- | 🔁 | **Ralph Loop / `/ulw-loop`** | 自己参照ループ。100%完了するまで絶対に止まりません。 |
148
- | ✅ | **Todoの強制執行** | エージェントがサボる?システムが首根っこを掴んで戻します。あなたのタスクは必ず終わります。 |
149
- | 💬 | **コメントチェッカー** | コメントからAI臭い無駄話を排除します。シニアエンジニアが書いたようなコードになります。 |
150
- | 🖥️ | **Tmux統合** | 完全なインタラクティブターミナル。REPL、デバッガー、TUIアプリがすべてリアルタイムで動きます。 |
151
- | 🔌 | **Claude Code互換性** | 既存のフック、コマンド、スキル、MCP、プラグイン?すべてここでそのまま動きます。 |
152
- | 🎯 | **スキル内蔵MCP** | スキルが独自のMCPサーバーを持ち歩きます。コンテキストが肥大化しません。 |
153
- | 📋 | **Prometheusプランナー** | インタビューモードで、コードを1行触る前に戦略的な計画から立てます。 |
154
- | 🔍 | **`/init-deep`** | プロジェクト全体にわたって階層的な `AGENTS.md` ファイルを自動生成します。トークン効率とエージェントのパフォーマンスの両方を向上させます。 |
127
+ | | 機能 | 何をするのか |
128
+ | :---: | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
129
+ | 🤖 | **規律あるエージェント (Discipline Agents)** | Sisyphusが Hephaestus、Oracle、Librarian、Exploreをオーケストレーションします。完全なAI開発チームが並列で動きます。 |
130
+ | ⚡ | **`ultrawork` / `ulw`** | 一言でOK。すべてのエージェントがアクティブになり、終わるまで止まりません。 |
131
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | ユーザーの真の意図を分析してから分類・行動します。もう文字通りに誤解して的外れなことをすることはありません。 |
132
+ | 🔗 | **ハッシュベースの編集ツール** | `LINE#ID` のコンテンツハッシュですべての変更を検証します。stale-lineエラー0%。[oh-my-pi](https://github.com/can1357/oh-my-pi)にインスパイアされています。[ハーネス問題 →](https://blog.can.ac/2026/02/12/the-harness-problem/) |
133
+ | 🛠️ | **LSP + AST-Grep** | ワークスペース単位のリネーム、ビルド前の診断、ASTを考慮した書き換え。エージェントにIDEレベルの精度を提供します。 |
134
+ | 🧠 | **バックグラウンドエージェント** | 5人以上の専門家を並列で投入します。コンテキストは軽く保ち、結果は準備ができ次第受け取ります。 |
135
+ | 📚 | **組み込みMCP** | Exa(Web検索)、Context7(公式ドキュメント)、Grep.app(GitHub検索)。常にオンです。 |
136
+ | 🔁 | **Ralph Loop / `/ulw-loop`** | 自己参照ループ。100%完了するまで絶対に止まりません。 |
137
+ | ✅ | **Todoの強制執行** | エージェントがサボる?システムが首根っこを掴んで戻します。あなたのタスクは必ず終わります。 |
138
+ | 💬 | **コメントチェッカー** | コメントからAI臭い無駄話を排除します。シニアエンジニアが書いたようなコードになります。 |
139
+ | 🖥️ | **Tmux統合** | 完全なインタラクティブターミナル。REPL、デバッガー、TUIアプリがすべてリアルタイムで動きます。 |
140
+ | 🔌 | **Claude Code互換性** | 既存のフック、コマンド、スキル、MCP、プラグイン?すべてここでそのまま動きます。 |
141
+ | 🎯 | **スキル内蔵MCP** | スキルが独自のMCPサーバーを持ち歩きます。コンテキストが肥大化しません。 |
142
+ | 📋 | **Prometheusプランナー** | インタビューモードで、コードを1行触る前に戦略的な計画から立てます。 |
143
+ | 🔍 | **`/init-deep`** | プロジェクト全体にわたって階層的な `AGENTS.md` ファイルを自動生成します。トークン効率とエージェントのパフォーマンスの両方を向上させます。 |
155
144
 
156
145
  ### 規律あるエージェント (Discipline Agents)
157
146
 
@@ -176,11 +165,11 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
176
165
 
177
166
  Sisyphusがサブエージェントにタスクを委任する際、モデルを直接選ぶことはありません。**カテゴリー**を選びます。カテゴリーは自動的に適切なモデルにマッピングされます:
178
167
 
179
- | カテゴリー | 用途 |
180
- | :------------------- | :--------------------------------- |
181
- | `visual-engineering` | フロントエンド、UI/UX、デザイン |
182
- | `deep` | 自律的なリサーチと実行 |
183
- | `quick` | 単一ファイルの変更、タイポの修正 |
168
+ | カテゴリー | 用途 |
169
+ | :------------------- | :----------------------------------- |
170
+ | `visual-engineering` | フロントエンド、UI/UX、デザイン |
171
+ | `deep` | 自律的なリサーチと実行 |
172
+ | `quick` | 単一ファイルの変更、タイポの修正 |
184
173
  | `ultrabrain` | ハードロジック、アーキテクチャの決定 |
185
174
 
186
175
  エージェントがどのような種類の作業かを伝え、ハーネスが適切なモデルを選択します。あなたは何も触る必要はありません。
package/README.ko.md CHANGED
@@ -1,19 +1,3 @@
1
- > [!WARNING]
2
- > **보안 경고: 사칭 사이트 주의**
3
- >
4
- > **ohmyopencode.com은 이 프로젝트와 아무런 관련이 없습니다.** 우리는 해당 사이트를 운영하거나 보증하지 않습니다.
5
- >
6
- > OhMyOpenCode는 **무료 오픈소스**입니다. "공식"을 사칭하는 제3자 사이트에서 인스톨러를 다운로드하거나 결제 정보를 입력하지 **마세요.**
7
- >
8
- > 사칭 사이트는 페이월 뒤에 숨어 있어 **어떤 악성 코드를 배포하는지 확인할 수 없습니다**. 해당 사이트의 다운로드는 모두 **잠재적 위험**으로 간주하세요.
9
- >
10
- > ✅ 공식 다운로드: https://github.com/code-yeongyu/oh-my-opencode/releases
11
-
12
- > [!NOTE]
13
- >
14
- > [![Sisyphus Labs - Sisyphus is the agent that codes like your team.](./.github/assets/sisyphuslabs.png?v=2)](https://sisyphuslabs.ai)
15
- > > **우리는 프론티어 에이전트의 미래를 정의하기 위해 Sisyphus의 완벽한 프로덕트 버전을 만들고 있습니다. <br />[여기](https://sisyphuslabs.ai)에서 대기자 명단에 등록하세요.**
16
-
17
1
  > [!TIP]
18
2
  > 저희와 함께 하세요!
19
3
  >
@@ -44,7 +28,7 @@
44
28
  [![GitHub Forks](https://img.shields.io/github/forks/code-yeongyu/oh-my-opencode?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/network/members)
45
29
  [![GitHub Stars](https://img.shields.io/github/stars/code-yeongyu/oh-my-opencode?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
46
30
  [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/oh-my-opencode?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/issues)
47
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
31
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/LICENSE.md)
48
32
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/oh-my-opencode)
49
33
 
50
34
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
@@ -95,7 +79,7 @@ OmO 설치하고. `ultrawork` 치세요. 끝.
95
79
 
96
80
  ```
97
81
  Install and configure oh-my-opencode by following the instructions here:
98
- https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/docs/guide/installation.md
82
+ https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
99
83
  ```
100
84
 
101
85
  아니면 [설치 가이드](docs/guide/installation.md)를 직접 읽으셔도 되지만, 진심으로 그냥 에이전트한테 시키세요. 사람은 설정하다 꼭 오타 냅니다.
@@ -105,7 +89,7 @@ https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/
105
89
  설치 가이드를 가져와서 따라 하세요:
106
90
 
107
91
  ```bash
108
- curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/docs/guide/installation.md
92
+ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
109
93
  ```
110
94
 
111
95
  ---
@@ -134,23 +118,23 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
134
118
  - [GLM Coding 요금제 ($10)](https://z.ai/subscribe)
135
119
  - 종량제(pay-per-token) 대상자라면 kimi와 gemini 모델을 써도 비용이 별로 안 나옵니다.
136
120
 
137
- | | 기능 | 역할 |
138
- | :---: | :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------------- |
139
- | 🤖 | **기강 잡힌 에이전트 (Discipline Agents)** | Sisyphus가 Hephaestus, Oracle, Librarian, Explore를 오케스트레이션합니다. 완전한 AI 개발팀이 병렬로 돌아갑니다. |
140
- | ⚡ | **`ultrawork` / `ulw`** | 단어 하나면 됩니다. 모든 에이전트가 활성화되고 다 끝날 때까지 멈추지 않습니다. |
141
- | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | 사용자의 진짜 의도를 분석한 뒤 분류하거나 행동합니다. 더 이상 문자 그대로 오해해서 헛짓거리하는 일이 없습니다. |
142
- | 🔗 | **해시 기반 편집 툴** | `LINE#ID` 콘텐츠 해시로 모든 변경 사항을 검증합니다. stale-line 에러 0%. [oh-my-pi](https://github.com/can1357/oh-my-pi)에서 영감을 받았습니다. [하니스 프로블러 →](https://blog.can.ac/2026/02/12/the-harness-problem/) |
143
- | 🛠️ | **LSP + AST-Grep** | 워크스페이스 단위 이름 변경, 빌드 전 진단, AST 기반 재작성. 에이전트에게 IDE급 정밀도를 제공합니다. |
144
- | 🧠 | **백그라운드 에이전트** | 5명 이상의 전문가를 병렬로 투입합니다. 컨텍스트는 가볍게 유지하고 결과는 준비될 때 받습니다. |
145
- | 📚 | **기본 내장 MCP** | Exa(웹 검색), Context7(공식 문서), Grep.app(GitHub 검색). 항상 켜져 있습니다. |
146
- | 🔁 | **Ralph Loop / `/ulw-loop`** | 자기 참조 루프. 100% 완료될 때까지 절대 멈추지 않습니다. |
147
- | ✅ | **Todo 강제 집행** | 에이전트가 딴짓한다고요? 시스템이 멱살 잡고 끌고 옵니다. 당신의 작업은 무조건 끝납니다. |
148
- | 💬 | **주석 검사기** | 주석에 AI 냄새나는 헛소리를 빼버립니다. 시니어 개발자가 짠 것 같은 코드가 됩니다. |
149
- | 🖥️ | **Tmux 연동** | 완전한 인터랙티브 터미널. REPL, 디버거, TUI 앱들 모두 실시간으로 돌아갑니다. |
150
- | 🔌 | **Claude Code 호환성** | 기존 훅, 명령어, 스킬, MCP, 플러그인? 전부 여기서 그대로 돌아갑니다. |
151
- | 🎯 | **스킬 내장 MCP** | 스킬이 자기만의 MCP 서버를 들고 다닙니다. 컨텍스트가 부풀어 오르지 않습니다. |
152
- | 📋 | **Prometheus 플래너** | 인터뷰 모드로 코드 한 줄 만지기 전에 전략적인 계획부터 세웁니다. |
153
- | 🔍 | **`/init-deep`** | 프로젝트 전체에 걸쳐 계층적인 `AGENTS.md` 파일을 자동 생성합니다. 토큰 효율과 에이전트 성능 둘 다 잡습니다. |
121
+ | | 기능 | 역할 |
122
+ | :---: | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
123
+ | 🤖 | **기강 잡힌 에이전트 (Discipline Agents)** | Sisyphus가 Hephaestus, Oracle, Librarian, Explore를 오케스트레이션합니다. 완전한 AI 개발팀이 병렬로 돌아갑니다. |
124
+ | ⚡ | **`ultrawork` / `ulw`** | 단어 하나면 됩니다. 모든 에이전트가 활성화되고 다 끝날 때까지 멈추지 않습니다. |
125
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | 사용자의 진짜 의도를 분석한 뒤 분류하거나 행동합니다. 더 이상 문자 그대로 오해해서 헛짓거리하는 일이 없습니다. |
126
+ | 🔗 | **해시 기반 편집 툴** | `LINE#ID` 콘텐츠 해시로 모든 변경 사항을 검증합니다. stale-line 에러 0%. [oh-my-pi](https://github.com/can1357/oh-my-pi)에서 영감을 받았습니다. [하니스 프로블러 →](https://blog.can.ac/2026/02/12/the-harness-problem/) |
127
+ | 🛠️ | **LSP + AST-Grep** | 워크스페이스 단위 이름 변경, 빌드 전 진단, AST 기반 재작성. 에이전트에게 IDE급 정밀도를 제공합니다. |
128
+ | 🧠 | **백그라운드 에이전트** | 5명 이상의 전문가를 병렬로 투입합니다. 컨텍스트는 가볍게 유지하고 결과는 준비될 때 받습니다. |
129
+ | 📚 | **기본 내장 MCP** | Exa(웹 검색), Context7(공식 문서), Grep.app(GitHub 검색). 항상 켜져 있습니다. |
130
+ | 🔁 | **Ralph Loop / `/ulw-loop`** | 자기 참조 루프. 100% 완료될 때까지 절대 멈추지 않습니다. |
131
+ | ✅ | **Todo 강제 집행** | 에이전트가 딴짓한다고요? 시스템이 멱살 잡고 끌고 옵니다. 당신의 작업은 무조건 끝납니다. |
132
+ | 💬 | **주석 검사기** | 주석에 AI 냄새나는 헛소리를 빼버립니다. 시니어 개발자가 짠 것 같은 코드가 됩니다. |
133
+ | 🖥️ | **Tmux 연동** | 완전한 인터랙티브 터미널. REPL, 디버거, TUI 앱들 모두 실시간으로 돌아갑니다. |
134
+ | 🔌 | **Claude Code 호환성** | 기존 훅, 명령어, 스킬, MCP, 플러그인? 전부 여기서 그대로 돌아갑니다. |
135
+ | 🎯 | **스킬 내장 MCP** | 스킬이 자기만의 MCP 서버를 들고 다닙니다. 컨텍스트가 부풀어 오르지 않습니다. |
136
+ | 📋 | **Prometheus 플래너** | 인터뷰 모드로 코드 한 줄 만지기 전에 전략적인 계획부터 세웁니다. |
137
+ | 🔍 | **`/init-deep`** | 프로젝트 전체에 걸쳐 계층적인 `AGENTS.md` 파일을 자동 생성합니다. 토큰 효율과 에이전트 성능 둘 다 잡습니다. |
154
138
 
155
139
  ### 기강 잡힌 에이전트 (Discipline Agents)
156
140
 
@@ -176,11 +160,11 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
176
160
  Sisyphus가 하위 에이전트에게 일을 맡길 때, 모델을 직접 고르지 않습니다. **카테고리**를 고릅니다. 카테고리는 자동으로 올바른 모델에 매핑됩니다:
177
161
 
178
162
  | 카테고리 | 용도 |
179
- | :------------------- | :--------------------------------- |
180
- | `visual-engineering` | 프론트엔드, UI/UX, 디자인 |
181
- | `deep` | 자율 리서치 및 실행 |
182
- | `quick` | 단일 파일 변경, 오타 수정 |
183
- | `ultrabrain` | 하드 로직, 아키텍처 결정 |
163
+ | :------------------- | :------------------------ |
164
+ | `visual-engineering` | 프론트엔드, UI/UX, 디자인 |
165
+ | `deep` | 자율 리서치 및 실행 |
166
+ | `quick` | 단일 파일 변경, 오타 수정 |
167
+ | `ultrabrain` | 하드 로직, 아키텍처 결정 |
184
168
 
185
169
  에이전트가 어떤 작업인지 말하면, 하네스가 알아서 적합한 모델을 꺼내옵니다. 당신은 손댈 게 없습니다.
186
170
 
package/README.md CHANGED
@@ -1,14 +1,3 @@
1
- > [!WARNING]
2
- > **Security warning: impersonation site**
3
- >
4
- > **ohmyopencode.com is NOT affiliated with this project.** We do not operate or endorse that site.
5
- >
6
- > OhMyOpenCode is **free and open-source**. Do **not** download installers or enter payment details on third-party sites that claim to be "official."
7
- >
8
- > Because the impersonation site is behind a paywall, we **cannot verify what it distributes**. Treat any downloads from it as **potentially unsafe**.
9
- >
10
- > ✅ Official downloads: https://github.com/code-yeongyu/oh-my-opencode/releases
11
-
12
1
  > [!NOTE]
13
2
  >
14
3
  > [![Sisyphus Labs - Sisyphus is the agent that codes like your team.](./.github/assets/sisyphuslabs.png?v=2)](https://sisyphuslabs.ai)
@@ -47,7 +36,7 @@
47
36
  [![GitHub Forks](https://img.shields.io/github/forks/code-yeongyu/oh-my-opencode?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/network/members)
48
37
  [![GitHub Stars](https://img.shields.io/github/stars/code-yeongyu/oh-my-opencode?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
49
38
  [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/oh-my-opencode?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/issues)
50
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
39
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/LICENSE.md)
51
40
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/oh-my-opencode)
52
41
 
53
42
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
@@ -99,7 +88,7 @@ Copy and paste this prompt to your LLM agent (Claude Code, AmpCode, Cursor, etc.
99
88
 
100
89
  ```
101
90
  Install and configure oh-my-opencode by following the instructions here:
102
- https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/docs/guide/installation.md
91
+ https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
103
92
  ```
104
93
 
105
94
  Or read the [Installation Guide](docs/guide/installation.md), but seriously, let an agent do it. Humans fat-finger configs.
@@ -109,7 +98,7 @@ Or read the [Installation Guide](docs/guide/installation.md), but seriously, let
109
98
  Fetch the installation guide and follow it:
110
99
 
111
100
  ```bash
112
- curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/master/docs/guide/installation.md
101
+ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
113
102
  ```
114
103
 
115
104
  ---
@@ -134,7 +123,7 @@ Everything below, every feature, every optimization, you don't need to know it.
134
123
 
135
124
  Even only with following subscriptions, ultrawork will work well (this project is not affiliated, this is just personal recommendation):
136
125
  - [ChatGPT Subscription ($20)](https://chatgpt.com/)
137
- - [Kimi Code Subscription ($0.99) (*only this month)](https://www.kimi.com/membership/pricing?track_id=5cdeca93-66f0-4d35-aabb-b6df8fcea328)
126
+ - [Kimi Code Subscription ($0.99) (*only this month)](https://www.kimi.com/kimiplus/sale)
138
127
  - [GLM Coding Plan ($10)](https://z.ai/subscribe)
139
128
  - If you are eligible for pay-per-token, using kimi and gemini models won't cost you that much.
140
129