oh-my-magento 0.2.0 → 0.3.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 (280) hide show
  1. package/README.ja.md +41 -49
  2. package/README.ko.md +40 -59
  3. package/README.md +27 -69
  4. package/README.ru.md +31 -38
  5. package/README.zh-cn.md +41 -49
  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/builtin-agents/general-agents.d.ts +1 -0
  11. package/dist/agents/dynamic-agent-prompt-builder.d.ts +3 -1
  12. package/dist/agents/env-context.d.ts +1 -1
  13. package/dist/agents/hephaestus/agent.d.ts +19 -0
  14. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +21 -0
  15. package/dist/agents/hephaestus/gpt-5-4.d.ts +3 -0
  16. package/dist/agents/hephaestus/gpt.d.ts +3 -0
  17. package/dist/agents/hephaestus/index.d.ts +2 -0
  18. package/dist/agents/index.d.ts +1 -0
  19. package/dist/agents/metis.d.ts +1 -1
  20. package/dist/agents/momus.d.ts +5 -1
  21. package/dist/agents/prometheus/gemini.d.ts +1 -1
  22. package/dist/agents/prometheus/gpt.d.ts +5 -18
  23. package/dist/agents/prometheus/interview-mode.d.ts +1 -1
  24. package/dist/agents/prometheus/plan-generation.d.ts +1 -1
  25. package/dist/agents/prometheus/plan-template.d.ts +1 -1
  26. package/dist/agents/prometheus/system-prompt.d.ts +2 -2
  27. package/dist/agents/sisyphus/default.d.ts +9 -0
  28. package/dist/agents/sisyphus/gpt-5-4.d.ts +26 -0
  29. package/dist/agents/sisyphus/index.d.ts +11 -0
  30. package/dist/agents/sisyphus-junior/agent.d.ts +2 -5
  31. package/dist/agents/sisyphus-junior/gpt-5-3-codex.d.ts +8 -0
  32. package/dist/agents/sisyphus-junior/gpt-5-4.d.ts +11 -0
  33. package/dist/agents/sisyphus-junior/gpt.d.ts +2 -1
  34. package/dist/agents/sisyphus-junior/index.d.ts +2 -0
  35. package/dist/agents/types.d.ts +3 -1
  36. package/dist/cli/config-manager/bun-install.d.ts +8 -1
  37. package/dist/cli/config-manager/plugin-name-with-version.d.ts +1 -1
  38. package/dist/cli/config-manager.d.ts +0 -3
  39. package/dist/cli/doctor/checks/system-loaded-version.d.ts +1 -0
  40. package/dist/cli/doctor/checks/tools-lsp.d.ts +4 -6
  41. package/dist/cli/doctor/constants.d.ts +2 -1
  42. package/dist/cli/doctor/types.d.ts +4 -8
  43. package/dist/cli/index.js +5221 -4211
  44. package/dist/cli/install-validators.d.ts +1 -0
  45. package/dist/cli/model-fallback-requirements.d.ts +1 -1
  46. package/dist/cli/model-fallback-types.d.ts +1 -0
  47. package/dist/cli/openai-only-model-catalog.d.ts +3 -0
  48. package/dist/cli/run/agent-resolver.d.ts +2 -2
  49. package/dist/cli/run/index.d.ts +1 -0
  50. package/dist/cli/run/model-resolver.d.ts +4 -0
  51. package/dist/cli/run/types.d.ts +1 -0
  52. package/dist/cli/types.d.ts +3 -0
  53. package/dist/config/index.d.ts +4 -2
  54. package/dist/config/schema/agent-names.d.ts +3 -10
  55. package/dist/config/schema/agent-overrides.d.ts +1 -86
  56. package/dist/config/schema/background-task.d.ts +8 -0
  57. package/dist/config/schema/categories.d.ts +1 -1
  58. package/dist/config/schema/git-env-prefix.d.ts +5 -0
  59. package/dist/config/schema/git-master.d.ts +1 -0
  60. package/dist/config/schema/hooks.d.ts +1 -0
  61. package/dist/config/schema/{oh-my-magento-config.d.ts → oh-my-opencode-config.d.ts} +44 -88
  62. package/dist/config/schema/openclaw.d.ts +64 -0
  63. package/dist/config/schema/ralph-loop.d.ts +1 -1
  64. package/dist/config/schema.d.ts +2 -1
  65. package/dist/create-hooks.d.ts +14 -2
  66. package/dist/create-managers.d.ts +2 -2
  67. package/dist/create-tools.d.ts +2 -2
  68. package/dist/features/background-agent/compaction-aware-message-resolver.d.ts +16 -1
  69. package/dist/features/background-agent/constants.d.ts +6 -2
  70. package/dist/features/background-agent/loop-detector.d.ts +16 -0
  71. package/dist/features/background-agent/manager.d.ts +21 -4
  72. package/dist/features/background-agent/process-cleanup.d.ts +1 -1
  73. package/dist/features/background-agent/remove-task-toast-tracking.d.ts +1 -0
  74. package/dist/features/background-agent/session-status-classifier.d.ts +2 -0
  75. package/dist/features/background-agent/subagent-spawn-limits.d.ts +23 -0
  76. package/dist/features/background-agent/task-history.d.ts +1 -0
  77. package/dist/features/background-agent/task-poller.d.ts +1 -0
  78. package/dist/features/background-agent/types.d.ts +11 -0
  79. package/dist/features/boulder-state/index.d.ts +1 -0
  80. package/dist/features/boulder-state/storage.d.ts +10 -1
  81. package/dist/features/boulder-state/top-level-task.d.ts +2 -0
  82. package/dist/features/boulder-state/types.d.ts +28 -0
  83. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +1 -0
  84. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
  85. package/dist/features/claude-code-agent-loader/claude-model-mapper.d.ts +4 -0
  86. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -3
  87. package/dist/features/claude-code-agent-loader/types.d.ts +8 -1
  88. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +2 -2
  89. package/dist/features/claude-code-plugin-loader/loader.d.ts +2 -2
  90. package/dist/features/claude-code-plugin-loader/types.d.ts +23 -4
  91. package/dist/features/claude-tasks/session-storage.d.ts +5 -5
  92. package/dist/features/claude-tasks/storage.d.ts +4 -4
  93. package/dist/features/opencode-skill-loader/git-master-template-injection.d.ts +1 -1
  94. package/dist/features/skill-mcp-manager/types.d.ts +4 -0
  95. package/dist/features/tmux-subagent/index.d.ts +1 -0
  96. package/dist/features/tmux-subagent/manager.d.ts +5 -0
  97. package/dist/features/tmux-subagent/pane-state-parser.d.ts +8 -0
  98. package/dist/features/tmux-subagent/tracked-session-state.d.ts +8 -0
  99. package/dist/features/tmux-subagent/types.d.ts +2 -0
  100. package/dist/hooks/anthropic-context-window-limit-recovery/executor.d.ts +2 -2
  101. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.d.ts +2 -2
  102. package/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.d.ts +2 -2
  103. package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -0
  104. package/dist/hooks/atlas/boulder-session-lineage.d.ts +6 -0
  105. package/dist/hooks/atlas/final-wave-approval-gate.d.ts +6 -0
  106. package/dist/hooks/atlas/final-wave-plan-state.d.ts +5 -0
  107. package/dist/hooks/atlas/idle-event.d.ts +8 -0
  108. package/dist/hooks/atlas/resolve-active-boulder-session.d.ts +11 -0
  109. package/dist/hooks/atlas/session-last-agent.d.ts +10 -3
  110. package/dist/hooks/atlas/subagent-session-id.d.ts +7 -1
  111. package/dist/hooks/atlas/tool-execute-after.d.ts +3 -0
  112. package/dist/hooks/atlas/tool-execute-before.d.ts +2 -0
  113. package/dist/hooks/atlas/types.d.ts +17 -0
  114. package/dist/hooks/atlas/verification-reminders.d.ts +6 -1
  115. package/dist/hooks/auto-slash-command/executor.d.ts +1 -0
  116. package/dist/hooks/auto-slash-command/hook.d.ts +7 -0
  117. package/dist/hooks/auto-slash-command/processed-command-store.d.ts +7 -0
  118. package/dist/hooks/auto-slash-command/types.d.ts +9 -0
  119. package/dist/hooks/auto-update-checker/checker/sync-package-json.d.ts +7 -0
  120. package/dist/hooks/auto-update-checker/checker.d.ts +3 -1
  121. package/dist/hooks/auto-update-checker/constants.d.ts +2 -2
  122. package/dist/hooks/comment-checker/downloader.d.ts +1 -1
  123. package/dist/hooks/compaction-context-injector/compaction-context-prompt.d.ts +1 -0
  124. package/dist/hooks/compaction-context-injector/constants.d.ts +5 -0
  125. package/dist/hooks/compaction-context-injector/hook.d.ts +5 -1
  126. package/dist/hooks/compaction-context-injector/recovery-prompt-config.d.ts +6 -0
  127. package/dist/hooks/compaction-context-injector/recovery.d.ts +6 -0
  128. package/dist/hooks/compaction-context-injector/session-id.d.ts +2 -0
  129. package/dist/hooks/compaction-context-injector/session-prompt-config-resolver.d.ts +16 -0
  130. package/dist/hooks/compaction-context-injector/tail-monitor.d.ts +13 -0
  131. package/dist/hooks/compaction-context-injector/types.d.ts +43 -0
  132. package/dist/hooks/compaction-context-injector/validated-model.d.ts +13 -0
  133. package/dist/hooks/context-window-monitor.d.ts +2 -5
  134. package/dist/hooks/index.d.ts +2 -1
  135. package/dist/hooks/keyword-detector/hook.d.ts +1 -0
  136. package/dist/hooks/keyword-detector/ultrawork/default.d.ts +1 -1
  137. package/dist/hooks/keyword-detector/ultrawork/gemini.d.ts +1 -1
  138. package/dist/hooks/keyword-detector/ultrawork/gpt.d.ts +11 -0
  139. package/dist/hooks/keyword-detector/ultrawork/index.d.ts +5 -5
  140. package/dist/hooks/keyword-detector/ultrawork/source-detector.d.ts +1 -1
  141. package/dist/hooks/openclaw.d.ts +11 -0
  142. package/dist/hooks/preemptive-compaction.d.ts +3 -6
  143. package/dist/hooks/ralph-loop/completion-handler.d.ts +14 -0
  144. package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +1 -1
  145. package/dist/hooks/ralph-loop/constants.d.ts +1 -0
  146. package/dist/hooks/ralph-loop/continuation-prompt-builder.d.ts +1 -0
  147. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +3 -0
  148. package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +17 -0
  149. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +3 -0
  150. package/dist/hooks/ralph-loop/session-event-handler.d.ts +12 -0
  151. package/dist/hooks/ralph-loop/types.d.ts +5 -1
  152. package/dist/hooks/ralph-loop/verification-failure-handler.d.ts +12 -0
  153. package/dist/hooks/runtime-fallback/fallback-bootstrap-model.d.ts +10 -0
  154. package/dist/hooks/runtime-fallback/fallback-models.d.ts +2 -2
  155. package/dist/hooks/runtime-fallback/fallback-retry-dispatcher.d.ts +11 -0
  156. package/dist/hooks/runtime-fallback/hook.d.ts +2 -3
  157. package/dist/hooks/runtime-fallback/last-user-retry-parts.d.ts +4 -0
  158. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +1 -2
  159. package/dist/hooks/runtime-fallback/retry-model-payload.d.ts +7 -0
  160. package/dist/hooks/runtime-fallback/session-messages.d.ts +9 -0
  161. package/dist/hooks/runtime-fallback/session-status-handler.d.ts +3 -0
  162. package/dist/hooks/runtime-fallback/types.d.ts +60 -6
  163. package/dist/hooks/runtime-fallback/visible-assistant-response.d.ts +3 -0
  164. package/dist/hooks/session-notification-content.d.ts +30 -0
  165. package/dist/hooks/session-notification-scheduler.d.ts +3 -3
  166. package/dist/hooks/session-notification.d.ts +2 -0
  167. package/dist/hooks/shared/compaction-model-resolver.d.ts +2 -2
  168. package/dist/hooks/start-work/index.d.ts +1 -1
  169. package/dist/hooks/start-work/worktree-detector.d.ts +7 -0
  170. package/dist/hooks/todo-continuation-enforcer/compaction-guard.d.ts +2 -0
  171. package/dist/hooks/todo-continuation-enforcer/constants.d.ts +2 -0
  172. package/dist/hooks/todo-continuation-enforcer/resolve-message-info.d.ts +3 -0
  173. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +10 -1
  174. package/dist/hooks/todo-continuation-enforcer/stagnation-detection.d.ts +6 -0
  175. package/dist/hooks/todo-continuation-enforcer/types.d.ts +9 -0
  176. package/dist/hooks/todo-description-override/description.d.ts +1 -0
  177. package/dist/hooks/todo-description-override/hook.d.ts +8 -0
  178. package/dist/hooks/todo-description-override/index.d.ts +1 -0
  179. package/dist/hooks/tool-output-truncator.d.ts +1 -0
  180. package/dist/index.d.ts +3 -3
  181. package/dist/index.js +37242 -18294
  182. package/dist/mcp/index.d.ts +2 -2
  183. package/dist/oh-my-magento.schema.json +183 -234
  184. package/dist/oh-my-opencode.schema.json +4077 -0
  185. package/dist/openclaw/config.d.ts +8 -0
  186. package/dist/openclaw/daemon.d.ts +1 -0
  187. package/dist/openclaw/dispatcher.d.ts +16 -0
  188. package/dist/openclaw/index.d.ts +5 -0
  189. package/dist/openclaw/reply-listener.d.ts +31 -0
  190. package/dist/openclaw/session-registry.d.ts +17 -0
  191. package/dist/openclaw/tmux.d.ts +8 -0
  192. package/dist/openclaw/types.d.ts +38 -0
  193. package/dist/plugin/available-categories.d.ts +2 -2
  194. package/dist/plugin/chat-message.d.ts +2 -2
  195. package/dist/plugin/event.d.ts +2 -2
  196. package/dist/plugin/hooks/create-continuation-hooks.d.ts +2 -2
  197. package/dist/plugin/hooks/create-core-hooks.d.ts +3 -2
  198. package/dist/plugin/hooks/create-session-hooks.d.ts +2 -2
  199. package/dist/plugin/hooks/create-skill-hooks.d.ts +2 -2
  200. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +4 -3
  201. package/dist/plugin/hooks/create-transform-hooks.d.ts +2 -2
  202. package/dist/plugin/normalize-tool-arg-schemas.d.ts +2 -0
  203. package/dist/plugin/skill-context.d.ts +2 -2
  204. package/dist/plugin/system-transform.d.ts +3 -1
  205. package/dist/plugin/tool-execute-after.d.ts +2 -0
  206. package/dist/plugin/tool-registry.d.ts +2 -2
  207. package/dist/plugin/ultrawork-model-override.d.ts +4 -18
  208. package/dist/plugin/ultrawork-variant-availability.d.ts +6 -0
  209. package/dist/plugin/unstable-agent-babysitter.d.ts +2 -2
  210. package/dist/plugin-config.d.ts +5 -12
  211. package/dist/plugin-dispose.d.ts +10 -0
  212. package/dist/plugin-handlers/agent-config-handler.d.ts +2 -2
  213. package/dist/plugin-handlers/agent-override-protection.d.ts +3 -0
  214. package/dist/plugin-handlers/command-config-handler.d.ts +2 -2
  215. package/dist/plugin-handlers/config-handler.d.ts +2 -2
  216. package/dist/plugin-handlers/mcp-config-handler.d.ts +2 -2
  217. package/dist/plugin-handlers/plugin-components-loader.d.ts +2 -2
  218. package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +0 -1
  219. package/dist/plugin-handlers/tool-config-handler.d.ts +2 -2
  220. package/dist/plugin-interface.d.ts +2 -2
  221. package/dist/plugin-state.d.ts +5 -0
  222. package/dist/shared/agent-variant.d.ts +4 -4
  223. package/dist/shared/compaction-agent-config-checkpoint.d.ts +11 -0
  224. package/dist/shared/connected-providers-cache.d.ts +27 -29
  225. package/dist/shared/context-limit-resolver.d.ts +5 -0
  226. package/dist/shared/data-path.d.ts +2 -2
  227. package/dist/shared/dynamic-truncator.d.ts +4 -7
  228. package/dist/shared/external-plugin-detector.d.ts +1 -1
  229. package/dist/shared/fallback-chain-from-models.d.ts +3 -0
  230. package/dist/shared/index.d.ts +4 -0
  231. package/dist/shared/model-error-classifier.d.ts +2 -1
  232. package/dist/shared/model-resolution-pipeline.d.ts +0 -1
  233. package/dist/shared/opencode-command-dirs.d.ts +3 -0
  234. package/dist/shared/plugin-command-discovery.d.ts +6 -0
  235. package/dist/shared/plugin-identity.d.ts +5 -0
  236. package/dist/shared/question-denied-session-permission.d.ts +6 -0
  237. package/dist/shared/retry-status-utils.d.ts +2 -0
  238. package/dist/shared/shell-env.d.ts +27 -0
  239. package/dist/shared/system-directive.d.ts +2 -2
  240. package/dist/shared/tmux/tmux-utils/environment.d.ts +1 -0
  241. package/dist/shared/vision-capable-models-cache.d.ts +4 -0
  242. package/dist/tools/background-task/constants.d.ts +1 -1
  243. package/dist/tools/call-omo-agent/background-executor.d.ts +2 -1
  244. package/dist/tools/call-omo-agent/constants.d.ts +1 -1
  245. package/dist/tools/call-omo-agent/sync-executor.d.ts +11 -3
  246. package/dist/tools/call-omo-agent/tools.d.ts +2 -1
  247. package/dist/tools/delegate-task/cancel-unstable-agent-task.d.ts +2 -0
  248. package/dist/tools/delegate-task/constants.d.ts +2 -2
  249. package/dist/tools/delegate-task/index.d.ts +1 -1
  250. package/dist/tools/delegate-task/model-selection.d.ts +3 -0
  251. package/dist/tools/delegate-task/model-string-parser.d.ts +5 -3
  252. package/dist/tools/delegate-task/prompt-builder.d.ts +1 -0
  253. package/dist/tools/delegate-task/subagent-resolver.d.ts +1 -1
  254. package/dist/tools/delegate-task/timing.d.ts +2 -1
  255. package/dist/tools/delegate-task/tools.d.ts +1 -1
  256. package/dist/tools/hashline-edit/hash-computation.d.ts +1 -0
  257. package/dist/tools/hashline-edit/tool-description.d.ts +1 -1
  258. package/dist/tools/look-at/constants.d.ts +1 -1
  259. package/dist/tools/look-at/multimodal-fallback-chain.d.ts +4 -0
  260. package/dist/tools/lsp/constants.d.ts +1 -0
  261. package/dist/tools/lsp/directory-diagnostics.d.ts +1 -0
  262. package/dist/tools/lsp/lsp-client-transport.d.ts +4 -2
  263. package/dist/tools/lsp/lsp-client-wrapper.d.ts +2 -1
  264. package/dist/tools/lsp/server-path-bases.d.ts +1 -0
  265. package/dist/tools/task/task-create.d.ts +2 -2
  266. package/dist/tools/task/task-get.d.ts +2 -2
  267. package/dist/tools/task/task-list.d.ts +2 -2
  268. package/dist/tools/task/task-update.d.ts +2 -2
  269. package/package.json +44 -25
  270. package/dist/agents/hephaestus.d.ts +0 -6
  271. package/dist/agents/magento-architect.d.ts +0 -7
  272. package/dist/agents/magento-payment.d.ts +0 -7
  273. package/dist/agents/magento-upgrader.d.ts +0 -7
  274. package/dist/cli/config-manager/add-provider-config.d.ts +0 -2
  275. package/dist/cli/config-manager/antigravity-provider-configuration.d.ts +0 -122
  276. package/dist/cli/config-manager/auth-plugins.d.ts +0 -3
  277. package/dist/cli/config-manager/jsonc-provider-editor.d.ts +0 -1
  278. package/dist/hooks/keyword-detector/ultrawork/gpt5.2.d.ts +0 -15
  279. package/dist/plugin-handlers/custom-agent-utils.d.ts +0 -20
  280. /package/dist/agents/{sisyphus-gemini-overlays.d.ts → sisyphus/gemini.d.ts} +0 -0
