lazycodex-ai 5.0.0-beta.6 → 5.0.0-beta.61

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 (642) hide show
  1. package/README.ja.md +65 -60
  2. package/README.ko.md +66 -61
  3. package/README.md +65 -72
  4. package/README.ru.md +62 -60
  5. package/README.zh-cn.md +61 -60
  6. package/dist/cli/config-manager/parse-opencode-config-file.d.ts +2 -1
  7. package/dist/cli/doctor/checks/index.d.ts +2 -0
  8. package/dist/cli/doctor/checks/latest-version.d.ts +11 -0
  9. package/dist/cli/doctor/checks/system-plugin.d.ts +4 -3
  10. package/dist/cli/doctor/framework/constants.d.ts +5 -0
  11. package/dist/cli/doctor/framework/types.d.ts +2 -0
  12. package/dist/cli/fallback-lane-policy.d.ts +1 -0
  13. package/dist/cli/index.js +52548 -60412
  14. package/dist/cli/install-codex/install-codex-test-fixtures.d.ts +1 -1
  15. package/dist/cli/run/on-complete-hook.d.ts +2 -0
  16. package/dist/cli/runtime-commands.d.ts +1 -1
  17. package/dist/cli/worktree-sweep/classify.d.ts +16 -0
  18. package/dist/cli/worktree-sweep/format.d.ts +8 -0
  19. package/dist/cli/worktree-sweep/git.d.ts +19 -0
  20. package/dist/cli/worktree-sweep/index.d.ts +7 -0
  21. package/dist/cli/worktree-sweep/options.d.ts +2 -0
  22. package/dist/cli/worktree-sweep/parse-worktree-list.d.ts +8 -0
  23. package/dist/cli/worktree-sweep/sweep.d.ts +2 -0
  24. package/dist/cli/worktree-sweep/types.d.ts +65 -0
  25. package/dist/cli/worktree-sweep/worktree-sweep.d.ts +2 -0
  26. package/dist/cli-node/index.js +51202 -59043
  27. package/package.json +11 -9
  28. package/packages/git-bash-mcp/dist/cli.js +6 -1
  29. package/packages/lsp-daemon/dist/cli.js +902 -479
  30. package/packages/lsp-daemon/dist/client.d.ts +10 -0
  31. package/packages/lsp-daemon/dist/client.js +920 -493
  32. package/packages/lsp-daemon/dist/daemon-client.d.ts +1 -0
  33. package/packages/lsp-daemon/dist/daemon-client.js +3 -0
  34. package/packages/lsp-daemon/dist/ensure-daemon.d.ts +6 -1
  35. package/packages/lsp-daemon/dist/ensure-daemon.js +10 -2
  36. package/packages/lsp-daemon/dist/index.js +824 -402
  37. package/packages/lsp-daemon/dist/ownership.js +2 -2
  38. package/packages/lsp-daemon/dist/proxy.js +3 -0
  39. package/packages/lsp-daemon/dist/version-reap.js +1 -1
  40. package/packages/lsp-daemon/package.json +1 -1
  41. package/packages/lsp-tools-mcp/dist/cli.js +762 -341
  42. package/packages/lsp-tools-mcp/dist/lsp/manager.js +272 -138
  43. package/packages/lsp-tools-mcp/dist/mcp.js +787 -368
  44. package/packages/lsp-tools-mcp/dist/request-context.js +12 -13
  45. package/packages/lsp-tools-mcp/dist/tools.js +717 -302
  46. package/packages/lsp-tools-mcp/package.json +1 -1
  47. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +4 -6
  48. package/packages/omo-codex/plugin/.mcp.json +0 -6
  49. package/packages/omo-codex/plugin/AGENTS.md +47 -0
  50. package/packages/omo-codex/plugin/README.md +6 -2
  51. package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +7093 -408
  52. package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
  53. package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
  54. package/packages/omo-codex/plugin/components/bootstrap/src/hook.ts +1 -0
  55. package/packages/omo-codex/plugin/components/bootstrap/src/setup.ts +7 -1
  56. package/packages/omo-codex/plugin/components/comment-checker/AGENTS.md +9 -0
  57. package/packages/omo-codex/plugin/components/comment-checker/biome.json +2 -2
  58. package/packages/omo-codex/plugin/components/comment-checker/dist/cli.js +2 -1
  59. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  60. package/packages/omo-codex/plugin/components/comment-checker/package.json +5 -5
  61. package/packages/omo-codex/plugin/components/comment-checker/src/apply-patch.ts +2 -8
  62. package/packages/omo-codex/plugin/components/comment-checker/src/core.ts +1 -2
  63. package/packages/omo-codex/plugin/components/comment-checker/src/request-extractor.ts +1 -1
  64. package/packages/omo-codex/plugin/components/comment-checker/src/runner.ts +1 -0
  65. package/packages/omo-codex/plugin/components/git-bash/AGENTS.md +1 -1
  66. package/packages/omo-codex/plugin/components/git-bash/dist/cli.js +1 -1
  67. package/packages/omo-codex/plugin/components/git-bash/dist/codex-hook.js +2 -1
  68. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  69. package/packages/omo-codex/plugin/components/git-bash/package.json +3 -4
  70. package/packages/omo-codex/plugin/components/git-bash/src/codex-hook.ts +2 -1
  71. package/packages/omo-codex/plugin/components/git-bash/test/codex-hook.test.ts +6 -7
  72. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/AGENTS.md +2 -2
  73. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/biome.json +2 -2
  74. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/directive.md +2 -0
  75. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/dist/cli.js +36 -29
  76. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/dist/codex-hook.js +32 -26
  77. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/dist/types.d.ts +3 -0
  78. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
  79. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +5 -5
  80. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/src/codex-hook.ts +32 -28
  81. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/src/types.ts +3 -0
  82. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/test/cli.test.ts +1 -1
  83. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/test/codex-hook.test.ts +137 -28
  84. package/packages/omo-codex/plugin/components/lcx/skills/lcx-doctor/SKILL.md +4 -2
  85. package/packages/omo-codex/plugin/components/lsp/AGENTS.md +30 -15
  86. package/packages/omo-codex/plugin/components/lsp/biome.json +2 -2
  87. package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +4 -4
  88. package/packages/omo-codex/plugin/components/lsp/dist/cli.js +941 -540
  89. package/packages/omo-codex/plugin/components/lsp/dist/daemon-cli-path.js +1 -1
  90. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  91. package/packages/omo-codex/plugin/components/lsp/package.json +5 -5
  92. package/packages/omo-codex/plugin/components/lsp/src/cli.ts +1 -1
  93. package/packages/omo-codex/plugin/components/lsp/src/codex-hook.ts +1 -1
  94. package/packages/omo-codex/plugin/components/lsp/src/daemon-cli-path.ts +1 -5
  95. package/packages/omo-codex/plugin/components/lsp/test/codex-hook-unavailable.test.ts +6 -7
  96. package/packages/omo-codex/plugin/components/lsp/test/codex-hook.test.ts +1 -2
  97. package/packages/omo-codex/plugin/components/lsp/test/package-smoke.test.ts +11 -1
  98. package/packages/omo-codex/plugin/components/rules/AGENTS.md +12 -0
  99. package/packages/omo-codex/plugin/components/rules/README.md +2 -0
  100. package/packages/omo-codex/plugin/components/rules/biome.json +2 -2
  101. package/packages/omo-codex/plugin/components/rules/bundled-rules/hephaestus/gpt-6.md +123 -0
  102. package/packages/omo-codex/plugin/components/rules/dist/cli.js +91 -68
  103. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  104. package/packages/omo-codex/plugin/components/rules/package.json +7 -7
  105. package/packages/omo-codex/plugin/components/rules/src/config.ts +1 -2
  106. package/packages/omo-codex/plugin/components/rules/src/persistent-cache.ts +1 -2
  107. package/packages/omo-codex/plugin/components/rules/src/post-compact-budget.ts +15 -5
  108. package/packages/omo-codex/plugin/components/rules/src/rules-engine-factory.ts +1 -4
  109. package/packages/omo-codex/plugin/components/rules/src/static-injection.ts +4 -9
  110. package/packages/omo-codex/plugin/components/rules/test/bundled-rules-priority.test.ts +11 -16
  111. package/packages/omo-codex/plugin/components/rules/test/bundled-rules.test.ts +17 -25
  112. package/packages/omo-codex/plugin/components/rules/test/codex-hook-post-compact-budget.test.ts +9 -7
  113. package/packages/omo-codex/plugin/components/rules/test/codex-hook-post-compact-context.test.ts +0 -6
  114. package/packages/omo-codex/plugin/components/rules/test/codex-hook-post-compact-dedup.test.ts +6 -4
  115. package/packages/omo-codex/plugin/components/rules/test/codex-hook-post-compact-directive.test.ts +12 -9
  116. package/packages/omo-codex/plugin/components/rules/test/codex-hook.test.ts +28 -37
  117. package/packages/omo-codex/plugin/components/rules/test/dynamic-target-fingerprints.test.ts +1 -2
  118. package/packages/omo-codex/plugin/components/rules/test/engine.test.ts +7 -4
  119. package/packages/omo-codex/plugin/components/rules/test/finder.test.ts +2 -3
  120. package/packages/omo-codex/plugin/components/rules/test/formatter.test.ts +39 -72
  121. package/packages/omo-codex/plugin/components/rules/test/hephaestus-model-variant.test.ts +38 -3
  122. package/packages/omo-codex/plugin/components/rules/test/hook-output.test.ts +2 -3
  123. package/packages/omo-codex/plugin/components/rules/test/matcher.test.ts +2 -3
  124. package/packages/omo-codex/plugin/components/rules/test/package-smoke.test.ts +1 -1
  125. package/packages/omo-codex/plugin/components/rules/test/parser.test.ts +1 -2
  126. package/packages/omo-codex/plugin/components/rules/test/post-compact-budget.test.ts +29 -6
  127. package/packages/omo-codex/plugin/components/rules/test/rules-engine-consumption.test.ts +3 -6
  128. package/packages/omo-codex/plugin/components/rules/test/scanner.test.ts +1 -2
  129. package/packages/omo-codex/plugin/components/rules/test/sources.test.ts +2 -5
  130. package/packages/omo-codex/plugin/components/rules/test/windows-git-bash-bundled-rule.test.ts +2 -17
  131. package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
  132. package/packages/omo-codex/plugin/components/teammode/package.json +5 -5
  133. package/packages/omo-codex/plugin/components/teammode/test/thread-title-hook.test.ts +4 -10
  134. package/packages/omo-codex/plugin/components/telemetry/AGENTS.md +8 -0
  135. package/packages/omo-codex/plugin/components/telemetry/biome.json +2 -2
  136. package/packages/omo-codex/plugin/components/telemetry/dist/cli.js +2407 -684
  137. package/packages/omo-codex/plugin/components/telemetry/dist/posthog.js +2411 -689
  138. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  139. package/packages/omo-codex/plugin/components/telemetry/package.json +5 -5
  140. package/packages/omo-codex/plugin/components/telemetry/src/codex-hook.ts +1 -4
  141. package/packages/omo-codex/plugin/components/telemetry/src/posthog.ts +4 -14
  142. package/packages/omo-codex/plugin/components/telemetry/src/product-identity.ts +1 -1
  143. package/packages/omo-codex/plugin/components/telemetry/test/diagnostics.test.ts +2 -5
  144. package/packages/omo-codex/plugin/components/ultrawork/AGENTS.md +10 -4
  145. package/packages/omo-codex/plugin/components/ultrawork/README.md +2 -0
  146. package/packages/omo-codex/plugin/components/ultrawork/agents/explorer.toml +1 -1
  147. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-clone-fidelity-reviewer.toml +1 -1
  148. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-code-reviewer.toml +1 -1
  149. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-gate-reviewer.toml +1 -1
  150. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-qa-executor.toml +1 -1
  151. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-high.toml +1 -1
  152. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-low.toml +1 -1
  153. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-medium.toml +1 -1
  154. package/packages/omo-codex/plugin/components/ultrawork/agents/librarian.toml +1 -1
  155. package/packages/omo-codex/plugin/components/ultrawork/agents/metis.toml +1 -1
  156. package/packages/omo-codex/plugin/components/ultrawork/agents/momus.toml +1 -1
  157. package/packages/omo-codex/plugin/components/ultrawork/agents/plan.toml +1 -1
  158. package/packages/omo-codex/plugin/components/ultrawork/biome.json +2 -2
  159. package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +499 -4
  160. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  161. package/packages/omo-codex/plugin/components/ultrawork/package.json +5 -6
  162. package/packages/omo-codex/plugin/components/ultrawork/scripts/sync-directive.mjs +30 -14
  163. package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +6 -7
  164. package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/full-workflow.md +31 -7
  165. package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/intent-clear.md +2 -1
  166. package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/intent-unclear.md +5 -5
  167. package/packages/omo-codex/plugin/components/ultrawork/src/directive-content.ts +4 -0
  168. package/packages/omo-codex/plugin/components/ultrawork/src/directive.ts +5 -2
  169. package/packages/omo-codex/plugin/components/ultrawork/test/codex-hook-trigger-policy.test.ts +9 -1
  170. package/packages/omo-codex/plugin/components/ultrawork/test/codex-hook.test.ts +0 -136
  171. package/packages/omo-codex/plugin/components/ultrawork/test/directive-source.test.ts +14 -8
  172. package/packages/omo-codex/plugin/components/ultrawork/test/package-smoke.test.ts +12 -1
  173. package/packages/omo-codex/plugin/components/ultrawork/test/skill-pointer.test.ts +0 -2
  174. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/AGENTS.md +4 -4
  175. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/NOTICE +1 -1
  176. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/README.md +6 -6
  177. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/biome.json +2 -2
  178. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/directive.md +10 -10
  179. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/dist/cli.js +16 -16
  180. package/packages/omo-codex/plugin/components/ulw-execute-continuation/hooks/hooks.json +16 -0
  181. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/package.json +12 -12
  182. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/boulder-reader.ts +1 -1
  183. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/cli.ts +1 -1
  184. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/codex-hook.ts +4 -4
  185. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/directive.ts +1 -1
  186. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/index.ts +1 -1
  187. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/types.ts +1 -1
  188. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/boulder-reader.test.ts +3 -3
  189. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/cli.test.ts +4 -11
  190. package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/codex-hook.test.ts +24 -22
  191. package/packages/omo-codex/plugin/components/ulw-loop/AGENTS.md +19 -0
  192. package/packages/omo-codex/plugin/components/ulw-loop/CHANGELOG.md +3 -1
  193. package/packages/omo-codex/plugin/components/ulw-loop/README.md +12 -1
  194. package/packages/omo-codex/plugin/components/ulw-loop/biome.json +2 -2
  195. package/packages/omo-codex/plugin/components/ulw-loop/directive.md +46 -24
  196. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-codex-validation.d.ts +16 -0
  197. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-codex-validation.js +25 -0
  198. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.js +10 -4
  199. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.d.ts +2 -5
  200. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.js +5 -78
  201. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.d.ts +12 -0
  202. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.js +114 -0
  203. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.d.ts +7 -1
  204. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +50 -42
  205. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-arg-parser.js +2 -2
  206. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-commands.js +21 -8
  207. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +2 -1
  208. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +12 -1
  209. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.d.ts +1 -1
  210. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.js +40 -37
  211. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +1468 -535
  212. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.d.ts +2 -0
  213. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +28 -8
  214. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.d.ts +2 -5
  215. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.js +24 -20
  216. package/packages/omo-codex/plugin/components/ulw-loop/dist/constants.d.ts +1 -0
  217. package/packages/omo-codex/plugin/components/ulw-loop/dist/constants.js +1 -0
  218. package/packages/omo-codex/plugin/components/ulw-loop/dist/domain-types.d.ts +17 -9
  219. package/packages/omo-codex/plugin/components/ulw-loop/dist/paths.d.ts +1 -0
  220. package/packages/omo-codex/plugin/components/ulw-loop/dist/paths.js +13 -4
  221. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.d.ts +1 -0
  222. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +34 -4
  223. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-missing-recovery.d.ts +14 -0
  224. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-missing-recovery.js +29 -0
  225. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.d.ts +7 -0
  226. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.js +9 -0
  227. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.d.ts +12 -0
  228. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.js +104 -0
  229. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.d.ts +13 -1
  230. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.js +65 -9
  231. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-verdicts.js +5 -1
  232. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate.d.ts +4 -2
  233. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate.js +72 -117
  234. package/packages/omo-codex/plugin/components/ulw-loop/dist/review-blockers.d.ts +2 -0
  235. package/packages/omo-codex/plugin/components/ulw-loop/dist/review-blockers.js +16 -7
  236. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk/factory.d.ts +2 -0
  237. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk/factory.js +141 -0
  238. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk/manifest.d.ts +46 -0
  239. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk/manifest.js +28 -0
  240. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk/types.d.ts +127 -0
  241. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk/types.js +1 -0
  242. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk.d.ts +3 -0
  243. package/packages/omo-codex/plugin/components/ulw-loop/dist/sdk.js +3 -0
  244. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-guard.d.ts +7 -1
  245. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-guard.js +216 -33
  246. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-role-guard.d.ts +2 -0
  247. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-role-guard.js +22 -0
  248. package/packages/omo-codex/plugin/components/ulw-loop/dist/state-lock.d.ts +9 -0
  249. package/packages/omo-codex/plugin/components/ulw-loop/dist/state-lock.js +227 -0
  250. package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.d.ts +6 -0
  251. package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.js +33 -0
  252. package/packages/omo-codex/plugin/components/ulw-loop/dist/stop-resume-hook.js +20 -6
  253. package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.d.ts +19 -0
  254. package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.js +75 -0
  255. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +18 -5
  256. package/packages/omo-codex/plugin/components/ulw-loop/package.json +6 -6
  257. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/SKILL.md +10 -4
  258. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/define-goal.md +108 -0
  259. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +32 -8
  260. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-codex-validation.ts +40 -0
  261. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-continuation.ts +8 -6
  262. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-reconciliation.ts +5 -98
  263. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-template.ts +134 -0
  264. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +52 -73
  265. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-arg-parser.ts +10 -4
  266. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-commands.ts +24 -8
  267. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +14 -1
  268. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-subcommands.ts +52 -46
  269. package/packages/omo-codex/plugin/components/ulw-loop/src/cli.ts +8 -6
  270. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +35 -7
  271. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-snapshot.ts +34 -28
  272. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-hook.ts +3 -1
  273. package/packages/omo-codex/plugin/components/ulw-loop/src/constants.ts +1 -0
  274. package/packages/omo-codex/plugin/components/ulw-loop/src/domain-types.ts +19 -9
  275. package/packages/omo-codex/plugin/components/ulw-loop/src/paths.ts +25 -4
  276. package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +39 -4
  277. package/packages/omo-codex/plugin/components/ulw-loop/src/plan-missing-recovery.ts +38 -0
  278. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-aggregate.ts +11 -0
  279. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-artifacts.ts +123 -0
  280. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-fields.ts +71 -15
  281. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-verdicts.ts +6 -1
  282. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate.ts +92 -136
  283. package/packages/omo-codex/plugin/components/ulw-loop/src/review-blockers.ts +29 -8
  284. package/packages/omo-codex/plugin/components/ulw-loop/src/sdk/factory.ts +183 -0
  285. package/packages/omo-codex/plugin/components/ulw-loop/src/sdk/manifest.ts +42 -0
  286. package/packages/omo-codex/plugin/components/ulw-loop/src/sdk/types.ts +140 -0
  287. package/packages/omo-codex/plugin/components/ulw-loop/src/sdk.ts +3 -0
  288. package/packages/omo-codex/plugin/components/ulw-loop/src/spawn-guard.ts +226 -31
  289. package/packages/omo-codex/plugin/components/ulw-loop/src/spawn-role-guard.ts +22 -0
  290. package/packages/omo-codex/plugin/components/ulw-loop/src/state-lock.ts +239 -0
  291. package/packages/omo-codex/plugin/components/ulw-loop/src/status-next-actions.ts +36 -0
  292. package/packages/omo-codex/plugin/components/ulw-loop/src/stop-resume-hook.ts +19 -6
  293. package/packages/omo-codex/plugin/components/ulw-loop/src/surface.ts +107 -0
  294. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-continuation.test.ts +0 -1
  295. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-final.test.ts +131 -82
  296. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-template.test.ts +147 -0
  297. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint.test.ts +16 -22
  298. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-checkpoint-continuation.test.ts +4 -2
  299. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-checkpoint.test.ts +31 -2
  300. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-commands.test.ts +2 -0
  301. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-complete-goals.test.ts +3 -1
  302. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-create-goals.test.ts +35 -8
  303. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-entrypoint.test.ts +38 -4
  304. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-json-errors.test.ts +27 -0
  305. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-scope-required.test.ts +144 -0
  306. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-status-next-actions.test.ts +185 -0
  307. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-steering-batch.test.ts +8 -3
  308. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-validation-batch.test.ts +6 -0
  309. package/packages/omo-codex/plugin/components/ulw-loop/test/codex-goal-instruction.test.ts +37 -2
  310. package/packages/omo-codex/plugin/components/ulw-loop/test/codex-goal-snapshot.test.ts +52 -11
  311. package/packages/omo-codex/plugin/components/ulw-loop/test/codex-hook.test.ts +0 -3
  312. package/packages/omo-codex/plugin/components/ulw-loop/test/fixtures/cli-session.ts +4 -0
  313. package/packages/omo-codex/plugin/components/ulw-loop/test/fixtures/quality-gate-builder.ts +9 -4
  314. package/packages/omo-codex/plugin/components/ulw-loop/test/guided-recovery.test.ts +67 -0
  315. package/packages/omo-codex/plugin/components/ulw-loop/test/package-smoke.test.ts +5 -37
  316. package/packages/omo-codex/plugin/components/ulw-loop/test/paths.test.ts +9 -0
  317. package/packages/omo-codex/plugin/components/ulw-loop/test/plan-io-cross-process.test.ts +106 -0
  318. package/packages/omo-codex/plugin/components/ulw-loop/test/plan-io.test.ts +36 -2
  319. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-aggregate-basics.test.ts +258 -0
  320. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-cap-and-dedupe.test.ts +22 -0
  321. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-fields-messages.test.ts +98 -0
  322. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-lazycodex-surface.test.ts +93 -0
  323. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-poisoning-cascades.test.ts +97 -0
  324. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-roles.test.ts +51 -2
  325. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-senpi-surface.test.ts +131 -0
  326. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-single-report.test.ts +241 -0
  327. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate.test.ts +58 -3
  328. package/packages/omo-codex/plugin/components/ulw-loop/test/review-blockers.test.ts +9 -7
  329. package/packages/omo-codex/plugin/components/ulw-loop/test/sdk-contract.test.ts +137 -0
  330. package/packages/omo-codex/plugin/components/ulw-loop/test/sdk-driver-states.test.ts +145 -0
  331. package/packages/omo-codex/plugin/components/ulw-loop/test/sdk-session-context.test.ts +148 -0
  332. package/packages/omo-codex/plugin/components/ulw-loop/test/spawn-guard.test.ts +450 -7
  333. package/packages/omo-codex/plugin/components/ulw-loop/test/spawn-role-matrix.test.ts +113 -0
  334. package/packages/omo-codex/plugin/components/ulw-loop/test/state-lock.test.ts +218 -0
  335. package/packages/omo-codex/plugin/components/ulw-loop/test/steering.test.ts +8 -5
  336. package/packages/omo-codex/plugin/components/ulw-loop/test/stop-resume-hook.test.ts +1 -1
  337. package/packages/omo-codex/plugin/components/ulw-loop/test/surface.test.ts +74 -0
  338. package/packages/omo-codex/plugin/components/ulw-loop/test/ultrawork-directive.test.ts +13 -8
  339. package/packages/omo-codex/plugin/components/ulw-loop/vitest.config.ts +1 -0
  340. package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
  341. package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
  342. package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
  343. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
  344. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
  345. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
  346. package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
  347. package/packages/omo-codex/plugin/hooks/post-tool-use-recording-spawn-admission.json +18 -0
  348. package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
  349. package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
  350. package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
  351. package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
  352. package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
  353. package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
  354. package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
  355. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-execute-continuation.json +17 -0
  356. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
  357. package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
  358. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
  359. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
  360. package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
  361. package/packages/omo-codex/plugin/model-catalog.json +16 -7
  362. package/packages/omo-codex/plugin/package-lock.json +676 -524
  363. package/packages/omo-codex/plugin/package.json +2 -3
  364. package/packages/omo-codex/plugin/scripts/AGENTS.md +39 -0
  365. package/packages/omo-codex/plugin/scripts/auto-update-plan.mjs +1 -2
  366. package/packages/omo-codex/plugin/scripts/auto-update.mjs +0 -9
  367. package/packages/omo-codex/plugin/scripts/canonical-ultrawork-directive.mjs +17 -0
  368. package/packages/omo-codex/plugin/scripts/hook-status-message.mjs +0 -1
  369. package/packages/omo-codex/plugin/scripts/migrate-codex-config/catalog.mjs +16 -7
  370. package/packages/omo-codex/plugin/scripts/migrate-codex-config/multi-agent-v2-guard.mjs +8 -4
  371. package/packages/omo-codex/plugin/scripts/migrate-codex-config/subagent-limit-guard.mjs +19 -90
  372. package/packages/omo-codex/plugin/scripts/migrate-codex-config/toml-section-editor.mjs +1 -1
  373. package/packages/omo-codex/plugin/scripts/sync-skills.mjs +96 -57
  374. package/packages/omo-codex/plugin/shared/package.json +3 -4
  375. package/packages/omo-codex/plugin/shared/src/config-loader.ts +2 -102
  376. package/packages/omo-codex/plugin/shared/src/config-migration.ts +0 -1
  377. package/packages/omo-codex/plugin/shared/test/config-loader.test.ts +41 -130
  378. package/packages/omo-codex/plugin/skills/ast-grep/AGENTS.md +51 -0
  379. package/packages/omo-codex/plugin/skills/ast-grep/SKILL.md +1 -1
  380. package/packages/omo-codex/plugin/skills/coding-agent-sessions/AGENTS.md +62 -0
  381. package/packages/omo-codex/plugin/skills/coding-agent-sessions/SKILL.md +1 -1
  382. package/packages/omo-codex/plugin/skills/data-scientist/SKILL.md +99 -239
  383. package/packages/omo-codex/plugin/skills/data-scientist/references/execution-surfaces.md +91 -0
  384. package/packages/omo-codex/plugin/skills/data-scientist/references/placement.md +74 -0
  385. package/packages/omo-codex/plugin/skills/data-scientist/references/polars-lane.md +95 -0
  386. package/packages/omo-codex/plugin/skills/data-scientist/references/uv-setup.md +1 -1
  387. package/packages/omo-codex/plugin/skills/data-scientist/references/visualization.md +64 -0
  388. package/packages/omo-codex/plugin/skills/data-scientist/scripts/ensure-js-deps.sh +28 -0
  389. package/packages/omo-codex/plugin/skills/data-scientist/scripts/ensure-py-deps.sh +37 -0
  390. package/packages/omo-codex/plugin/skills/debugging/SKILL.md +3 -1
  391. package/packages/omo-codex/plugin/skills/debugging/references/methodology/00-setup.md +12 -0
  392. package/packages/omo-codex/plugin/skills/debugging/references/methodology/02-investigate.md +21 -0
  393. package/packages/omo-codex/plugin/skills/debugging/references/runtimes/go.md +15 -1
  394. package/packages/omo-codex/plugin/skills/debugging/references/runtimes/native-binary.md +38 -0
  395. package/packages/omo-codex/plugin/skills/debugging/references/runtimes/node.md +25 -0
  396. package/packages/omo-codex/plugin/skills/debugging/references/runtimes/python.md +13 -0
  397. package/packages/omo-codex/plugin/skills/debugging/references/runtimes/rust.md +41 -0
  398. package/packages/omo-codex/plugin/skills/debugging/references/scripts/dap.mjs +267 -0
  399. package/packages/omo-codex/plugin/skills/debugging/references/scripts/fixture-adapter.mjs +59 -0
  400. package/packages/omo-codex/plugin/skills/debugging/references/tools/dap.md +103 -0
  401. package/packages/omo-codex/plugin/skills/debugging/references/tools/frida.md +193 -0
  402. package/packages/omo-codex/plugin/skills/frontend/ATTRIBUTION.md +10 -0
  403. package/packages/omo-codex/plugin/skills/frontend/SKILL.md +15 -8
  404. package/packages/omo-codex/plugin/skills/frontend/references/design/README.md +10 -2
  405. package/packages/omo-codex/plugin/skills/frontend/references/design/_INDEX.md +2 -0
  406. package/packages/omo-codex/plugin/skills/frontend/references/design/ambience-skill.md +145 -0
  407. package/packages/omo-codex/plugin/skills/frontend/references/design/interaction-skill.md +2 -0
  408. package/packages/omo-codex/plugin/skills/frontend/references/design/print-paged-media.md +76 -0
  409. package/packages/omo-codex/plugin/skills/frontend/references/design/stylegallery.md +80 -0
  410. package/packages/omo-codex/plugin/skills/frontend/references/designpowers/README.md +1 -1
  411. package/packages/omo-codex/plugin/skills/frontend/references/designpowers/lane-a-direction.md +1 -1
  412. package/packages/omo-codex/plugin/skills/frontend/references/designpowers/lane-b-execution.md +11 -11
  413. package/packages/omo-codex/plugin/skills/frontend/references/designpowers/lane-d-memory.md +3 -3
  414. package/packages/omo-codex/plugin/skills/frontend/references/designpowers/orchestration.md +1 -1
  415. package/packages/omo-codex/plugin/skills/frontend/references/designpowers/routing.md +5 -5
  416. package/packages/omo-codex/plugin/skills/git-master/SKILL.md +1 -1
  417. package/packages/omo-codex/plugin/skills/init-deep/SKILL.md +20 -18
  418. package/packages/omo-codex/plugin/skills/lcx-doctor/SKILL.md +4 -2
  419. package/packages/omo-codex/plugin/skills/lsp-setup/SKILL.md +1 -1
  420. package/packages/omo-codex/plugin/skills/programming/SKILL.md +1 -1
  421. package/packages/omo-codex/plugin/skills/refactor/SKILL.md +10 -8
  422. package/packages/omo-codex/plugin/skills/remove-ai-slops/SKILL.md +7 -5
  423. package/packages/omo-codex/plugin/skills/review-work/SKILL.md +116 -424
  424. package/packages/omo-codex/plugin/skills/ultimate-browsing/ATTRIBUTION.md +38 -11
  425. package/packages/omo-codex/plugin/skills/ultimate-browsing/SKILL.md +26 -9
  426. package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/AGENTS.md +110 -0
  427. package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/templates/package.json +1 -1
  428. package/packages/omo-codex/plugin/skills/ultimate-browsing/references/chrome-stealth.md +23 -18
  429. package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/README.md +9 -2
  430. package/packages/omo-codex/plugin/skills/ultrawork/SKILL.md +46 -24
  431. package/packages/omo-codex/plugin/skills/{start-work → ulw-execute}/SKILL.md +31 -33
  432. package/packages/omo-codex/plugin/skills/ulw-execute/agents/openai.yaml +2 -0
  433. package/packages/omo-codex/plugin/skills/ulw-loop/SKILL.md +34 -4
  434. package/packages/omo-codex/plugin/skills/ulw-loop/references/define-goal.md +108 -0
  435. package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +32 -8
  436. package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +6 -7
  437. package/packages/omo-codex/plugin/skills/ulw-plan/references/full-workflow.md +31 -7
  438. package/packages/omo-codex/plugin/skills/ulw-plan/references/intent-clear.md +2 -1
  439. package/packages/omo-codex/plugin/skills/ulw-plan/references/intent-unclear.md +5 -5
  440. package/packages/omo-codex/plugin/skills/ulw-research/SKILL.md +14 -7
  441. package/packages/omo-codex/plugin/skills/visual-qa/AGENTS.md +58 -0
  442. package/packages/omo-codex/plugin/skills/visual-qa/SKILL.md +10 -7
  443. package/packages/omo-codex/plugin/test/AGENTS.md +47 -0
  444. package/packages/omo-codex/plugin/test/aggregate-agents.test.mjs +19 -173
  445. package/packages/omo-codex/plugin/test/aggregate-hooks.test.mjs +16 -51
  446. package/packages/omo-codex/plugin/test/aggregate-manifest.test.mjs +2 -3
  447. package/packages/omo-codex/plugin/test/aggregate-mcp.test.mjs +2 -7
  448. package/packages/omo-codex/plugin/test/aggregate-model-catalog.test.mjs +14 -4
  449. package/packages/omo-codex/plugin/test/aggregate-plugin-fixture.mjs +175 -13
  450. package/packages/omo-codex/plugin/test/aggregate.test.mjs +78 -2
  451. package/packages/omo-codex/plugin/test/auto-update-release-notes.test.mjs +19 -33
  452. package/packages/omo-codex/plugin/test/auto-update.test.mjs +4 -29
  453. package/packages/omo-codex/plugin/test/bootstrap-default-role.test.mjs +66 -0
  454. package/packages/omo-codex/plugin/test/bootstrap-setup.test.mjs +0 -31
  455. package/packages/omo-codex/plugin/test/canonical-ultrawork-directive.test.mjs +53 -0
  456. package/packages/omo-codex/plugin/test/component-bin-names.test.mjs +2 -2
  457. package/packages/omo-codex/plugin/test/component-bundled-cli.test.mjs +1 -51
  458. package/packages/omo-codex/plugin/test/component-hook-contract-cases.mjs +100 -2
  459. package/packages/omo-codex/plugin/test/hook-status-message.test.mjs +5 -6
  460. package/packages/omo-codex/plugin/test/lcx-contribute-bug-fix-template.test.mjs +21 -27
  461. package/packages/omo-codex/plugin/test/mcp-research-servers.test.mjs +1 -3
  462. package/packages/omo-codex/plugin/test/migrate-codex-config.test.mjs +35 -35
  463. package/packages/omo-codex/plugin/test/multi-agent-v2-regression.test.mjs +1 -1
  464. package/packages/omo-codex/plugin/test/scaffold-plan.test.mjs +0 -36
  465. package/packages/omo-codex/plugin/test/subagent-limit-migration.test.mjs +107 -15
  466. package/packages/omo-codex/plugin/test/sync-skills-codex-compatibility.test.mjs +168 -0
  467. package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +54 -24
  468. package/packages/omo-codex/plugin/test/sync-skills.test.mjs +18 -119
  469. package/packages/omo-codex/plugin/test/teammode-archive-ambiguity.test.mjs +0 -40
  470. package/packages/omo-codex/plugin/test/teammode-communication.test.mjs +6 -62
  471. package/packages/omo-codex/plugin/test/teammode-thread-links.test.mjs +3 -36
  472. package/packages/omo-codex/plugin/test/teammode-transport.test.mjs +0 -44
  473. package/packages/omo-codex/plugin/test/teammode-worktree.test.mjs +2 -6
  474. package/packages/omo-codex/plugin/test/ultrawork-skill-pointer.test.mjs +5 -5
  475. package/packages/omo-codex/plugin/test/ulw-plan-review-state-contract.test.mjs +0 -3
  476. package/packages/omo-codex/scripts/install-dist/install-local.mjs +9652 -1394
  477. package/packages/{omo-codex/plugin/components/ultrawork/skills/ultrawork/SKILL.md → prompts-core/prompts/ultrawork/codex.md} +46 -31
  478. package/packages/shared-skills/package.json +7 -1
  479. package/packages/shared-skills/skill-source-filter.d.ts +16 -0
  480. package/packages/shared-skills/skill-source-filter.mjs +44 -0
  481. package/packages/shared-skills/skills/ast-grep/AGENTS.md +51 -0
  482. package/packages/shared-skills/skills/ast-grep/SKILL.md +1 -1
  483. package/packages/shared-skills/skills/coding-agent-sessions/AGENTS.md +62 -0
  484. package/packages/shared-skills/skills/coding-agent-sessions/SKILL.md +1 -1
  485. package/packages/shared-skills/skills/data-scientist/SKILL.md +99 -239
  486. package/packages/shared-skills/skills/data-scientist/references/execution-surfaces.md +91 -0
  487. package/packages/shared-skills/skills/data-scientist/references/placement.md +74 -0
  488. package/packages/shared-skills/skills/data-scientist/references/polars-lane.md +95 -0
  489. package/packages/shared-skills/skills/data-scientist/references/uv-setup.md +1 -1
  490. package/packages/shared-skills/skills/data-scientist/references/visualization.md +64 -0
  491. package/packages/shared-skills/skills/data-scientist/scripts/ensure-js-deps.sh +28 -0
  492. package/packages/shared-skills/skills/data-scientist/scripts/ensure-py-deps.sh +37 -0
  493. package/packages/shared-skills/skills/debugging/SKILL.md +3 -1
  494. package/packages/shared-skills/skills/debugging/references/methodology/00-setup.md +12 -0
  495. package/packages/shared-skills/skills/debugging/references/methodology/02-investigate.md +21 -0
  496. package/packages/shared-skills/skills/debugging/references/runtimes/go.md +15 -1
  497. package/packages/shared-skills/skills/debugging/references/runtimes/native-binary.md +38 -0
  498. package/packages/shared-skills/skills/debugging/references/runtimes/node.md +25 -0
  499. package/packages/shared-skills/skills/debugging/references/runtimes/python.md +13 -0
  500. package/packages/shared-skills/skills/debugging/references/runtimes/rust.md +41 -0
  501. package/packages/shared-skills/skills/debugging/references/scripts/dap.mjs +267 -0
  502. package/packages/shared-skills/skills/debugging/references/scripts/dap.test.ts +86 -0
  503. package/packages/shared-skills/skills/debugging/references/scripts/fixture-adapter.mjs +59 -0
  504. package/packages/shared-skills/skills/debugging/references/tools/dap.md +103 -0
  505. package/packages/shared-skills/skills/debugging/references/tools/frida.md +193 -0
  506. package/packages/shared-skills/skills/frontend/ATTRIBUTION.md +10 -0
  507. package/packages/shared-skills/skills/frontend/SKILL.md +15 -8
  508. package/packages/shared-skills/skills/frontend/references/design/README.md +10 -2
  509. package/packages/shared-skills/skills/frontend/references/design/_INDEX.md +2 -0
  510. package/packages/shared-skills/skills/frontend/references/design/ambience-skill.md +145 -0
  511. package/packages/shared-skills/skills/frontend/references/design/interaction-skill.md +2 -0
  512. package/packages/shared-skills/skills/frontend/references/design/print-paged-media.md +76 -0
  513. package/packages/shared-skills/skills/frontend/references/design/stylegallery.md +80 -0
  514. package/packages/shared-skills/skills/frontend/references/designpowers/README.md +1 -1
  515. package/packages/shared-skills/skills/frontend/references/designpowers/lane-a-direction.md +1 -1
  516. package/packages/shared-skills/skills/frontend/references/designpowers/lane-b-execution.md +11 -11
  517. package/packages/shared-skills/skills/frontend/references/designpowers/lane-d-memory.md +3 -3
  518. package/packages/shared-skills/skills/frontend/references/designpowers/orchestration.md +1 -1
  519. package/packages/shared-skills/skills/frontend/references/designpowers/routing.md +5 -5
  520. package/packages/shared-skills/skills/git-master/SKILL.md +1 -1
  521. package/packages/shared-skills/skills/init-deep/SKILL.md +14 -14
  522. package/packages/shared-skills/skills/lsp-setup/SKILL.md +1 -1
  523. package/packages/shared-skills/skills/programming/SKILL.md +1 -1
  524. package/packages/shared-skills/skills/refactor/SKILL.md +4 -4
  525. package/packages/shared-skills/skills/remove-ai-slops/SKILL.md +1 -1
  526. package/packages/shared-skills/skills/review-work/SKILL.md +101 -419
  527. package/packages/shared-skills/skills/ultimate-browsing/ATTRIBUTION.md +38 -11
  528. package/packages/shared-skills/skills/ultimate-browsing/SKILL.md +26 -9
  529. package/packages/shared-skills/skills/ultimate-browsing/engine/AGENTS.md +110 -0
  530. package/packages/shared-skills/skills/ultimate-browsing/engine/templates/package.json +1 -1
  531. package/packages/shared-skills/skills/ultimate-browsing/references/chrome-stealth.md +23 -18
  532. package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/README.md +9 -2
  533. package/packages/shared-skills/skills/{start-work → ulw-execute}/SKILL.md +20 -19
  534. package/packages/shared-skills/skills/ulw-plan/SKILL.md +7 -8
  535. package/packages/shared-skills/skills/ulw-plan/references/full-workflow.md +31 -7
  536. package/packages/shared-skills/skills/ulw-plan/references/intent-clear.md +2 -1
  537. package/packages/shared-skills/skills/ulw-plan/references/intent-unclear.md +5 -5
  538. package/packages/shared-skills/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
  539. package/packages/shared-skills/skills/ulw-research/SKILL.md +8 -3
  540. package/packages/shared-skills/skills/visual-qa/AGENTS.md +58 -0
  541. package/packages/shared-skills/skills/visual-qa/SKILL.md +4 -3
  542. package/script/qa/web-terminal-visual-qa.mjs +2 -0
  543. package/script/qa/xterm-live-terminal.mjs +18 -2
  544. package/packages/lsp-tools-mcp/dist/lsp/cleanup-errors.d.ts +0 -1
  545. package/packages/lsp-tools-mcp/dist/lsp/constants.d.ts +0 -1
  546. package/packages/lsp-tools-mcp/dist/lsp/language-mappings.d.ts +0 -1
  547. package/packages/lsp-tools-mcp/dist/lsp/process-signal-cleanup.d.ts +0 -1
  548. package/packages/lsp-tools-mcp/dist/missing-dependency-result.d.ts +0 -1
  549. package/packages/omo-codex/plugin/components/codegraph/AGENTS.md +0 -58
  550. package/packages/omo-codex/plugin/components/codegraph/NODE-RUNTIME-LICENSES.md +0 -2951
  551. package/packages/omo-codex/plugin/components/codegraph/NOTICE +0 -16
  552. package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +0 -12149
  553. package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +0 -9747
  554. package/packages/omo-codex/plugin/components/codegraph/package.json +0 -33
  555. package/packages/omo-codex/plugin/components/codegraph/src/cache-gc.ts +0 -29
  556. package/packages/omo-codex/plugin/components/codegraph/src/cli.ts +0 -79
  557. package/packages/omo-codex/plugin/components/codegraph/src/hook-input.ts +0 -33
  558. package/packages/omo-codex/plugin/components/codegraph/src/hook-sweep.ts +0 -25
  559. package/packages/omo-codex/plugin/components/codegraph/src/hook-types.ts +0 -131
  560. package/packages/omo-codex/plugin/components/codegraph/src/hook.ts +0 -258
  561. package/packages/omo-codex/plugin/components/codegraph/src/mcp-bridge.ts +0 -309
  562. package/packages/omo-codex/plugin/components/codegraph/src/mcp-unavailable.ts +0 -80
  563. package/packages/omo-codex/plugin/components/codegraph/src/post-tool-use-hook.ts +0 -34
  564. package/packages/omo-codex/plugin/components/codegraph/src/serve-invocation.ts +0 -29
  565. package/packages/omo-codex/plugin/components/codegraph/src/serve.ts +0 -263
  566. package/packages/omo-codex/plugin/components/codegraph/src/session-start-command.ts +0 -106
  567. package/packages/omo-codex/plugin/components/codegraph/src/session-start-cooldown.ts +0 -145
  568. package/packages/omo-codex/plugin/components/codegraph/src/session-start-hook-runtime.ts +0 -21
  569. package/packages/omo-codex/plugin/components/codegraph/src/session-start-lock.ts +0 -139
  570. package/packages/omo-codex/plugin/components/codegraph/src/session-start-outcome.ts +0 -15
  571. package/packages/omo-codex/plugin/components/codegraph/src/session-start-paths.ts +0 -32
  572. package/packages/omo-codex/plugin/components/codegraph/src/session-start-project.ts +0 -109
  573. package/packages/omo-codex/plugin/components/codegraph/src/session-start-worker-result.ts +0 -148
  574. package/packages/omo-codex/plugin/components/codegraph/src/session-start-worker.ts +0 -175
  575. package/packages/omo-codex/plugin/components/codegraph/src/sweep-cli.ts +0 -81
  576. package/packages/omo-codex/plugin/components/codegraph/test/cache-gc.test.ts +0 -34
  577. package/packages/omo-codex/plugin/components/codegraph/test/hook-exclusion.test.ts +0 -112
  578. package/packages/omo-codex/plugin/components/codegraph/test/hook-registration.test.ts +0 -26
  579. package/packages/omo-codex/plugin/components/codegraph/test/hook-session-start-guard.test.ts +0 -160
  580. package/packages/omo-codex/plugin/components/codegraph/test/hook-store-upgrade.test.ts +0 -50
  581. package/packages/omo-codex/plugin/components/codegraph/test/hook-sweep.test.ts +0 -29
  582. package/packages/omo-codex/plugin/components/codegraph/test/hook.test.ts +0 -320
  583. package/packages/omo-codex/plugin/components/codegraph/test/mcp-bridge-fixtures.ts +0 -172
  584. package/packages/omo-codex/plugin/components/codegraph/test/package-runtime.test.ts +0 -91
  585. package/packages/omo-codex/plugin/components/codegraph/test/provisioned-node-guard.test.ts +0 -100
  586. package/packages/omo-codex/plugin/components/codegraph/test/serve-built-wrapper.test.ts +0 -76
  587. package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge-lifecycle.test.ts +0 -133
  588. package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge.test.ts +0 -245
  589. package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-facade.test.ts +0 -69
  590. package/packages/omo-codex/plugin/components/codegraph/test/serve-node-support.test.ts +0 -43
  591. package/packages/omo-codex/plugin/components/codegraph/test/serve-provision.test.ts +0 -147
  592. package/packages/omo-codex/plugin/components/codegraph/test/serve-unavailable.test.ts +0 -175
  593. package/packages/omo-codex/plugin/components/codegraph/test/serve.test.ts +0 -385
  594. package/packages/omo-codex/plugin/components/codegraph/test/session-start-node-support.test.ts +0 -206
  595. package/packages/omo-codex/plugin/components/codegraph/test/session-start-project.test.ts +0 -58
  596. package/packages/omo-codex/plugin/components/codegraph/test/session-start-state.test.ts +0 -104
  597. package/packages/omo-codex/plugin/components/codegraph/test/session-start-trust-boundary.test.ts +0 -65
  598. package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-availability.test.ts +0 -106
  599. package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-cooldown.test.ts +0 -116
  600. package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-flow.test.ts +0 -258
  601. package/packages/omo-codex/plugin/components/codegraph/test/sweep-cli.test.ts +0 -56
  602. package/packages/omo-codex/plugin/components/codegraph/tsconfig.build.json +0 -13
  603. package/packages/omo-codex/plugin/components/codegraph/tsconfig.json +0 -25
  604. package/packages/omo-codex/plugin/components/start-work-continuation/LICENSE +0 -21
  605. package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +0 -28
  606. package/packages/omo-codex/plugin/components/ultrawork/directive.md +0 -471
  607. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +0 -18
  608. package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +0 -17
  609. package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +0 -17
  610. package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +0 -17
  611. package/packages/omo-codex/plugin/scripts/migrate-omo-sot/editor.mjs +0 -125
  612. package/packages/omo-codex/plugin/scripts/migrate-omo-sot/jsonc.mjs +0 -43
  613. package/packages/omo-codex/plugin/scripts/migrate-omo-sot/scaffold.mjs +0 -29
  614. package/packages/omo-codex/plugin/scripts/migrate-omo-sot.mjs +0 -121
  615. package/packages/omo-codex/plugin/skills/data-scientist/references/common-scenarios.md +0 -176
  616. package/packages/omo-codex/plugin/skills/data-scientist/references/execution-templates.md +0 -197
  617. package/packages/omo-codex/plugin/skills/data-scientist/references/integration-patterns.md +0 -153
  618. package/packages/omo-codex/plugin/skills/data-scientist/references/performance-benchmarks.md +0 -37
  619. package/packages/omo-codex/plugin/skills/start-work/agents/openai.yaml +0 -2
  620. package/packages/omo-codex/plugin/test/aggregate-skills.test.mjs +0 -92
  621. package/packages/omo-codex/plugin/test/component-codegraph-mcp-smoke.test.mjs +0 -76
  622. package/packages/omo-codex/plugin/test/migrate-omo-sot.test.mjs +0 -179
  623. package/packages/omo-codex/plugin/test/sync-skills-orchestration.test.mjs +0 -314
  624. package/packages/omo-codex/plugin/test/ulw-plan-scope-contract.test.mjs +0 -24
  625. package/packages/shared-skills/skills/data-scientist/references/common-scenarios.md +0 -176
  626. package/packages/shared-skills/skills/data-scientist/references/execution-templates.md +0 -197
  627. package/packages/shared-skills/skills/data-scientist/references/integration-patterns.md +0 -153
  628. package/packages/shared-skills/skills/data-scientist/references/performance-benchmarks.md +0 -37
  629. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/.gitattributes +0 -0
  630. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/CHANGELOG.md +0 -0
  631. /package/packages/omo-codex/plugin/components/{codegraph → ulw-execute-continuation}/LICENSE +0 -0
  632. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/src/plan-checklist.ts +0 -0
  633. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/boulder-completed.json +0 -0
  634. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/boulder-mixed-platforms.json +0 -0
  635. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/boulder-single-codex-work.json +0 -0
  636. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/plan-all-done.md +0 -0
  637. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/plan-scaffold.md +0 -0
  638. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/plan-with-nested-checkboxes.md +0 -0
  639. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/test/fixtures/plan-with-unchecked.md +0 -0
  640. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/tsconfig.build.json +0 -0
  641. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/tsconfig.json +0 -0
  642. /package/packages/omo-codex/plugin/components/{start-work-continuation → ulw-execute-continuation}/vitest.config.ts +0 -0
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]
@@ -67,7 +69,7 @@
67
69
  [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/oh-my-openagent?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-openagent/issues)