package/README.ja.md CHANGED
@@ -1,13 +1,8 @@
1
1
  > [!WARNING]
2
- > **セキュリティ警告: 偽装サイトにご注意ください**
2
+ > **一時的なお知らせ(今週): メンテナー対応遅延のお知らせ**
3
3
  >
4
- > **ohmyopencode.com はこのプロジェクトとは一切関係がありません。** 私たちはそのサイトを運営したり承認したりしていません。
5
- >
6
- > OhMyMagentoは**無料かつオープンソース**です。「公式」を名乗る第三者のサイトからインストーラーをダウンロードしたり、支払い情報を入力したり**しないでください。**
7
- >
8
- > 偽装サイトはペイウォールの背後に隠れており、**どのような悪意あるプログラムを配布しているか検証できません**。そこからのダウンロードはすべて**潜在的に危険**であると見なしてください。
9
- >
10
- > ✅ 公式ダウンロード: https://github.com/CaravanOfGlory/oh-my-magento/releases
4
+ > コアメンテナーのQが負傷したため、今週は Issue/PR への返信とリリースが遅れる可能性があります。
5
+ > ご理解とご支援に感謝します。
11
6
 
12
7
  > [!NOTE]
13
8
  >
@@ -18,17 +13,14 @@
18
13
  > 私たちと一緒に!