68
70
  [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-openagent/blob/dev/LICENSE.md)
69
71
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/oh-my-openagent)
70
- [![Docs](https://img.shields.io/badge/docs-omo.vibetip.help-369eff?labelColor=black&logo=readthedocs&logoColor=white&style=flat-square)](https://omo.vibetip.help/docs)
72
+ [![Docs](https://img.shields.io/badge/docs-omo.dev-369eff?labelColor=black&logo=readthedocs&logoColor=white&style=flat-square)](https://omo.dev/docs)
71
73
 
72
74
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
73
75
 
@@ -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
- **注記**: 公開されている npm パッケージと CLI バイナリ名は引き続き `oh-my-opencode` です (移行期間中は `oh-my-openagent` としても同時に公開されています)。`opencode.json` 内では、互換性レイヤーがプラグインエントリ `oh-my-openagent` を優先するようになりました。従来の `oh-my-opencode` エントリも警告付きで引き続き読み込まれます。プラグイン設定ファイルは依然として `oh-my-opencode.json` または `oh-my-opencode.jsonc` が一般的で、移行期間中は従来のファイル名と改名後のファイル名の両方が認識されます。
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]` はマイグレーションエンジンが一度だけ取り込み、以降は読み込まれません。
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` として有効化されます。
133
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 のプラグインシステムへ綺麗に移植できる 8 コンポーネント(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`start-work-continuation`、`telemetry`)を提供します。両方を同時にインストールするには `--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
 
@@ -164,55 +168,48 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
164
168
 
165
169
  | | 機能 | Editions | 何をするのか |
166
170
  | :---: | :------------------------------------------------------- | :------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
167
- | 🤖 | **規律あるエージェント (Discipline Agents)** | Ultimate | Sisyphus が Hephaestus、Oracle、Librarian、Explore をオーケストレーションします。完全な AI 開発チームが並列で動きます。 |
168
- | 🧩 | **Codex CLI Light Edition** | Light | OpenAI Codex CLI 上で動作する omo 8 つの移植コンポーネント (rules, comment-checker, git-bash, LSP, ultrawork, ulw-loop, start-work continuation, telemetry)。インストール: `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) |
171
+ | 🤖 | **規律あるエージェント (Discipline Agents)** | Ultimate | メインエージェントがアーキテクトコンサルト、Librarian、Explore、カテゴリーワーカーをオーケストレーションします。完全な AI 開発チームが並列で動きます。 |
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`。 |
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 | ユーザーの真の意図を分析してから分類・行動します。`search` / `analyze` / `team` / `hyperplan` をトリガー。(Light は `ulw` / `ultrawork` のみフック。) |
172
- | 🔗 | **ハッシュベースの編集ツール** | Ultimate | `LINE#ID` のコンテンツハッシュですべての変更を検証します。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` を使用。) |
175
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | `ultrawork`/`ulw`、`team`、`hyperplan` のキーワードを検出します (意図を意味的に分類するわけではありません)。(Light は `ulw` / `ultrawork` キーワードのみ認識。) |
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` を提供します。 |
176
- | 🔁 | **Ralph Loop / `/ulw-loop`** | Ultimate | 自己参照ループ。100% 完了するまで絶対に止まりません。 |
179
+ | 📚 | **組み込み MCP** | Both | Ultimate は websearch (Exa)、context7 (公式ドキュメント)、grep_app (GitHub 検索)、lsp をランタイム注入します。Light は plugin-scoped MCP として `grep_app`、`context7`、`git_bash`、`lsp` を提供します。 |
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` バイナリが動作。 |
179
183
  | 📜 | **Rules Injection** | Both | `AGENTS.md` / `CLAUDE.md` / `.omo/rules/**` の階層的コンテキスト注入。Ultimate はフック、Light は `rules` コンポーネント。 |
180
- | 🧬 | **Ulw Loop** | Light | `.omo/ulw-loop/` evidence audit ベースの永続的マルチゴール オーケストレーション。現在は Codex 専用; OpenCode 側への移植はロードマップ。 |
184
+ | 🧬 | **Ulw Loop** | Light | evidence audit を備えた永続的マルチゴール オーケストレーションのための Codex コンポーネント + CLI。OpenCode では **Goal / `/goal`** を使ってください。 |
181
185
  | 🖥️ | **Tmux 統合** | Ultimate | 完全なインタラクティブターミナル。REPL、デバッガー、TUI アプリがすべてリアルタイムで動きます。 |
182
186
  | 🔌 | **Claude Code 互換性** | Ultimate | 既存のフック、コマンド、スキル、MCP、プラグイン?すべてここでそのまま動きます。(Codex は独自のネイティブプラグインシステムを保有。) |
183
187
  | 🎯 | **スキル内蔵 MCP** | Ultimate | スキルが独自の MCP サーバーを持ち歩きます。コンテキストが肥大化しません。 |
184
- | 📋 | **Prometheus プランナー** | Ultimate | インタビューモードで、実行前に戦略的な計画から立てます。 |
188
+ | 📋 | **Ultrawork Planner** | 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
 
191
- <table><tr>
192
- <td align="center"><img src=".github/assets/sisyphus.png" height="300" /></td>
193
- <td align="center"><img src=".github/assets/hephaestus.png" height="300" /></td>
194
- </tr></table>
195
-
196
- **Sisyphus** (`claude-opus-5` / **`kimi-k3`** / **`glm-5`**) はあなたのメインオーケストレーターです。計画を立て、専門家に委任し、攻撃的な並列実行でタスクを完了まで推進します。途中で投げ出すことはありません。Claude Opus 5 と Kimi K3 が推奨デフォルトです。
195
+ **メインエージェント**はセッションのモデルで動くオーケストレーターです。計画を立て、専門家に委任し、攻撃的な並列実行でタスクを完了まで推進します。途中で投げ出すことはありません。レシピではなく、目標を与えてください。手取り足取り教えなくても、コードベースを探索し、パターンを調査し、エンドツーエンドで実行します。*正当なる職人 (The Legitimate Craftsman).*
197
196
 
198
- **Hephaestus** (OpenAI、GitHub Copilot、Vercel、または OpenCode 経由で medium effort の `gpt-5.6-sol` のみを使う) はあなたの自律的なディープワーカーです。レシピではなく、目標を与えてください。手取り足取り教えなくても、コードベースを探索し、パターンを調査し、エンドツーエンドで実行します。*正当なる職人 (The Legitimate Craftsman).*
197
+ **Ultrawork Planner** (`/ulw-plan`) はあなたの戦略プランナーです。インタビューモードで質問を投げ、スコープを特定し、コードに一行触れる前に詳細な計画を構築します。続いて `/ulw-execute` が同じセッションでその計画を実行します。
199
198
 
200
- **Prometheus** (`claude-fable-5` / **`kimi-k3`**) はあなたの戦略プランナーです。インタビューモードで質問を投げ、スコープを特定し、コードに一行触れる前に詳細な計画を構築します。
199
+ すべてのプロンプトプリセットは、それぞれのモデルの強みに合わせてチューニングされています。手動でモデルを切り替える必要はありません。[詳しくはこちら →](docs/guide/overview.md)
201
200
 
202
- すべてのエージェントは、それぞれのモデルの強みに合わせてチューニングされています。手動でモデルを切り替える必要はありません。[詳しくはこちら ](docs/guide/overview.md)
203
-
204
- > Anthropic が [私たちのせいで OpenCode をブロックしました。](https://x.com/thdxr/status/2010149530486911014) だからこそ Hephaestus は「正当なる職人 (The Legitimate Craftsman)」と呼ばれているのです。皮肉を込めています。
201
+ > Anthropic が [私たちのせいで OpenCode をブロックしました。](https://x.com/thdxr/status/2010149530486911014) だからこそメインエージェントは「正当なる職人 (The Legitimate Craftsman)」と呼ばれているのです。皮肉を込めています。
205
202
  >
206
203
  > Opus または Kimi K3 で最もよく動きますが、Kimi K3 + GPT-5.6 Sol の組み合わせだけでも、バニラの Claude Code を軽く凌駕します。設定は一切不要です。
207
204
 
208
- ### Team Mode (v4.0)
205
+ ### Team Mode
209
206
 
210
207
  エージェント 1 体でも速い。調和したチームは*圧倒的*です。
211
208
 
212
209
  **Team Mode** は oh-my-openagent を「サブエージェント付きの一体のエージェント」から、本物のマルチエージェントシステムへと変えます。リードエージェントがカテゴリ特化のメンバーチームを統括し、全員が**並列で**動き、専用ツール(`team_create`、`team_send_message`、`team_task_create`、`team_status`、…)で通信します。tmux レイアウトの focus + grid ウィンドウで、全メンバーの作業を同時に観察できます。
213
210
 
214
211
  ```jsonc
215
- // .opencode/oh-my-openagent.jsonc
212
+ // ~/.omo/omo.jsonc (またはプロジェクトの .omo/omo.jsonc)
216
213
  {
217
214
  "team_mode": {
218
215
  "enabled": true,
@@ -231,7 +228,7 @@ opencode を再起動すると `team_*` ツールファミリーが解放され
231
228
 
232
229
  ### エージェントのオーケストレーション
233
230
 
234
- Sisyphus がサブエージェントにタスクを委任する際、モデルを直接選ぶことはありません。**カテゴリー** を選びます。カテゴリーは自動的に適切なモデルにマッピングされます:
231
+ メインエージェントがサブエージェントにタスクを委任する際、モデルを直接選ぶことはありません。**カテゴリー** を選びます。カテゴリーは自動的に適切なモデルにマッピングされます:
235
232
 
236
233
  | カテゴリー | 用途 |
237
234
  | :------------------- | :----------------------------------- |
@@ -240,7 +237,7 @@ Sisyphus がサブエージェントにタスクを委任する際、モデル
240
237
  | `quick` | 単一ファイルの変更、タイポの修正 |
241
238
  | `ultrabrain` | ハードロジック、アーキテクチャの決定 |
242
239
 
243
- エージェントは作業の種類を伝えるだけで、ハーネスが適切なモデルを選びます。`ultrabrain` は OpenAI または Vercel で利用可能な場合は GPT-5.6 Sol xhigh に、その次に GPT-5.6 Sol xhigh にルーティングされます。あなたが触るものは何もありません。
240
+ エージェントは作業の種類を伝えるだけで、ハーネスが適切なモデルを選びます。`ultrabrain` は GPT-6 Astra max に、`deep` GPT-6 Astra high にルーティングされ (OpenAI / OpenAI Codex、次に GitHub Copilot、次に OpenCode)、使えなければ GPT-5.6 Sol にフォールバックします。あなたが触るものは何もありません。
244
241
 
245
242
  ### Claude Code 互換性
246
243
 
@@ -271,7 +268,7 @@ MCP サーバーはあなたのコンテキスト予算を食いつぶします
271
268
  >
272
269
  > <br/>- [Can Bölük, The Harness Problem](https://blog.can.ac/2026/02/12/the-harness-problem/)
273
270
 
274
- [oh-my-pi](https://github.com/can1357/oh-my-pi) に触発され、**Hashline** を実装しました。エージェントが読むすべての行にコンテンツハッシュがタグ付けされて返ってきます:
271
+ [oh-my-pi](https://github.com/can1357/oh-my-pi) に触発され、**Hashline** を実装しました。`hashline_edit` を有効にすると、エージェントが読むすべての行にコンテンツハッシュがタグ付けされて返ってきます:
275
272
 
276
273
  ```
277
274
  11#VK| function hello() {
@@ -281,8 +278,6 @@ MCP サーバーはあなたのコンテキスト予算を食いつぶします
281
278
 
282
279
  エージェントはこのタグを参照して編集します。最後に読んだ後でファイルが変更されていた場合、ハッシュが一致せず、コードが壊れる前に編集が拒否されます。空白を正確に再現する必要もなく、stale-line エラーもありません。
283
280
 
284
- Grok Code Fast 1 で、成功率が **6.7% → 68.3%** に上昇しました。編集ツールを 1 つ変えただけで、です。
285
-
286
281
  ### 深い初期化。`/init-deep`
287
282
 
288
283
  `/init-deep` を実行してください。階層的な `AGENTS.md` ファイルを生成します:
@@ -298,11 +293,11 @@ project/
298
293
 
299
294
  エージェントが関連するコンテキストだけを自動で読み込みます。手動での管理はゼロです。
300
295
 
301
- ### プランニング。Prometheus
296
+ ### プランニング。Ultrawork Planner
302
297
 
303
298
  複雑なタスクですか?プロンプトを投げて祈るのはやめましょう。
304
299
 
305
- `/start-work` Prometheus が呼び出されます。**本物のエンジニアのようにあなたにインタビューし**、スコープと曖昧さを特定し、コードに触れる前に検証済みの計画を構築します。エージェントは作業を始める前に、自分が何を作るべきか正確に理解しています。
300
+ Ultrawork Planner (`/ulw-plan`) は**本物のエンジニアのようにあなたにインタビューし**、スコープと曖昧さを特定し、コードに触れる前に検証済みの計画を `.omo/plans/` に書きます。`/ulw-execute` はメインエージェントに同じセッションでその計画を実行させます。エージェントは作業を始める前に、自分が何を作るべきか正確に理解しています。
306
301
 
307
302
  ### スキル (Skills)
308
303
 
@@ -340,12 +335,16 @@ oh-my-openagent を削除するには:
340
335
  2. **設定ファイルを削除する (オプション)**
341
336
 
342
337
  ```bash
343
- # 互換期間中に認識されるプラグイン設定ファイルを削除
344
- rm -f ~/.config/opencode/oh-my-openagent.jsonc ~/.config/opencode/oh-my-openagent.json \
345
- ~/.config/opencode/oh-my-opencode.jsonc ~/.config/opencode/oh-my-opencode.json
338
+ # ランタイム設定ファイルを削除
339
+ rm -f ~/.omo/omo.jsonc ~/.omo/omo.json
346
340
 
347
341
  # プロジェクト設定を削除 (存在する場合)
348
- rm -f .opencode/oh-my-openagent.jsonc .opencode/oh-my-openagent.json \
342
+ rm -f .omo/omo.jsonc .omo/omo.json
343
+
344
+ # 残っているレガシーのマイグレーションバックアップを削除 (あれば)
345
+ rm -f ~/.config/opencode/oh-my-openagent.jsonc ~/.config/opencode/oh-my-openagent.json \
346
+ ~/.config/opencode/oh-my-opencode.jsonc ~/.config/opencode/oh-my-opencode.json \
347
+ .opencode/oh-my-openagent.jsonc .opencode/oh-my-openagent.json \
349
348
  .opencode/oh-my-opencode.jsonc .opencode/oh-my-opencode.json
350
349
  ```
351
350
 
@@ -359,10 +358,16 @@ oh-my-openagent を削除するには:
359
358
  4. **omo-codex (Codex CLI Light エディション) を削除する**
360
359
 
361
360
  ```bash
362
- rm -rf ~/.codex/plugins/cache/sisyphuslabs
361
+ npx lazycodex-ai uninstall
362
+ # backward-compatible alias:
363
+ npx lazycodex-ai cleanup
364
+
365
+ omo-agent-toolkit uninstall --platform=codex
366
+ # backward-compatible alias:
367
+ omo-agent-toolkit cleanup --platform=codex
363
368
  ```
364
369
 
365
- その後 `~/.codex/config.toml` を開き、`[marketplaces.sisyphuslabs]`、`[plugins."omo@sisyphuslabs"]`、`[hooks.state."omo@sisyphuslabs:..."]` ブロックを削除してください。
370
+ uninstall コマンドは、管理下の `sisyphuslabs` Codex キャッシュ/マーケットプレイス状態を削除し、バックアップを書き出した上で `~/.codex/config.toml` から `omo@sisyphuslabs` のプラグイン・hook-state ブロックを取り除き、インストールマニフェストに記載されたエージェント TOML リンクを削除します。特定のプロジェクトに古いプロジェクトローカルの Codex プラグイン状態が残っている場合は、そのプロジェクトで実行するか `--project <path>` を渡してください。既知のプロジェクトローカル `.codex/config.toml` の衝突を修復し、プロジェクト所有のファイルは削除しないまま、残っている `.codex` アーティファクトを報告します。
366
371
 
367
372
  ## Features
368
373
 
@@ -371,15 +376,15 @@ oh-my-openagent を削除するには:
371
376
  全体は [Features Documentation](docs/reference/features.md) を参照してください。
372
377
 
373
378
  **概要:**
374
- - **エージェント**: Sisyphus (メインエージェント)、Prometheus (プランナー)、Oracle (アーキテクチャ・デバッグ)、Librarian (ドキュメント・コード検索)、Explore (高速な codebase grep)、Multimodal Looker
379
+ - **エージェント**: メインエージェント (オーケストレーター)、Ultrawork Planner (`/ulw-plan`)、アーキテクトコンサルト (アーキテクチャ・デバッグ)、Librarian (ドキュメント・コード検索)、Explore (高速な codebase grep)、Multimodal Looker
375
380
  - **バックグラウンドエージェント**: 本物の開発チームのように複数エージェントを並列実行
376
381
  - **LSP & AST ツール**: リファクタリング、リネーム、診断、AST 対応のコード検索
377
- - **ハッシュベース編集ツール**: `LINE#ID` 参照で全ての変更前に内容を検証。外科的な編集、stale-line エラー 0
382
+ - **ハッシュベース編集ツール** (`hashline_edit: true` でオプトイン): `LINE#ID` 参照で全ての変更前に内容を検証。外科的な編集、stale-line エラー 0
378
383
  - **コンテキスト注入**: AGENTS.md、README.md、条件付きルールを自動注入
379
384
  - **Claude Code 互換性**: 完全なフックシステム、コマンド、スキル、エージェント、MCP
380
- - **組み込み MCP**: websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)
385
+ - **組み込み MCP**: websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)、lsp。プラグインがランタイム注入するため `opencode mcp list` には表示されません ([MCP ドキュメント](docs/reference/features.md#native-vs-plugin-injected-mcps) 参照)
381
386
  - **セッションツール**: セッション履歴のリスト・閲覧・検索・分析
382
- - **生産性機能**: Ralph Loop、Todo Enforcer、Comment Checker、Think Mode など
387
+ - **生産性機能**: Goal、Todo Enforcer、Comment Checker、Think Mode など
383
388
  - **Doctor コマンド**: 組み込みの診断 (`bunx oh-my-opencode doctor`) でプラグイン登録、設定、モデル、環境を検証
384
389
  - **モデルフォールバック**: `fallback_models` で単純なモデル文字列と per-fallback オブジェクト設定を同じ配列に混在可能
385
390
  - **ファイルプロンプト**: エージェント設定で `file://` を使ってファイルからプロンプトを読み込み
@@ -393,17 +398,17 @@ oh-my-openagent を削除するには:
393
398
  詳細は [Configuration Documentation](docs/reference/configuration.md) を参照してください。
394
399
 
395
400
  **概要:**
396
- - **設定ファイルの場所**: 互換性レイヤーは `oh-my-openagent.json[c]` と従来の `oh-my-opencode.json[c]` の両方のプラグイン設定ファイルを認識します。既存のインストールは依然として従来のファイル名を使っていることが多いです。
401
+ - **設定ファイルの場所**: ユーザーの `~/.omo/omo.jsonc` と、`$HOME` までたどるプロジェクトの `.omo/omo.jsonc`。近い設定が優先されます。レガシーの `oh-my-*` ファイルは一度だけ `omo.jsonc` にマイグレーションされます。
397
402
  - **JSONC サポート**: コメントと末尾カンマをサポート
398
403
  - **エージェント**: どのエージェントについてもモデル、temperature、プロンプト、権限をオーバーライド可能
399
404
  - **組み込みスキル**: `playwright` (ブラウザ自動化)、`git-master` (atomic コミット)
400
- - **Sisyphus エージェント**: Prometheus (プランナー) と Metis (プランコンサルタント) を伴うメインオーケストレーター
405
+ - **メインエージェント**: Ultrawork Planner (`/ulw-plan`) と Plan Consultant を伴うオーケストレーター
401
406
  - **バックグラウンドタスク**: プロバイダー/モデル別の同時実行数を設定
402
- - **カテゴリー**: ドメイン別のタスク委任 (`visual`、`business-logic`、カスタム)
407
+ - **カテゴリー**: `visual-engineering`、`ultrabrain`、`deep`、`artistry`、`quick`、`unspecified-low`、`unspecified-high`、`writing`、加えてカスタム名
403
408
  - **フック**: 54 以上の組み込みライフサイクルフック(Team Mode 有効時は 61)。すべて `disabled_hooks` で制御可能
404
- - **MCP**: 組み込み websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)
409
+ - **MCP**: 組み込み websearch (Exa)、context7 (ドキュメント)、grep_app (GitHub 検索)、lsp。ランタイム注入のため `opencode mcp list` には表示されない
405
410
  - **LSP**: リファクタリングツールまで含む完全な LSP サポート
406
- - **Experimental**: 積極的な truncation、自動 resume など
411
+ - **Experimental**: 積極的な truncation、先回り compaction など
407
412
 
408
413
 
409
414
  ## 著者の言葉
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
  >
@@ -66,7 +68,7 @@
66
68
  [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/oh-my-openagent?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-openagent/issues)
67
69
  [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-openagent/blob/dev/LICENSE.md)
68
70
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/oh-my-openagent)
69
- [![Docs](https://img.shields.io/badge/docs-omo.vibetip.help-369eff?labelColor=black&logo=readthedocs&logoColor=white&style=flat-square)](https://omo.vibetip.help/docs)
71
+ [![Docs](https://img.shields.io/badge/docs-omo.dev-369eff?labelColor=black&logo=readthedocs&logoColor=white&style=flat-square)](https://omo.dev/docs)
70
72
 
71
73
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
72
74
 
@@ -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
- **참고**: 배포된 npm 패키지와 CLI 바이너리 이름은 여전히 `oh-my-opencode`입니다(전환 기간 동안 `oh-my-openagent`로도 함께 배포됩니다). `opencode.json` 안에서는 호환성 레이어가 이제 `oh-my-openagent` 플러그인 엔트리를 우선합니다. 기존 `oh-my-opencode` 엔트리도 경고와 함께 여전히 로드됩니다. 플러그인 설정 파일도 여전히 `oh-my-opencode.json`이나 `oh-my-opencode.jsonc`를 많이 씁니다. 전환 기간 동안에는 기존 이름과 이름 둘 다 인식됩니다.
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]` 파일은 마이그레이션 엔진이 번만 가져오고, 후에는 읽지 않습니다.
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`로 활성화됩니다.
134
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의 플러그인 시스템에 깔끔히 포팅되는 8개 컴포넌트(`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `start-work-continuation`, `telemetry`)를 제공합니다. 둘 다 설치하려면 `--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
 
@@ -165,55 +169,48 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
165
169
 
166
170
  | | 기능 | Editions | 하는 일 |
167
171
  | :---: | :------------------------------------------------------- | :------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
168
- | 🤖 | **Discipline Agents** | Ultimate | Sisyphus가 Hephaestus, Oracle, Librarian, Explore 지휘합니다. 병렬로 도는 풀스택 AI 개발팀. |
169
- | 🧩 | **Codex CLI Light Edition** | Light | OpenAI Codex CLI에서 동작하는 omo의 8개 포팅 컴포넌트(rules, comment-checker, git-bash, LSP, ultrawork, ulw-loop, start-work continuation, telemetry). 설치: `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) |
172
+ | 🤖 | **Discipline Agents** | Ultimate | 메인 에이전트가 아키텍트 컨설트, Librarian, Explore, 카테고리 워커를 지휘합니다. 병렬로 도는 풀스택 AI 개발팀. |
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`. |
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 | 분류하거나 행동하기 전에 사용자의 진짜 의도부터 분석합니다. `search` / `analyze` / `team` / `hyperplan` 트리거. (Light는 `ulw` / `ultrawork`만 hook.) |
173
- | 🔗 | **Hash-Anchored Edit Tool** | Ultimate | `LINE#ID` 콘텐츠 해시가 모든 변경을 검증합니다. 낡은 라인 에러 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` 사용.) |
176
+ | 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Ultimate | `ultrawork`/`ulw`, `team`, `hyperplan` 키워드를 감지합니다(의도를 의미론적으로 분류하지는 않습니다). (Light는 `ulw` / `ultrawork` 키워드만 인식.) |
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`를 제공합니다. |
177
- | 🔁 | **Ralph Loop / `/ulw-loop`** | Ultimate | 자기참조 루프. 100% 끝날 때까지 멈추지 않습니다. |
180
+ | 📚 | **Built-in MCPs** | Both | Ultimate는 websearch(Exa), context7(공식 문서), grep_app(GitHub 검색), lsp를 런타임에 주입합니다. Light는 plugin-scoped MCP로 `grep_app`, `context7`, `git_bash`, `lsp`를 제공합니다. |
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` 바이너리가 두 에디션 모두에서 동작. |
180
184
  | 📜 | **Rules Injection** | Both | `AGENTS.md` / `CLAUDE.md` / `.omo/rules/**` 계층형 컨텍스트 주입. Ultimate은 hook, Light는 `rules` 컴포넌트. |
181
- | 🧬 | **Ulw Loop** | Light | `.omo/ulw-loop/` evidence audit 기반 영속 멀티 골 오케스트레이션. 현재 Codex 전용; OpenCode 사이드 포팅은 로드맵에 있음. |
185
+ | 🧬 | **Ulw Loop** | Light | evidence audit 기반 영속 멀티 골 오케스트레이션을 위한 Codex 컴포넌트 + CLI. OpenCode에서는 **Goal / `/goal`**을 사용하세요. |
182
186
  | 🖥️ | **Tmux Integration** | Ultimate | 풀 인터랙티브 터미널. REPL, 디버거, TUI 전부 라이브. |
183
187
  | 🔌 | **Claude Code Compatible** | Ultimate | 쓰시던 hook, command, skill, MCP, plugin 전부 그대로 동작합니다. (Codex는 자체 플러그인 시스템 보유.) |
184
188
  | 🎯 | **Skill-Embedded MCPs** | Ultimate | 스킬이 자기만의 MCP 서버를 들고 다닙니다. 컨텍스트 낭비 없음. |
185
- | 📋 | **Prometheus Planner** | Ultimate | 실행 전 인터뷰 모드로 전략 플래닝. |
189
+ | 📋 | **Ultrawork 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
 
192
- <table><tr>
193
- <td align="center"><img src=".github/assets/sisyphus.png" height="300" /></td>
194
- <td align="center"><img src=".github/assets/hephaestus.png" height="300" /></td>
195
- </tr></table>
196
-
197
- **Sisyphus** (`claude-opus-5` / **`kimi-k3`** / **`glm-5`**)는 메인 오케스트레이터입니다. 계획을 세우고, 전문가에게 위임하고, 공격적인 병렬 실행으로 작업을 끝까지 밀어붙입니다. 중간에 멈추지 않습니다. Claude Opus 5와 Kimi K3가 권장 기본값입니다.
196
+ **메인 에이전트**는 세션 모델로 돌아가는 오케스트레이터입니다. 계획을 세우고, 전문가에게 위임하고, 공격적인 병렬 실행으로 작업을 끝까지 밀어붙입니다. 중간에 멈추지 않습니다. 레시피가 아니라 목표를 주세요. 코드베이스를 탐색하고, 패턴을 조사하고, 손을 잡아주지 않아도 엔드투엔드로 실행합니다. *The Legitimate Craftsman.*
198
197
 
199
- **Hephaestus** (OpenAI, GitHub Copilot, Vercel 또는 OpenCode에서 medium effort의 `gpt-5.6-sol`만 사용하는)는 자율적으로 깊게 파는 작업자입니다. 레시피가 아니라 목표를 주세요. 코드베이스를 탐색하고, 패턴을 조사하고, 손을 잡아주지 않아도 엔드투엔드로 실행합니다. *The Legitimate Craftsman.*
198
+ **Ultrawork Planner** (`/ulw-plan`)는 전략 플래너입니다. 인터뷰 모드: 질문으로 스코프를 파악하고, 코드에 손대기 전에 상세한 계획을 만듭니다. 이어서 `/ulw-execute`가 같은 세션에서 계획을 실행합니다.
200
199
 
201
- **Prometheus** (`claude-fable-5` / **`kimi-k3`**)는 전략 플래너입니다. 인터뷰 모드: 질문으로 스코프를 파악하고, 코드에 손대기 전에 상세한 계획을 만듭니다.
200
+ 모든 프롬프트 프리셋은 해당 모델의 강점에 맞춰 튜닝되어 있습니다. 수동으로 모델을 돌려가며 필요가 없습니다. [더 알아보기 →](docs/guide/overview.md)
202
201
 
203
- 모든 에이전트는 자기 모델의 강점에 맞춰 튜닝되어 있습니다. 수동으로 모델을 돌려가며 필요가 없습니다. [더 알아보기 →](docs/guide/overview.md)
204
-
205
- > Anthropic은 [우리 때문에 OpenCode를 차단했습니다.](https://x.com/thdxr/status/2010149530486911014) 그래서 Hephaestus에게 "The Legitimate Craftsman"이라는 별명이 붙었습니다. 의도된 아이러니입니다.
202
+ > Anthropic은 [우리 때문에 OpenCode를 차단했습니다.](https://x.com/thdxr/status/2010149530486911014) 그래서 메인 에이전트에게 "The Legitimate Craftsman"이라는 별명이 붙었습니다. 의도된 아이러니입니다.
206
203
  >
207
204
  > Opus나 Kimi K3에서 가장 잘 돌지만, Kimi K3 + GPT-5.6 Sol 조합만으로도 이미 바닐라 Claude Code를 이깁니다. 별도 설정 없이요.
208
205
 
209
- ### Team Mode (v4.0)
206
+ ### Team Mode
210
207
 
211
208
  에이전트 한 명도 빠릅니다. 조율된 팀은 *압도적*입니다.
212
209
 
213
210
  **Team Mode**는 oh-my-openagent를 "서브에이전트를 가진 한 명의 에이전트"에서 진짜 멀티 에이전트 시스템으로 바꿉니다. 리드 에이전트가 카테고리별 전문화된 멤버 팀을 지휘하며, 모두 **병렬로** 동작하고 전용 도구(`team_create`, `team_send_message`, `team_task_create`, `team_status`, ...)로 통신합니다. tmux 레이아웃의 focus + grid 윈도우에서 모든 멤버의 작업을 동시에 지켜보세요.
214
211
 
215
212
  ```jsonc
216
- // .opencode/oh-my-openagent.jsonc
213
+ // ~/.omo/omo.jsonc (또는 프로젝트 .omo/omo.jsonc)
217
214
  {
218
215
  "team_mode": {
219
216
  "enabled": true,
@@ -236,12 +233,12 @@ Sisyphus가 서브에이전트에 위임할 때는 모델을 직접 고르지
236
233
 
237
234
  | 카테고리 | 용도 |
238
235
  | :------------------- | :--------------------------------- |
239
- | `visual-engineering` | 프론트엔드, UI/UX, 디자인 |
240
- | `deep` | 자율 리서치 + 실행 |
236
+ | `visual-engineering` | 비주얼 디자인, UI/UX, 프론트엔드 |
237
+ | `deep` | 시각·기술 전반의 심층 작업 |
241
238
  | `quick` | 단일 파일 변경, 오타 수정 |
242
239
  | `ultrabrain` | 어려운 로직, 아키텍처 결정 |
243
240
 
244
- 에이전트는 필요한 작업 종류만 말하고, 하네스가 적합한 모델을 고릅니다. `ultrabrain`은 OpenAI 또는 Vercel에서 사용 가능하면 GPT-5.6 Sol xhigh로, 그다음 GPT-5.6 Sol xhigh라우팅됩니다. 당신이 건드릴 건 없습니다.
241
+ 에이전트는 필요한 작업 종류만 말하고, 하네스가 적합한 모델을 고릅니다. `ultrabrain`은 GPT-6 Astra max로, `deep`은 GPT-6 Astra high로 라우팅되고(OpenAI / OpenAI Codex, 그다음 GitHub Copilot, 그다음 OpenCode), 없으면 GPT-5.6 Sol로 넘어갑니다. 당신이 건드릴 건 없습니다.
245
242
 
246
243
  ### Claude Code 호환성
247
244
 
@@ -272,7 +269,7 @@ MCP 서버는 컨텍스트 예산을 갉아먹습니다. 우리가 고쳤습니
272
269
  >
273
270
  > <br/>- [Can Bölük, The Harness Problem](https://blog.can.ac/2026/02/12/the-harness-problem/)
274
271
 
275
- [oh-my-pi](https://github.com/can1357/oh-my-pi)에서 영감을 받아 **Hashline**을 만들었습니다. 에이전트가 읽는 모든 라인은 콘텐츠 해시가 붙어 돌아옵니다:
272
+ [oh-my-pi](https://github.com/can1357/oh-my-pi)에서 영감을 받아 **Hashline**을 만들었습니다. `hashline_edit`를 활성화하면 에이전트가 읽는 모든 라인이 콘텐츠 해시가 붙어 돌아옵니다:
276
273
 
277
274
  ```
278
275
  11#VK| function hello() {
@@ -282,8 +279,6 @@ MCP 서버는 컨텍스트 예산을 갉아먹습니다. 우리가 고쳤습니
282
279
 
283
280
  에이전트는 이 태그를 참조해 편집합니다. 마지막 읽은 이후 파일이 바뀌었다면 해시가 맞지 않고, 손상 전에 편집이 거부됩니다. 공백 재현 필요 없음. 낡은 라인 에러 없음.
284
281
 
285
- Grok Code Fast 1: **6.7% → 68.3%** 성공률. 편집 도구만 바꿔서요.
286
-
287
282
  ### 깊은 초기화. `/init-deep`
288
283
 
289
284
  `/init-deep`을 실행하세요. 계층형 `AGENTS.md` 파일을 생성합니다:
@@ -299,11 +294,11 @@ project/
299
294
 
300
295
  에이전트는 관련 컨텍스트를 알아서 읽습니다. 수동 관리 0.
301
296
 
302
- ### 플래닝. Prometheus
297
+ ### 플래닝. Ultrawork Planner
303
298
 
304
299
  복잡한 작업인가요? 프롬프트 쓰고 기도하지 마세요.
305
300
 
306
- `/start-work`가 Prometheus를 호출합니다. **진짜 엔지니어처럼 인터뷰**를 진행하고, 스코프와 모호한 부분을 짚어내고, 코드에 손대기 전에 검증된 계획을 세웁니다. 에이전트는 뭘 만들지 알고 나서야 시작합니다.
301
+ Ultrawork Planner(`/ulw-plan`)가 **진짜 엔지니어처럼 인터뷰**를 진행하고, 스코프와 모호한 부분을 짚어내고, 코드에 손대기 전에 검증된 계획을 `.omo/plans/`에 작성합니다. `/ulw-execute`는 메인 에이전트가 같은 세션에서 그 계획을 실행하게 합니다. 에이전트는 뭘 만들지 알고 나서야 시작합니다.
307
302
 
308
303
  ### Skills
309
304
 
@@ -341,12 +336,16 @@ oh-my-openagent를 제거하려면:
341
336
  2. **설정 파일 제거 (선택 사항)**
342
337
 
343
338
  ```bash
344
- # 호환 기간 동안 인식되는 플러그인 설정 파일 제거
345
- rm -f ~/.config/opencode/oh-my-openagent.jsonc ~/.config/opencode/oh-my-openagent.json \
346
- ~/.config/opencode/oh-my-opencode.jsonc ~/.config/opencode/oh-my-opencode.json
339
+ # 런타임 설정 파일 제거
340
+ rm -f ~/.omo/omo.jsonc ~/.omo/omo.json
347
341
 
348
342
  # 프로젝트 설정 제거 (있다면)
349
- rm -f .opencode/oh-my-openagent.jsonc .opencode/oh-my-openagent.json \
343
+ rm -f .omo/omo.jsonc .omo/omo.json
344
+
345
+ # 남아 있는 레거시 마이그레이션 백업 제거 (있다면)
346
+ rm -f ~/.config/opencode/oh-my-openagent.jsonc ~/.config/opencode/oh-my-openagent.json \
347
+ ~/.config/opencode/oh-my-opencode.jsonc ~/.config/opencode/oh-my-opencode.json \
348
+ .opencode/oh-my-openagent.jsonc .opencode/oh-my-openagent.json \
350
349
  .opencode/oh-my-opencode.jsonc .opencode/oh-my-opencode.json
351
350
  ```
352
351
 
@@ -360,10 +359,16 @@ oh-my-openagent를 제거하려면:
360
359
  4. **omo-codex (Codex CLI Light 에디션) 제거**
361
360
 
362
361
  ```bash
363
- rm -rf ~/.codex/plugins/cache/sisyphuslabs
362
+ npx lazycodex-ai uninstall
363
+ # backward-compatible alias:
364
+ npx lazycodex-ai cleanup
365
+
366
+ omo-agent-toolkit uninstall --platform=codex
367
+ # backward-compatible alias:
368
+ omo-agent-toolkit cleanup --platform=codex
364
369
  ```
365
370
 
366
- 그런 다음 `~/.codex/config.toml`을 열어 `[marketplaces.sisyphuslabs]`, `[plugins."omo@sisyphuslabs"]`, `[hooks.state."omo@sisyphuslabs:..."]` 블록들을 삭제하세요.
371
+ uninstall 명령은 관리 대상인 `sisyphuslabs` Codex 캐시/마켓플레이스 상태를 제거하고, 백업을 남긴 뒤 `~/.codex/config.toml`에서 `omo@sisyphuslabs` 플러그인 및 hook-state 블록을 걷어내며, 설치 매니페스트에 기록된 에이전트 TOML 링크를 지웁니다. 특정 프로젝트에 오래된 프로젝트 로컬 Codex 플러그인 상태가 남아 있다면 그 프로젝트에서 실행하거나 `--project <path>`를 넘기세요. 알려진 프로젝트 로컬 `.codex/config.toml` 충돌을 복구하고, 프로젝트 소유 파일은 삭제하지 않은 채 남은 `.codex` 산출물을 보고합니다.
367
372
 
368
373
  ## Features
369
374
 
@@ -372,15 +377,15 @@ oh-my-openagent를 제거하려면:
372
377
  전체 내용은 [Features Documentation](docs/reference/features.md) 참고.
373
378
 
374
379
  **요약:**
375
- - **Agents**: Sisyphus(메인), Prometheus(플래너), Oracle(아키텍처·디버깅), Librarian(문서·코드 검색), Explore(빠른 코드베이스 grep), Multimodal Looker
380
+ - **Agents**: 메인 에이전트(오케스트레이터), Ultrawork Planner(`/ulw-plan`), 아키텍트 컨설트(아키텍처·디버깅), Librarian(문서·코드 검색), Explore(빠른 코드베이스 grep), Multimodal Looker
376
381
  - **Background Agents**: 진짜 개발팀처럼 여러 에이전트를 병렬로 실행
377
382
  - **LSP & AST Tools**: 리팩터링, rename, 진단, AST 기반 코드 검색
378
- - **Hash-anchored Edit Tool**: `LINE#ID` 참조로 모든 변경 전에 내용을 검증. 수술적 편집, 낡은 라인 에러 0
383
+ - **Hash-anchored Edit Tool** (`hashline_edit: true`로 옵트인): `LINE#ID` 참조로 모든 변경 전에 내용을 검증. 수술적 편집, 낡은 라인 에러 0
379
384
  - **Context Injection**: AGENTS.md, README.md, 조건부 규칙 자동 주입
380
385
  - **Claude Code Compatibility**: 전체 hook 시스템, command, skill, agent, MCP
381
- - **Built-in MCPs**: websearch(Exa), context7(문서), grep_app(GitHub 검색)
386
+ - **Built-in MCPs**: websearch(Exa), context7(문서), grep_app(GitHub 검색), lsp. 플러그인이 런타임에 주입하므로 `opencode mcp list`에는 보이지 않습니다([MCP 문서](docs/reference/features.md#native-vs-plugin-injected-mcps) 참고)
382
387
  - **Session Tools**: 세션 히스토리 조회·읽기·검색·분석
383
- - **Productivity Features**: Ralph Loop, Todo Enforcer, Comment Checker, Think Mode 등
388
+ - **Productivity Features**: Goal, Todo Enforcer, Comment Checker, Think Mode 등
384
389
  - **Doctor Command**: 빌트인 진단(`bunx oh-my-opencode doctor`)으로 플러그인 등록, 설정, 모델, 환경 검증
385
390
  - **Model Fallbacks**: `fallback_models`에 단순 모델 문자열과 per-fallback 객체 설정을 같은 배열에 섞어 쓸 수 있음
386
391
  - **File Prompts**: 에이전트 설정에서 `file://`로 프롬프트를 파일에서 로드
@@ -394,17 +399,17 @@ oh-my-openagent를 제거하려면:
394
399
  자세한 내용은 [Configuration Documentation](docs/reference/configuration.md) 참고.
395
400
 
396
401
  **요약:**
397
- - **설정 파일 위치**: 호환성 레이어는 `oh-my-openagent.json[c]`와 기존 `oh-my-opencode.json[c]` 플러그인 설정 파일을 모두 인식합니다. 기존 설치는 아직 기존 이름을 쓰는 경우가 많습니다.
402
+ - **설정 파일 위치**: 사용자 `~/.omo/omo.jsonc`와 `$HOME`까지 위로 탐색하는 프로젝트 `.omo/omo.jsonc`; 가까운 설정이 우선합니다. 레거시 `oh-my-*` 파일은 번만 `omo.jsonc`로 마이그레이션됩니다.
398
403
  - **JSONC 지원**: 주석과 trailing comma 지원
399
404
  - **Agents**: 어떤 에이전트든 모델, temperature, 프롬프트, 권한을 오버라이드
400
405
  - **Built-in Skills**: `playwright`(브라우저 자동화), `git-master`(atomic 커밋)
401
- - **Sisyphus Agent**: Prometheus(플래너), Metis(플랜 컨설턴트)와 함께 도는 메인 오케스트레이터
406
+ - **메인 에이전트**: Ultrawork Planner(`/ulw-plan`), Plan Consultant와 함께 도는 오케스트레이터
402
407
  - **Background Tasks**: 프로바이더/모델별 동시성 제한 설정
403
- - **Categories**: 도메인별 태스크 위임(`visual`, `business-logic`, 커스텀)
408
+ - **Categories**: `visual-engineering`, `ultrabrain`, `deep`, `artistry`, `quick`, `unspecified-low`, `unspecified-high`, `writing`, 그리고 커스텀 이름
404
409
  - **Hooks**: 54개 이상의 라이프사이클 hook (Team Mode 활성화 시 61개), 전부 `disabled_hooks`로 제어 가능
405
- - **MCPs**: 빌트인 websearch(Exa), context7(문서), grep_app(GitHub 검색)
410
+ - **MCPs**: 빌트인 websearch(Exa), context7(문서), grep_app(GitHub 검색), lsp. 런타임 주입이라 `opencode mcp list`에는 표시되지 않음
406
411
  - **LSP**: 리팩터링 도구까지 포함한 풀 LSP 지원
407
- - **Experimental**: 공격적 truncation, 자동 재개
412
+ - **Experimental**: 공격적 truncation, 선제적 compaction
408
413
 
409
414
 
410
415
  ## 저자의 메모