19
14
  >
20
15
  > | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PUwSMR9XNk) | [Discordコミュニティ](https://discord.gg/PUwSMR9XNk)に参加して、コントリビューターや他の `oh-my-magento` ユーザーと交流しましょう。 |
21
- > | :-----| :----- |
22
- > | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | `oh-my-magento` のニュースやアップデートは私のXアカウントで投稿されていましたが、 <br /> 誤って凍結されてしまったため、現在は [@justsisyphus](https://x.com/justsisyphus) が代わりにアップデートを投稿しています。 |
23
- > | [<img alt="GitHub Follow" src="https://img.shields.io/github/followers/CaravanOfGlory?style=flat-square&logo=github&labelColor=black&color=24292f" width="156px" />](https://github.com/CaravanOfGlory) | さらに多くのプロジェクトを見たい場合は、GitHubで [@CaravanOfGlory](https://github.com/CaravanOfGlory) をフォローしてください。 |
24
16
 
25
17
  <!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
26
18
 
27
19
  <div align="center">
28
20
 
29
- [![Oh My OpenCode](./.github/assets/hero.jpg)](https://github.com/CaravanOfGlory/oh-my-magento#oh-my-magento)
21
+ [![Oh My Magento](./.github/assets/hero.jpg)](https://github.com/caravanglory/oh-my-magento#oh-my-magento)
30
22
 
31
- [![Preview](./.github/assets/omo.png)](https://github.com/CaravanOfGlory/oh-my-magento#oh-my-magento)
23
+ [![Preview](./.github/assets/omo.png)](https://github.com/caravanglory/oh-my-magento#oh-my-magento)
32
24
 
33
25
  </div>
34
26
 
@@ -38,14 +30,14 @@
38
30
 
39
31
  <div align="center">
40
32
 
41
- [![GitHub Release](https://img.shields.io/github/v/release/CaravanOfGlory/oh-my-magento?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/releases)
42
- [![npm downloads](https://img.shields.io/npm/dt/oh-my-magento?color=ff6b35&labelColor=black&style=flat-square)](https://www.npmjs.com/package/oh-my-magento)
43
- [![GitHub Contributors](https://img.shields.io/github/contributors/CaravanOfGlory/oh-my-magento?color=c4f042&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/graphs/contributors)
44
- [![GitHub Forks](https://img.shields.io/github/forks/CaravanOfGlory/oh-my-magento?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/network/members)
45
- [![GitHub Stars](https://img.shields.io/github/stars/CaravanOfGlory/oh-my-magento?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/stargazers)
46
- [![GitHub Issues](https://img.shields.io/github/issues/CaravanOfGlory/oh-my-magento?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/issues)
47
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/blob/dev/LICENSE.md)
48
- [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/CaravanOfGlory/oh-my-magento)
33
+ [![GitHub Release](https://img.shields.io/github/v/release/caravanglory/oh-my-magento?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/caravanglory/oh-my-magento/releases)
34
+ [![npm downloads](https://img.shields.io/npm/dt/oh-my-opencode?color=ff6b35&labelColor=black&style=flat-square)](https://www.npmjs.com/package/oh-my-opencode)
35
+ [![GitHub Contributors](https://img.shields.io/github/contributors/caravanglory/oh-my-magento?color=c4f042&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/graphs/contributors)
36
+ [![GitHub Forks](https://img.shields.io/github/forks/caravanglory/oh-my-magento?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/network/members)
37
+ [![GitHub Stars](https://img.shields.io/github/stars/caravanglory/oh-my-magento?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/stargazers)
38
+ [![GitHub Issues](https://img.shields.io/github/issues/caravanglory/oh-my-magento?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/issues)
39
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/blob/dev/LICENSE.md)
40
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/caravanglory/oh-my-magento)
49
41
 
50
42
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
51
43
 
@@ -63,7 +55,7 @@
63
55
 
64
56
  > 「Ohmyopencodeとralph loopを使って、45k行のtauriアプリを一晩でSaaSウェブアプリに変換しました。インタビューモードから始めて、私のプロンプトに対して質問や推奨事項を尋ねました。勝手に作業していくのを見るのは楽しかったし、今朝起きたらウェブサイトがほぼ動いているのを見て驚愕しました!」 - [James Hargis](https://x.com/hargabyte/status/2007299688261882202)
65
57
 
66
- > 「oh-my-magentoを使ってください。もう二度と元には戻れません。」 <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
58
+ > 「oh-my-opencodeを使ってください。もう二度と元には戻れません。」 <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
67
59
 
68
60
  > 「何がどうすごいのかまだ上手く言語化できないんですが、開発体験が完全に異次元に到達してしまいました。」 - [苔硯:こけすずり](https://x.com/kokesuzuri/status/2008532913961529372?s=20)
69
61
 
@@ -96,7 +88,7 @@ OmOをインストールして、`ultrawork`とタイプしてください。狂
96
88
 
97
89
  ```
98
90
  Install and configure oh-my-magento by following the instructions here:
99
- https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
91
+ https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
100
92
  ```
101
93
 
102
94
  もしくは[インストールガイド](docs/guide/installation.md)を直接読んでもいいですが、マジでエージェントにやらせてください。人間は設定で必ずタイポします。
@@ -106,7 +98,7 @@ https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/do
106
98
  インストールガイドを取得して、それに従ってください:
107
99
 
108
100
  ```bash
109
- curl -s https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
101
+ curl -s https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
110
102
  ```
111
103
 
112
104
  ---
@@ -116,7 +108,7 @@ curl -s https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/head
116
108
  ドキュメントを読む時代は終わりました。このテキストをエージェントに貼り付けるだけです:
117
109
 
118
110
  ```
119
- Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/README.md
111
+ Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/README.md
120
112
  ```
121
113
 
122
114
  ## ハイライト
@@ -135,23 +127,23 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
135
127
  - [GLM Coding プラン ($10)](https://z.ai/subscribe)
136
128
  - 従量課金(pay-per-token)の対象であれば、kimiやgeminiモデルを使っても費用はほとんどかかりません。
137
129
 
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` ファイルを自動生成します。トークン効率とエージェントのパフォーマンスの両方を向上させます。 |
130
+ | | 機能 | 何をするのか |
131
+ | :---: | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
132
+ | 🤖 | **規律あるエージェント (Discipline Agents)** | Sisyphusが Hephaestus、Oracle、Librarian、Exploreをオーケストレーションします。完全なAI開発チームが並列で動きます。 |
133
+ | ⚡ | **`ultrawork` / `ulw`** | 一言でOK。すべてのエージェントがアクティブになり、終わるまで止まりません。 |
134
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | ユーザーの真の意図を分析してから分類・行動します。もう文字通りに誤解して的外れなことをすることはありません。 |
135
+ | 🔗 | **ハッシュベースの編集ツール** | `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/) |
136
+ | 🛠️ | **LSP + AST-Grep** | ワークスペース単位のリネーム、ビルド前の診断、ASTを考慮した書き換え。エージェントにIDEレベルの精度を提供します。 |
137
+ | 🧠 | **バックグラウンドエージェント** | 5人以上の専門家を並列で投入します。コンテキストは軽く保ち、結果は準備ができ次第受け取ります。 |
138
+ | 📚 | **組み込みMCP** | Exa(Web検索)、Context7(公式ドキュメント)、Grep.app(GitHub検索)。常にオンです。 |
139
+ | 🔁 | **Ralph Loop / `/ulw-loop`** | 自己参照ループ。100%完了するまで絶対に止まりません。 |
140
+ | ✅ | **Todoの強制執行** | エージェントがサボる?システムが首根っこを掴んで戻します。あなたのタスクは必ず終わります。 |
141
+ | 💬 | **コメントチェッカー** | コメントからAI臭い無駄話を排除します。シニアエンジニアが書いたようなコードになります。 |
142
+ | 🖥️ | **Tmux統合** | 完全なインタラクティブターミナル。REPL、デバッガー、TUIアプリがすべてリアルタイムで動きます。 |
143
+ | 🔌 | **Claude Code互換性** | 既存のフック、コマンド、スキル、MCP、プラグイン?すべてここでそのまま動きます。 |
144
+ | 🎯 | **スキル内蔵MCP** | スキルが独自のMCPサーバーを持ち歩きます。コンテキストが肥大化しません。 |
145
+ | 📋 | **Prometheusプランナー** | インタビューモードで、コードを1行触る前に戦略的な計画から立てます。 |
146
+ | 🔍 | **`/init-deep`** | プロジェクト全体にわたって階層的な `AGENTS.md` ファイルを自動生成します。トークン効率とエージェントのパフォーマンスの両方を向上させます。 |
155
147
 
156
148
  ### 規律あるエージェント (Discipline Agents)
157
149
 
@@ -176,11 +168,11 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
176
168
 
177
169
  Sisyphusがサブエージェントにタスクを委任する際、モデルを直接選ぶことはありません。**カテゴリー**を選びます。カテゴリーは自動的に適切なモデルにマッピングされます:
178
170
 
179
- | カテゴリー | 用途 |
180
- | :------------------- | :--------------------------------- |
181
- | `visual-engineering` | フロントエンド、UI/UX、デザイン |
182
- | `deep` | 自律的なリサーチと実行 |
183
- | `quick` | 単一ファイルの変更、タイポの修正 |
171
+ | カテゴリー | 用途 |
172
+ | :------------------- | :----------------------------------- |
173
+ | `visual-engineering` | フロントエンド、UI/UX、デザイン |
174
+ | `deep` | 自律的なリサーチと実行 |
175
+ | `quick` | 単一ファイルの変更、タイポの修正 |
184
176
  | `ultrabrain` | ハードロジック、アーキテクチャの決定 |
185
177
 
186
178
  エージェントがどのような種類の作業かを伝え、ハーネスが適切なモデルを選択します。あなたは何も触る必要はありません。
@@ -273,11 +265,11 @@ oh-my-magentoを削除するには:
273
265
 
274
266
  1. **OpenCodeの設定からプラグインを削除する**
275
267
 
276
- `~/.config/opencode/opencode.json`(または `opencode.jsonc`)を編集し、`plugin` 配列から `"oh-my-magento"` を削除します:
268
+ `~/.config/opencode/opencode.json`(または `opencode.jsonc`)を編集し、`plugin` 配列から `"oh-my-opencode"` を削除します:
277
269
 
278
270
  ```bash
279
271
  # jq を使用する場合
280
- jq '.plugin = [.plugin[] | select(. != "oh-my-magento")]' \
272
+ jq '.plugin = [.plugin[] | select(. != "oh-my-opencode")]' \
281
273
  ~/.config/opencode/opencode.json > /tmp/oc.json && \
282
274
  mv /tmp/oc.json ~/.config/opencode/opencode.json
283
275
  ```
package/README.ko.md CHANGED
@@ -1,34 +1,15 @@
1
- > [!WARNING]
2
- > **보안 경고: 사칭 사이트 주의**
3
- >
4
- > **ohmyopencode.com은 이 프로젝트와 아무런 관련이 없습니다.** 우리는 해당 사이트를 운영하거나 보증하지 않습니다.
5
- >
6
- > OhMyMagento는 **무료 오픈소스**입니다. "공식"을 사칭하는 제3자 사이트에서 인스톨러를 다운로드하거나 결제 정보를 입력하지 **마세요.**
7
- >
8
- > 사칭 사이트는 페이월 뒤에 숨어 있어 **어떤 악성 코드를 배포하는지 확인할 수 없습니다**. 해당 사이트의 다운로드는 모두 **잠재적 위험**으로 간주하세요.
9
- >
10
- > ✅ 공식 다운로드: https://github.com/CaravanOfGlory/oh-my-magento/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
  >
20
4
  > | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PUwSMR9XNk) | [Discord 커뮤니티](https://discord.gg/PUwSMR9XNk)에 가입하여 기여자 및 다른 `oh-my-magento` 사용자들과 소통하세요. |
21
- > | :-----| :----- |
22
- > | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | `oh-my-magento`에 대한 소식과 업데이트는 제 X 계정에 올라왔었지만, <br /> 실수로 정지된 이후에는 [@justsisyphus](https://x.com/justsisyphus)가 대신 업데이트를 게시하고 있습니다. |
23
- > | [<img alt="GitHub Follow" src="https://img.shields.io/github/followers/CaravanOfGlory?style=flat-square&logo=github&labelColor=black&color=24292f" width="156px" />](https://github.com/CaravanOfGlory) | 더 많은 프로젝트를 보려면 GitHub에서 [@CaravanOfGlory](https://github.com/CaravanOfGlory)를 팔로우하세요. |
24
5
 
25
6
  <!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
26
7
 
27
8
  <div align="center">
28
9
 
29
- [![Oh My OpenCode](./.github/assets/hero.jpg)](https://github.com/CaravanOfGlory/oh-my-magento#oh-my-magento)
10
+ [![Oh My Magento](./.github/assets/hero.jpg)](https://github.com/caravanglory/oh-my-magento#oh-my-magento)
30
11
 
31
- [![Preview](./.github/assets/omo.png)](https://github.com/CaravanOfGlory/oh-my-magento#oh-my-magento)
12
+ [![Preview](./.github/assets/omo.png)](https://github.com/caravanglory/oh-my-magento#oh-my-magento)
32
13
 
33
14
  </div>
34
15
 
@@ -38,14 +19,14 @@
38
19
 
39
20
  <div align="center">
40
21
 
41
- [![GitHub Release](https://img.shields.io/github/v/release/CaravanOfGlory/oh-my-magento?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/releases)
42
- [![npm downloads](https://img.shields.io/npm/dt/oh-my-magento?color=ff6b35&labelColor=black&style=flat-square)](https://www.npmjs.com/package/oh-my-magento)
43
- [![GitHub Contributors](https://img.shields.io/github/contributors/CaravanOfGlory/oh-my-magento?color=c4f042&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/graphs/contributors)
44
- [![GitHub Forks](https://img.shields.io/github/forks/CaravanOfGlory/oh-my-magento?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/network/members)
45
- [![GitHub Stars](https://img.shields.io/github/stars/CaravanOfGlory/oh-my-magento?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/stargazers)
46
- [![GitHub Issues](https://img.shields.io/github/issues/CaravanOfGlory/oh-my-magento?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/issues)
47
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/blob/dev/LICENSE.md)
48
- [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/CaravanOfGlory/oh-my-magento)
22
+ [![GitHub Release](https://img.shields.io/github/v/release/caravanglory/oh-my-magento?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/caravanglory/oh-my-magento/releases)
23
+ [![npm downloads](https://img.shields.io/npm/dt/oh-my-opencode?color=ff6b35&labelColor=black&style=flat-square)](https://www.npmjs.com/package/oh-my-opencode)
24
+ [![GitHub Contributors](https://img.shields.io/github/contributors/caravanglory/oh-my-magento?color=c4f042&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/graphs/contributors)
25
+ [![GitHub Forks](https://img.shields.io/github/forks/caravanglory/oh-my-magento?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/network/members)
26
+ [![GitHub Stars](https://img.shields.io/github/stars/caravanglory/oh-my-magento?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/stargazers)
27
+ [![GitHub Issues](https://img.shields.io/github/issues/caravanglory/oh-my-magento?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/issues)
28
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/blob/dev/LICENSE.md)
29
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/caravanglory/oh-my-magento)
49
30
 
50
31
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
51
32
 
@@ -63,7 +44,7 @@
63
44
 
64
45
  > "Ohmyopencode와 ralph loop를 써서 45k 라인짜리 tauri 앱을 하룻밤 만에 SaaS 웹앱으로 변환했어요. 인터뷰 모드로 시작해서, 제가 쓴 프롬프트에 대해 질문하고 추천을 부탁했죠. 일하는 걸 지켜보는 것도 재밌었고, 아침에 일어났더니 웹사이트가 대부분 돌아가고 있는 걸 보고 경악했습니다!" - [James Hargis](https://x.com/hargabyte/status/2007299688261882202)
65
46
 
66
- > "oh-my-magento 쓰세요, 다시는 예전으로 못 돌아갑니다." <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
47
+ > "oh-my-opencode 쓰세요, 다시는 예전으로 못 돌아갑니다." <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
67
48
 
68
49
  > "뭐가 이렇게 대단한 건지 아직 정확하게 말로 표현하긴 어려운데, 개발 경험 자체가 완전히 다른 차원에 도달해버렸어요." - [苔硯:こけすずり](https://x.com/kokesuzuri/status/2008532913961529372?s=20)
69
50
 
@@ -77,7 +58,7 @@
77
58
 
78
59
  ---
79
60
 
80
- # Oh My OpenCode
61
+ # Oh My Magento
81
62
 
82
63
  Claude Code, Codex, 온갖 OSS 모델들 사이에서 헤매고 있나요. 워크플로우 설정하랴, 에이전트 디버깅하랴 피곤할 겁니다.
83
64
 
@@ -95,7 +76,7 @@ OmO 설치하고. `ultrawork` 치세요. 끝.
95
76
 
96
77
  ```
97
78
  Install and configure oh-my-magento by following the instructions here:
98
- https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
79
+ https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
99
80
  ```
100
81
 
101
82
  아니면 [설치 가이드](docs/guide/installation.md)를 직접 읽으셔도 되지만, 진심으로 그냥 에이전트한테 시키세요. 사람은 설정하다 꼭 오타 냅니다.
@@ -105,7 +86,7 @@ https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/do
105
86
  설치 가이드를 가져와서 따라 하세요:
106
87
 
107
88
  ```bash
108
- curl -s https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
89
+ curl -s https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
109
90
  ```
110
91
 
111
92
  ---
@@ -115,7 +96,7 @@ curl -s https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/head
115
96
  문서 읽는 시대는 지났습니다. 그냥 이 텍스트를 에이전트한테 붙여넣으세요:
116
97
 
117
98
  ```
118
- Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/README.md
99
+ Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/README.md
119
100
  ```
120
101
 
121
102
  ## 핵심 기능
@@ -134,23 +115,23 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
134
115
  - [GLM Coding 요금제 ($10)](https://z.ai/subscribe)
135
116
  - 종량제(pay-per-token) 대상자라면 kimi와 gemini 모델을 써도 비용이 별로 안 나옵니다.
136
117
 
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` 파일을 자동 생성합니다. 토큰 효율과 에이전트 성능 둘 다 잡습니다. |
118
+ | | 기능 | 역할 |
119
+ | :---: | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
120
+ | 🤖 | **기강 잡힌 에이전트 (Discipline Agents)** | Sisyphus가 Hephaestus, Oracle, Librarian, Explore를 오케스트레이션합니다. 완전한 AI 개발팀이 병렬로 돌아갑니다. |
121
+ | ⚡ | **`ultrawork` / `ulw`** | 단어 하나면 됩니다. 모든 에이전트가 활성화되고 다 끝날 때까지 멈추지 않습니다. |
122
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | 사용자의 진짜 의도를 분석한 뒤 분류하거나 행동합니다. 더 이상 문자 그대로 오해해서 헛짓거리하는 일이 없습니다. |
123
+ | 🔗 | **해시 기반 편집 툴** | `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/) |
124
+ | 🛠️ | **LSP + AST-Grep** | 워크스페이스 단위 이름 변경, 빌드 전 진단, AST 기반 재작성. 에이전트에게 IDE급 정밀도를 제공합니다. |
125
+ | 🧠 | **백그라운드 에이전트** | 5명 이상의 전문가를 병렬로 투입합니다. 컨텍스트는 가볍게 유지하고 결과는 준비될 때 받습니다. |
126
+ | 📚 | **기본 내장 MCP** | Exa(웹 검색), Context7(공식 문서), Grep.app(GitHub 검색). 항상 켜져 있습니다. |
127
+ | 🔁 | **Ralph Loop / `/ulw-loop`** | 자기 참조 루프. 100% 완료될 때까지 절대 멈추지 않습니다. |
128
+ | ✅ | **Todo 강제 집행** | 에이전트가 딴짓한다고요? 시스템이 멱살 잡고 끌고 옵니다. 당신의 작업은 무조건 끝납니다. |
129
+ | 💬 | **주석 검사기** | 주석에 AI 냄새나는 헛소리를 빼버립니다. 시니어 개발자가 짠 것 같은 코드가 됩니다. |
130
+ | 🖥️ | **Tmux 연동** | 완전한 인터랙티브 터미널. REPL, 디버거, TUI 앱들 모두 실시간으로 돌아갑니다. |
131
+ | 🔌 | **Claude Code 호환성** | 기존 훅, 명령어, 스킬, MCP, 플러그인? 전부 여기서 그대로 돌아갑니다. |
132
+ | 🎯 | **스킬 내장 MCP** | 스킬이 자기만의 MCP 서버를 들고 다닙니다. 컨텍스트가 부풀어 오르지 않습니다. |
133
+ | 📋 | **Prometheus 플래너** | 인터뷰 모드로 코드 한 줄 만지기 전에 전략적인 계획부터 세웁니다. |
134
+ | 🔍 | **`/init-deep`** | 프로젝트 전체에 걸쳐 계층적인 `AGENTS.md` 파일을 자동 생성합니다. 토큰 효율과 에이전트 성능 둘 다 잡습니다. |
154
135
 
155
136
  ### 기강 잡힌 에이전트 (Discipline Agents)
156
137
 
@@ -176,11 +157,11 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
176
157
  Sisyphus가 하위 에이전트에게 일을 맡길 때, 모델을 직접 고르지 않습니다. **카테고리**를 고릅니다. 카테고리는 자동으로 올바른 모델에 매핑됩니다:
177
158
 
178
159
  | 카테고리 | 용도 |
179
- | :------------------- | :--------------------------------- |
180
- | `visual-engineering` | 프론트엔드, UI/UX, 디자인 |
181
- | `deep` | 자율 리서치 및 실행 |
182
- | `quick` | 단일 파일 변경, 오타 수정 |
183
- | `ultrabrain` | 하드 로직, 아키텍처 결정 |
160
+ | :------------------- | :------------------------ |
161
+ | `visual-engineering` | 프론트엔드, UI/UX, 디자인 |
162
+ | `deep` | 자율 리서치 및 실행 |
163
+ | `quick` | 단일 파일 변경, 오타 수정 |
164
+ | `ultrabrain` | 하드 로직, 아키텍처 결정 |
184
165
 
185
166
  에이전트가 어떤 작업인지 말하면, 하네스가 알아서 적합한 모델을 꺼내옵니다. 당신은 손댈 게 없습니다.
186
167
 
@@ -268,15 +249,15 @@ project/
268
249
 
269
250
  ## 제거 (Uninstallation)
270
251
 
271
- oh-my-magento를 지우려면:
252
+ oh-my-opencode를 지우려면:
272
253
 
273
254
  1. **OpenCode 설정에서 플러그인 제거**
274
255
 
275
- `~/.config/opencode/opencode.json` (또는 `opencode.jsonc`)를 열고 `plugin` 배열에서 `"oh-my-magento"`를 지우세요.
256
+ `~/.config/opencode/opencode.json` (또는 `opencode.jsonc`)를 열고 `plugin` 배열에서 `"oh-my-opencode"`를 지우세요.
276
257
 
277
258
  ```bash
278
259
  # jq 사용 시
279
- jq '.plugin = [.plugin[] | select(. != "oh-my-magento")]' \
260
+ jq '.plugin = [.plugin[] | select(. != "oh-my-opencode")]' \
280
261
  ~/.config/opencode/opencode.json > /tmp/oc.json && \
281
262
  mv /tmp/oc.json ~/.config/opencode/opencode.json
282
263
  ```
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
- > OhMyMagento 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/CaravanOfGlory/oh-my-magento/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)
@@ -19,38 +8,33 @@
19
8
  >
20
9
  > | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PUwSMR9XNk) | Join our [Discord community](https://discord.gg/PUwSMR9XNk) to connect with contributors and fellow `oh-my-magento` users. |
21
10
  > | :-----| :----- |
22
- > | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | News and updates for `oh-my-magento` used to be posted on my X account. <br /> Since it was suspended mistakenly, [@justsisyphus](https://x.com/justsisyphus) now posts updates on my behalf. |
23
- > | [<img alt="GitHub Follow" src="https://img.shields.io/github/followers/CaravanOfGlory?style=flat-square&logo=github&labelColor=black&color=24292f" width="156px" />](https://github.com/CaravanOfGlory) | Follow [@CaravanOfGlory](https://github.com/CaravanOfGlory) on GitHub for more projects. |
11
+ > | [<img alt="GitHub Follow" src="https://img.shields.io/github/followers/caravanglory?style=flat-square&logo=github&labelColor=black&color=24292f" width="156px" />](https://github.com/caravanglory) | Follow [@caravanglory](https://github.com/caravanglory) on GitHub for this fork and other projects. |
24
12
 
25
13
  <!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
26
14
 
27
15
  <div align="center">
28
16
 
29
- [![Oh My OpenCode](./.github/assets/hero.jpg)](https://github.com/CaravanOfGlory/oh-my-magento#oh-my-magento)
30
-
31
- [![Preview](./.github/assets/omo.png)](https://github.com/CaravanOfGlory/oh-my-magento#oh-my-magento)
17
+ [![Oh My Magento](./.github/assets/hero.jpg)](https://github.com/caravanglory/oh-my-magento#oh-my-magento)
32
18
 
19
+ [![Preview](./.github/assets/omo.png)](https://github.com/caravanglory/oh-my-magento#oh-my-magento)
33
20
 
34
21
  </div>
35
22
 
36
- > Anthropic [**blocked OpenCode because of us.**](https://x.com/thdxr/status/2010149530486911014) **Yes this is true.**
37
- > They want you locked in. Claude Code's a nice prison, but it's still a prison.
23
+ > This is **oh-my-magento** a fork of [oh-my-opencode](https://github.com/code-yeongyu/oh-my-openagent) specialized for Magento 2 + Hyvä development. It maintains full compatibility with oh-my-opencode while adding Magento-specific agents, skills, and workflows.
38
24
  >
39
- > We don't do lock-in here. We ride every model. Claude / Kimi / GLM for orchestration. GPT for reasoning. Minimax for speed. Gemini for creativity.
40
- > The future isn't picking one winner—it's orchestrating them all. Models get cheaper every month. Smarter every month. No single provider will dominate. We're building for that open market, not their walled gardens.
25
+ > All upstream features are preserved. The difference: this fork ships with Magento development tools built in.
41
26
 
42
27
  <div align="center">
43
28
 
44
- [![GitHub Release](https://img.shields.io/github/v/release/CaravanOfGlory/oh-my-magento?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/releases)
29
+ [![GitHub Release](https://img.shields.io/github/v/release/caravanglory/oh-my-magento?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/caravanglory/oh-my-magento/releases)
45
30
  [![npm downloads](https://img.shields.io/npm/dt/oh-my-magento?color=ff6b35&labelColor=black&style=flat-square)](https://www.npmjs.com/package/oh-my-magento)
46
- [![GitHub Contributors](https://img.shields.io/github/contributors/CaravanOfGlory/oh-my-magento?color=c4f042&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/graphs/contributors)
47
- [![GitHub Forks](https://img.shields.io/github/forks/CaravanOfGlory/oh-my-magento?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/network/members)
48
- [![GitHub Stars](https://img.shields.io/github/stars/CaravanOfGlory/oh-my-magento?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/stargazers)
49
- [![GitHub Issues](https://img.shields.io/github/issues/CaravanOfGlory/oh-my-magento?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/issues)
50
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/CaravanOfGlory/oh-my-magento/blob/dev/LICENSE.md)
51
- [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/CaravanOfGlory/oh-my-magento)
31
+ [![GitHub Contributors](https://img.shields.io/github/contributors/caravanglory/oh-my-magento?color=c4f042&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/graphs/contributors)
32
+ [![GitHub Forks](https://img.shields.io/github/forks/caravanglory/oh-my-magento?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/network/members)
33
+ [![GitHub Stars](https://img.shields.io/github/stars/caravanglory/oh-my-magento?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/stargazers)
34
+ [![GitHub Issues](https://img.shields.io/github/issues/caravanglory/oh-my-magento?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/issues)
35
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/caravanglory/oh-my-magento/blob/dev/LICENSE.md)
52
36
 
53
- [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
37
+ [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md) | [Русский](README.ru.md)
54
38
 
55
39
  </div>
56
40
 
@@ -66,12 +50,11 @@
66
50
 
67
51
  > "I converted a 45k line tauri app into a SaaS web app overnight using Ohmyopencode and ralph loop. Started with interview me prompt, asked it for ratings and recommendations on the questions. It was amazing to watch it work and to wake up this morning to a mostly working website!" - [James Hargis](https://x.com/hargabyte/status/2007299688261882202)
68
52
 
69
- > "use oh-my-magento, you will never go back" <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
53
+ > "use oh-my-magento, you will never go back" <br/>- d0t3ch
70
54
 
71
- > "I haven't really been able to articulate exactly what makes it so great yet, but the development experience has reached a completely different dimension." - [
72
- 苔硯:こけすずり](https://x.com/kokesuzuri/status/2008532913961529372?s=20)
55
+ > "I haven't really been able to articulate exactly what makes it so great yet, but the development experience has reached a completely different dimension." - [苔硯:こけすずり](https://x.com/kokesuzuri/status/2008532913961529372?s=20)
73
56
 
74
- > "Experimenting with open code, oh my opencode and supermemory this weekend to build some minecraft/souls-like abomination."
57
+ > "Experimenting with open code, oh-my-magento and supermemory this weekend to build some minecraft/souls-like abomination."
75
58
  > "Asking it to add crouch animations while I go take my post-lunch walk. [Video]" - [MagiMetal](https://x.com/MagiMetal/status/2005374704178373023)
76
59
 
77
60
  > "You guys should pull this into core and recruit him. Seriously. It's really, really, really good." <br/>- Henning Kilset
@@ -82,13 +65,15 @@
82
65
 
83
66
  ---
84
67
 
85
- # Oh My OpenCode
68
+ # Oh My Magento
69
+
70
+ A fork of [oh-my-opencode](https://github.com/code-yeongyu/oh-my-openagent) — specialized for Magento 2 + Hyvä development. Ships with the same multi-model orchestration engine, plus Magento-specific agents and skills.
86
71
 
87
72
  You're juggling Claude Code, Codex, random OSS models. Configuring workflows. Debugging agents.
88
73
 
89
74
  We did the work. Tested everything. Kept what actually shipped.
90
75
 
91
- Install OmO. Type `ultrawork`. Done.
76
+ Install the fork. Type `ultrawork`. Done.
92
77
 
93
78
 
94
79
  ## Installation
@@ -99,7 +84,7 @@ Copy and paste this prompt to your LLM agent (Claude Code, AmpCode, Cursor, etc.
99
84
 
100
85
  ```
101
86
  Install and configure oh-my-magento by following the instructions here:
102
- https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
87
+ https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
103
88
  ```
104
89
 
105
90
  Or read the [Installation Guide](docs/guide/installation.md), but seriously, let an agent do it. Humans fat-finger configs.
@@ -109,7 +94,7 @@ Or read the [Installation Guide](docs/guide/installation.md), but seriously, let
109
94
  Fetch the installation guide and follow it:
110
95
 
111
96
  ```bash
112
- curl -s https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
97
+ curl -s https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
113
98
  ```
114
99
 
115
100
  ---
@@ -119,7 +104,7 @@ curl -s https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/head
119
104
  We're past the era of reading docs. Just paste this into your agent:
120
105
 
121
106
  ```
122
- Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/CaravanOfGlory/oh-my-magento/refs/heads/dev/README.md
107
+ Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/README.md
123
108
  ```
124
109
 
125
110
  ## Highlights
@@ -171,10 +156,6 @@ Even only with following subscriptions, ultrawork will work well (this project i
171
156
 
172
157
  Every agent is tuned to its model's specific strengths. No manual model-juggling. [Learn more →](docs/guide/overview.md)
173
158
 
174
- > Anthropic [blocked OpenCode because of us.](https://x.com/thdxr/status/2010149530486911014) That's why Hephaestus is called "The Legitimate Craftsman." The irony is intentional.
175
- >
176
- > We run best on Opus, but Kimi K2.5 + GPT-5.3 Codex already beats vanilla Claude Code. Zero config needed.
177
-
178
159
  ### Agent Orchestration
179
160
 
180
161
  When Sisyphus delegates to a subagent, it doesn't pick a model. It picks a **category**. The category maps automatically to the right model:
@@ -186,7 +167,7 @@ When Sisyphus delegates to a subagent, it doesn't pick a model. It picks a **cat
186
167
  | `quick` | Single-file changes, typos |
187
168
  | `ultrabrain` | Hard logic, architecture decisions |
188
169
 
189
- Agent says what kind of work. Harness picks the right model. You touch nothing.
170
+ Agent says what kind of work. Harness picks the right model. `ultrabrain` now routes to GPT-5.4 xhigh by default. You touch nothing.
190
171
 
191
172
  ### Claude Code Compatibility
192
173
 
@@ -258,7 +239,7 @@ Skills aren't just prompts. Each brings:
258
239
  - Embedded MCP servers, on-demand
259
240
  - Scoped permissions. Agents stay in bounds
260
241
 
261
- Built-ins: `playwright` (browser automation), `git-master` (atomic commits, rebase surgery), `frontend-ui-ux` (design-first UI).
242
+ Built-ins: `playwright` (browser automation), `git-master` (atomic commits, rebase surgery), `frontend-ui-ux` (design-first UI), plus Magento-specific skills (`magento-architect`, `magento-upgrader`, `magento-payment`).
262
243
 
263
244
  Add your own: `.opencode/skills/*/SKILL.md` or `~/.config/opencode/skills/*/SKILL.md`.
264
245
 
@@ -308,6 +289,7 @@ See full [Features Documentation](docs/reference/features.md).
308
289
 
309
290
  **Quick Overview:**
310
291
  - **Agents**: Sisyphus (the main agent), Prometheus (planner), Oracle (architecture/debugging), Librarian (docs/code search), Explore (fast codebase grep), Multimodal Looker
292
+ - **Magento Skills**: `magento-architect`, `magento-upgrader`, `magento-payment` — Magento-specific agents via SKILL.md
311
293
  - **Background Agents**: Run multiple agents in parallel like a real dev team
312
294
  - **LSP & AST Tools**: Refactoring, rename, diagnostics, AST-aware code search
313
295
  - **Hash-anchored Edit Tool**: `LINE#ID` references validate content before applying every change. Surgical edits, zero stale-line errors
@@ -344,36 +326,14 @@ See [Configuration Documentation](docs/reference/configuration.md).
344
326
 
345
327
  ---
346
328
 
347
- I burned through $24K in LLM tokens on personal projects. Tried every tool. Configured everything to death. OpenCode won.
329
+ This is the Magento fork of [oh-my-opencode](https://github.com/code-yeongyu/oh-my-openagent). It ships with the same multi-model orchestration engine, with added Magento 2 + Hyvä development agents and skills.
348
330
 
349
- Every problem I hit, the fix is baked into this plugin. Install and go.
350
-
351
- If OpenCode is Debian/Arch, OmO is Ubuntu/[Omarchy](https://omarchy.org/).
331
+ If OpenCode is Debian/Arch, oh-my-magento is Ubuntu/OmArchitecture for the Magento ecosystem.
352
332
 
353
333
  Heavy influence from [AmpCode](https://ampcode.com) and [Claude Code](https://code.claude.com/docs/overview). Features ported, often improved. Still building. It's **Open**Code.
354
334
 
355
- Other harnesses promise multi-model orchestration. We ship it. Stability too. And features that actually work.
356
-
357
- I'm this project's most obsessive user:
358
- - Which model has the sharpest logic?
359
- - Who's the debugging god?
360
- - Who writes the best prose?
361
- - Who dominates frontend?
362
- - Who owns backend?
363
- - What's fastest for daily driving?
364
- - What are competitors shipping?
365
-
366
- This plugin is the distillation. Take the best. Got improvements? PRs welcome.
367
-
368
- **Stop agonizing over harness choices.**
369
- **I'll research, steal the best, and ship it here.**
370
-
371
- Sounds arrogant? Have a better way? Contribute. You're welcome.
372
-
373
335
  No affiliation with any project/model mentioned. Just personal experimentation.
374
336
 
375
- 99% of this project was built with OpenCode. I don't really know TypeScript. **But I personally reviewed and largely rewrote this doc.**
376
-
377
337
  ## Loved by professionals at
378
338
 
379
339
  - [Indent](https://indentcorp.com)
@@ -382,5 +342,3 @@ No affiliation with any project/model mentioned. Just personal experimentation.
382
342
  - [Microsoft](https://microsoft.com)
383
343
  - [ELESTYLE](https://elestyle.jp)
384
344
  - Making elepay - multi-mobile payment gateway, OneQR - mobile application SaaS for cashless solutions
385
-
386
- *Special thanks to [@junhoyeo](https://github.com/junhoyeo) for this amazing hero image.*