@bohuyeshan/openagent-labforge-core 3.11.2 → 3.11.4

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 (227) hide show
  1. package/README.ja.md +34 -27
  2. package/README.ko.md +34 -27
  3. package/README.md +244 -187
  4. package/README.ru.md +28 -21
  5. package/README.zh-cn.md +244 -187
  6. package/bin/platform.test.ts +21 -20
  7. package/dist/agents/atlas/default.d.ts +1 -1
  8. package/dist/agents/atlas/gemini.d.ts +1 -1
  9. package/dist/agents/atlas/gpt.d.ts +1 -1
  10. package/dist/agents/bio-methodologist.d.ts +1 -1
  11. package/dist/agents/bio-pipeline-operator.d.ts +1 -1
  12. package/dist/agents/builtin-agents/general-agents.d.ts +1 -0
  13. package/dist/agents/dynamic-agent-prompt-builder.d.ts +2 -0
  14. package/dist/agents/env-context.d.ts +1 -1
  15. package/dist/agents/index.d.ts +1 -0
  16. package/dist/agents/metis.d.ts +1 -1
  17. package/dist/agents/prometheus/gemini.d.ts +1 -1
  18. package/dist/agents/prometheus/gpt.d.ts +1 -1
  19. package/dist/agents/prometheus/interview-mode.d.ts +1 -1
  20. package/dist/agents/prometheus/plan-generation.d.ts +1 -1
  21. package/dist/agents/prometheus/plan-template.d.ts +1 -1
  22. package/dist/agents/prometheus/system-prompt.d.ts +1 -1
  23. package/dist/agents/types.d.ts +1 -1
  24. package/dist/cli/config-manager/bun-install.d.ts +6 -1
  25. package/dist/cli/config-manager/plugin-name-with-version.d.ts +1 -1
  26. package/dist/cli/doctor/constants.d.ts +1 -1
  27. package/dist/cli/index.js +763 -467
  28. package/dist/cli/install-validators.d.ts +1 -0
  29. package/dist/cli/model-fallback-types.d.ts +1 -0
  30. package/dist/cli/openai-only-model-catalog.d.ts +3 -0
  31. package/dist/cli/run/index.d.ts +1 -0
  32. package/dist/cli/run/model-resolver.d.ts +4 -0
  33. package/dist/cli/run/types.d.ts +1 -0
  34. package/dist/cli/types.d.ts +3 -0
  35. package/dist/config/schema/agent-names.d.ts +3 -1
  36. package/dist/config/schema/background-task.d.ts +2 -0
  37. package/dist/config/schema/git-env-prefix.d.ts +5 -0
  38. package/dist/config/schema/git-master.d.ts +1 -0
  39. package/dist/config/schema/hooks.d.ts +2 -0
  40. package/dist/config/schema/oh-my-opencode-config.d.ts +54 -1
  41. package/dist/config/schema.d.ts +1 -0
  42. package/dist/create-hooks.d.ts +13 -0
  43. package/dist/features/background-agent/compaction-aware-message-resolver.d.ts +16 -1
  44. package/dist/features/background-agent/constants.d.ts +1 -1
  45. package/dist/features/background-agent/manager.d.ts +20 -4
  46. package/dist/features/background-agent/process-cleanup.d.ts +1 -1
  47. package/dist/features/background-agent/remove-task-toast-tracking.d.ts +1 -0
  48. package/dist/features/background-agent/subagent-spawn-limits.d.ts +23 -0
  49. package/dist/features/background-agent/task-history.d.ts +1 -0
  50. package/dist/features/background-agent/task-poller.d.ts +1 -0
  51. package/dist/features/background-agent/types.d.ts +4 -0
  52. package/dist/features/claude-code-agent-loader/claude-model-mapper.d.ts +4 -0
  53. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -3
  54. package/dist/features/claude-code-agent-loader/types.d.ts +8 -1
  55. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +2 -2
  56. package/dist/features/claude-code-plugin-loader/loader.d.ts +2 -2
  57. package/dist/features/claude-code-plugin-loader/types.d.ts +1 -1
  58. package/dist/features/opencode-skill-loader/git-master-template-injection.d.ts +1 -1
  59. package/dist/features/skill-mcp-manager/types.d.ts +4 -0
  60. package/dist/features/tmux-subagent/index.d.ts +1 -0
  61. package/dist/features/tmux-subagent/manager.d.ts +5 -0
  62. package/dist/features/tmux-subagent/pane-state-parser.d.ts +8 -0
  63. package/dist/features/tmux-subagent/tracked-session-state.d.ts +8 -0
  64. package/dist/features/tmux-subagent/types.d.ts +2 -0
  65. package/dist/hooks/atlas/boulder-session-lineage.d.ts +6 -0
  66. package/dist/hooks/atlas/final-wave-approval-gate.d.ts +4 -0
  67. package/dist/hooks/atlas/idle-event.d.ts +8 -0
  68. package/dist/hooks/atlas/resolve-active-boulder-session.d.ts +11 -0
  69. package/dist/hooks/atlas/tool-execute-after.d.ts +2 -0
  70. package/dist/hooks/atlas/types.d.ts +2 -0
  71. package/dist/hooks/atlas/verification-reminders.d.ts +4 -0
  72. package/dist/hooks/auto-slash-command/hook.d.ts +7 -0
  73. package/dist/hooks/auto-slash-command/processed-command-store.d.ts +7 -0
  74. package/dist/hooks/auto-update-checker/checker/sync-package-json.d.ts +7 -0
  75. package/dist/hooks/auto-update-checker/checker.d.ts +3 -1
  76. package/dist/hooks/auto-update-checker/constants.d.ts +2 -2
  77. package/dist/hooks/comment-checker/downloader.d.ts +1 -1
  78. package/dist/hooks/compaction-context-injector/compaction-context-prompt.d.ts +1 -0
  79. package/dist/hooks/compaction-context-injector/constants.d.ts +5 -0
  80. package/dist/hooks/compaction-context-injector/hook.d.ts +5 -1
  81. package/dist/hooks/compaction-context-injector/recovery-prompt-config.d.ts +6 -0
  82. package/dist/hooks/compaction-context-injector/recovery.d.ts +6 -0
  83. package/dist/hooks/compaction-context-injector/session-id.d.ts +2 -0
  84. package/dist/hooks/compaction-context-injector/session-prompt-config-resolver.d.ts +16 -0
  85. package/dist/hooks/compaction-context-injector/tail-monitor.d.ts +13 -0
  86. package/dist/hooks/compaction-context-injector/types.d.ts +43 -0
  87. package/dist/hooks/compaction-context-injector/validated-model.d.ts +13 -0
  88. package/dist/hooks/context-window-monitor.d.ts +2 -5
  89. package/dist/hooks/delegate-task-english-directive/hook.d.ts +14 -0
  90. package/dist/hooks/delegate-task-english-directive/index.d.ts +1 -0
  91. package/dist/hooks/gpt-permission-continuation/assistant-message.d.ts +23 -0
  92. package/dist/hooks/gpt-permission-continuation/constants.d.ts +4 -0
  93. package/dist/hooks/gpt-permission-continuation/detector.d.ts +1 -0
  94. package/dist/hooks/gpt-permission-continuation/handler.d.ts +12 -0
  95. package/dist/hooks/gpt-permission-continuation/index.d.ts +13 -0
  96. package/dist/hooks/gpt-permission-continuation/session-state.d.ts +15 -0
  97. package/dist/hooks/index.d.ts +2 -0
  98. package/dist/hooks/keyword-detector/hook.d.ts +1 -0
  99. package/dist/hooks/preemptive-compaction.d.ts +2 -5
  100. package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +16 -0
  101. package/dist/hooks/runtime-fallback/fallback-bootstrap-model.d.ts +10 -0
  102. package/dist/hooks/runtime-fallback/fallback-retry-dispatcher.d.ts +11 -0
  103. package/dist/hooks/runtime-fallback/hook.d.ts +2 -3
  104. package/dist/hooks/runtime-fallback/last-user-retry-parts.d.ts +4 -0
  105. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +1 -2
  106. package/dist/hooks/runtime-fallback/retry-model-payload.d.ts +7 -0
  107. package/dist/hooks/runtime-fallback/session-messages.d.ts +9 -0
  108. package/dist/hooks/runtime-fallback/session-status-handler.d.ts +3 -0
  109. package/dist/hooks/runtime-fallback/types.d.ts +57 -3
  110. package/dist/hooks/runtime-fallback/visible-assistant-response.d.ts +3 -0
  111. package/dist/hooks/session-notification-content.d.ts +30 -0
  112. package/dist/hooks/session-notification-scheduler.d.ts +5 -3
  113. package/dist/hooks/session-notification.d.ts +2 -0
  114. package/dist/hooks/start-work/index.d.ts +1 -1
  115. package/dist/hooks/start-work/worktree-detector.d.ts +7 -0
  116. package/dist/hooks/todo-continuation-enforcer/constants.d.ts +6 -2
  117. package/dist/hooks/todo-continuation-enforcer/handler.d.ts +1 -0
  118. package/dist/hooks/todo-continuation-enforcer/idle-event.d.ts +1 -0
  119. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +10 -1
  120. package/dist/hooks/todo-continuation-enforcer/stagnation-detection.d.ts +6 -0
  121. package/dist/hooks/todo-continuation-enforcer/types.d.ts +5 -0
  122. package/dist/hooks/tool-output-truncator.d.ts +1 -0
  123. package/dist/index.d.ts +2 -2
  124. package/dist/index.js +10638 -7240
  125. package/dist/openagent-labforge.schema.json +70 -4
  126. package/dist/plugin/hooks/create-continuation-hooks.d.ts +2 -1
  127. package/dist/plugin/hooks/create-core-hooks.d.ts +1 -0
  128. package/dist/plugin/hooks/create-session-hooks.d.ts +2 -1
  129. package/dist/plugin/normalize-tool-arg-schemas.d.ts +2 -0
  130. package/dist/plugin/ultrawork-model-override.d.ts +1 -15
  131. package/dist/plugin/ultrawork-variant-availability.d.ts +6 -0
  132. package/dist/plugin-dispose.d.ts +10 -0
  133. package/dist/plugin-handlers/agent-override-protection.d.ts +3 -0
  134. package/dist/plugin-state.d.ts +5 -0
  135. package/dist/shared/compaction-agent-config-checkpoint.d.ts +11 -0
  136. package/dist/shared/context-limit-resolver.d.ts +5 -0
  137. package/dist/shared/data-path.d.ts +2 -2
  138. package/dist/shared/dynamic-truncator.d.ts +4 -7
  139. package/dist/shared/external-plugin-detector.d.ts +1 -1
  140. package/dist/shared/fallback-chain-from-models.d.ts +3 -0
  141. package/dist/shared/index.d.ts +3 -0
  142. package/dist/shared/model-error-classifier.d.ts +2 -1
  143. package/dist/shared/opencode-command-dirs.d.ts +3 -0
  144. package/dist/shared/plugin-identity.d.ts +7 -0
  145. package/dist/shared/question-denied-session-permission.d.ts +6 -0
  146. package/dist/shared/retry-status-utils.d.ts +2 -0
  147. package/dist/shared/session-model-state.d.ts +4 -0
  148. package/dist/shared/system-directive.d.ts +6 -5
  149. package/dist/shared/vision-capable-models-cache.d.ts +4 -0
  150. package/dist/tools/call-omo-agent/background-executor.d.ts +2 -1
  151. package/dist/tools/call-omo-agent/constants.d.ts +1 -1
  152. package/dist/tools/call-omo-agent/sync-executor.d.ts +11 -3
  153. package/dist/tools/call-omo-agent/tools.d.ts +2 -1
  154. package/dist/tools/delegate-task/cancel-unstable-agent-task.d.ts +2 -0
  155. package/dist/tools/delegate-task/model-selection.d.ts +1 -0
  156. package/dist/tools/delegate-task/model-string-parser.d.ts +1 -3
  157. package/dist/tools/look-at/multimodal-fallback-chain.d.ts +4 -0
  158. package/dist/tools/lsp/constants.d.ts +1 -0
  159. package/dist/tools/lsp/directory-diagnostics.d.ts +1 -0
  160. package/dist/tools/lsp/lsp-client-transport.d.ts +4 -2
  161. package/dist/tools/lsp/lsp-client-wrapper.d.ts +2 -1
  162. package/dist/tools/lsp/server-path-bases.d.ts +1 -0
  163. package/generated/skills-bundles/catalog.json +282 -39
  164. package/generated/skills-bundles/full/INDEX.md +38 -10
  165. package/generated/skills-bundles/full/skills/data-analysis/experiment-monitoring/auto-claude__monitor-experiment/SKILL.md +63 -0
  166. package/generated/skills-bundles/full/skills/data-analysis/experiment-ops/auto-claude__run-experiment/SKILL.md +112 -0
  167. package/generated/skills-bundles/full/skills/data-analysis/optimization/auto-claude__dse-loop/SKILL.md +279 -0
  168. package/generated/skills-bundles/full/skills/data-analysis/statistics/auto-claude__analyze-results/SKILL.md +47 -0
  169. package/generated/skills-bundles/full/skills/data-analysis/visualization/auto-claude__paper-figure/SKILL.md +281 -0
  170. package/generated/skills-bundles/full/skills/productivity/communication/auto-claude__feishu-notify/SKILL.md +154 -0
  171. package/generated/skills-bundles/full/skills/productivity/visual-design/auto-claude__pixel-art/SKILL.md +138 -0
  172. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-compile/SKILL.md +252 -0
  173. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-plan/SKILL.md +254 -0
  174. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/SKILL.md +310 -0
  175. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/iclr2026.tex +84 -0
  176. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/icml2025.tex +87 -0
  177. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/math_commands.tex +48 -0
  178. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-write/templates/neurips2025.tex +80 -0
  179. package/generated/skills-bundles/full/skills/research/document-authoring/auto-claude__paper-writing/SKILL.md +255 -0
  180. package/generated/skills-bundles/full/skills/research/literature-and-web-search/auto-claude__arxiv/SKILL.md +133 -0
  181. package/generated/skills-bundles/full/skills/research/literature-and-web-search/auto-claude__novelty-check/SKILL.md +87 -0
  182. package/generated/skills-bundles/full/skills/research/literature-and-web-search/auto-claude__research-lit/SKILL.md +194 -0
  183. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__idea-creator/SKILL.md +228 -0
  184. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__idea-discovery/SKILL.md +186 -0
  185. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__idea-discovery-robot/SKILL.md +351 -0
  186. package/generated/skills-bundles/full/skills/research/research-ideation/auto-claude__research-pipeline/SKILL.md +174 -0
  187. package/generated/skills-bundles/full/skills/research/theory-writing/auto-claude__proof-writer/SKILL.md +224 -0
  188. package/generated/skills-bundles/paper/INDEX.md +40 -0
  189. package/generated/skills-bundles/paper/skills/data-analysis/experiment-monitoring/auto-claude__monitor-experiment/SKILL.md +63 -0
  190. package/generated/skills-bundles/paper/skills/data-analysis/experiment-ops/auto-claude__run-experiment/SKILL.md +112 -0
  191. package/generated/skills-bundles/paper/skills/data-analysis/optimization/auto-claude__dse-loop/SKILL.md +279 -0
  192. package/generated/skills-bundles/paper/skills/data-analysis/statistics/auto-claude__analyze-results/SKILL.md +47 -0
  193. package/generated/skills-bundles/paper/skills/data-analysis/visualization/auto-claude__paper-figure/SKILL.md +281 -0
  194. package/generated/skills-bundles/paper/skills/productivity/communication/auto-claude__feishu-notify/SKILL.md +154 -0
  195. package/generated/skills-bundles/paper/skills/productivity/visual-design/auto-claude__pixel-art/SKILL.md +138 -0
  196. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-compile/SKILL.md +252 -0
  197. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-plan/SKILL.md +254 -0
  198. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/SKILL.md +310 -0
  199. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/iclr2026.tex +84 -0
  200. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/icml2025.tex +87 -0
  201. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/math_commands.tex +48 -0
  202. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-write/templates/neurips2025.tex +80 -0
  203. package/generated/skills-bundles/paper/skills/research/document-authoring/auto-claude__paper-writing/SKILL.md +255 -0
  204. package/generated/skills-bundles/paper/skills/research/literature-and-web-search/auto-claude__arxiv/SKILL.md +133 -0
  205. package/generated/skills-bundles/paper/skills/research/literature-and-web-search/auto-claude__novelty-check/SKILL.md +87 -0
  206. package/generated/skills-bundles/paper/skills/research/literature-and-web-search/auto-claude__research-lit/SKILL.md +194 -0
  207. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__idea-creator/SKILL.md +228 -0
  208. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__idea-discovery/SKILL.md +186 -0
  209. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__idea-discovery-robot/SKILL.md +351 -0
  210. package/generated/skills-bundles/paper/skills/research/research-ideation/auto-claude__research-pipeline/SKILL.md +174 -0
  211. package/generated/skills-bundles/paper/skills/research/theory-writing/auto-claude__proof-writer/SKILL.md +224 -0
  212. package/package.json +21 -21
  213. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/LICENSE.txt +0 -21
  214. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/SKILL.md +0 -615
  215. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/_meta.json +0 -11
  216. package/generated/skills-bundles/full/skills/engineering/virtualization/skills-main__virtualbox/scripts/virtualbox-utils.ts +0 -586
  217. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/.clawhubsafe +0 -0
  218. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/LICENSE +0 -21
  219. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/README.md +0 -127
  220. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/SECURITY.md +0 -68
  221. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/SKILL.md +0 -141
  222. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/_meta.json +0 -11
  223. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/scripts/speak.sh +0 -52
  224. package/generated/skills-bundles/full/skills/productivity/voice-and-accessibility/skills-main__voiceclaw/scripts/transcribe.sh +0 -50
  225. package/generated/skills-bundles/full/skills/research/media-search/skills-main__youtube-search/LICENSE.txt +0 -21
  226. package/generated/skills-bundles/full/skills/research/media-search/skills-main__youtube-search/SKILL.md +0 -416
  227. package/generated/skills-bundles/full/skills/research/media-search/skills-main__youtube-search/_meta.json +0 -11
package/README.md CHANGED
@@ -1,9 +1,15 @@
1
- > [!NOTE]
2
- > **Derivative Notice**
3
- >
4
- > This project is a fork/derivative of `code-yeongyu/oh-my-openagent` (formerly `oh-my-opencode`).
5
- > We have renamed the project and added new features and configuration options focused on user-controlled model routing and research workflows.
6
- > Licensing and provenance are documented in `LICENSE.md`, `NOTICE`, `THIRD_PARTY_NOTICES.md`, and `docs/licensing.md`.
1
+ > [!WARNING]
2
+ > **TEMP NOTICE (This Week): Reduced Maintainer Availability**
3
+ >
4
+ > Core maintainer Q got injured, so issue/PR responses and releases may be delayed this week.
5
+ > Thank you for your patience and support.
6
+
7
+ > [!NOTE]
8
+ > **Derivative Notice**
9
+ >
10
+ > This project is a fork/derivative of `code-yeongyu/openagent-labforge` (formerly `openagent-labforge`).
11
+ > We have renamed the project and added new features and configuration options focused on user-controlled model routing and research workflows.
12
+ > Licensing and provenance are documented in `LICENSE.md`, `NOTICE`, `THIRD_PARTY_NOTICES.md`, and `docs/licensing.md`.
7
13
  >
8
14
  > [![Sisyphus Labs - Sisyphus is the agent that codes like your team.](./.github/assets/sisyphuslabs.png?v=2)](https://sisyphuslabs.ai)
9
15
  > > **We're building a fully productized version of Sisyphus to define the future of frontier agents. <br />Join the waitlist [here](https://sisyphuslabs.ai).**
@@ -11,18 +17,18 @@
11
17
  > [!TIP]
12
18
  > Be with us!
13
19
  >
14
- > | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PUwSMR9XNk) | Join our [Discord community](https://discord.gg/PUwSMR9XNk) to connect with contributors and fellow `oh-my-opencode` users. |
20
+ > | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PUwSMR9XNk) | Join our [Discord community](https://discord.gg/PUwSMR9XNk) to connect with contributors and fellow `openagent-labforge` users. |
15
21
  > | :-----| :----- |
16
- > | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | News and updates for `oh-my-opencode` used to be posted on my X account. <br /> Since it was suspended mistakenly, [@justsisyphus](https://x.com/justsisyphus) now posts updates on my behalf. |
22
+ > | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | News and updates for `openagent-labforge` used to be posted on my X account. <br /> Since it was suspended mistakenly, [@justsisyphus](https://x.com/justsisyphus) now posts updates on my behalf. |
17
23
  > | [<img alt="GitHub Follow" src="https://img.shields.io/github/followers/code-yeongyu?style=flat-square&logo=github&labelColor=black&color=24292f" width="156px" />](https://github.com/code-yeongyu) | Follow [@code-yeongyu](https://github.com/code-yeongyu) on GitHub for more projects. |
18
24
 
19
25
  <!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
20
26
 
21
27
  <div align="center">
22
28
 
23
- [![Oh My OpenCode](./.github/assets/hero.jpg)](https://github.com/code-yeongyu/oh-my-opencode#oh-my-opencode)
29
+ [![OpenAgent Labforge](./.github/assets/hero.jpg)](https://github.com/code-yeongyu/openagent-labforge#openagent-labforge)
24
30
 
25
- [![Preview](./.github/assets/omo.png)](https://github.com/code-yeongyu/oh-my-opencode#oh-my-opencode)
31
+ [![Preview](./.github/assets/omo.png)](https://github.com/code-yeongyu/openagent-labforge#openagent-labforge)
26
32
 
27
33
 
28
34
  </div>
@@ -35,14 +41,14 @@
35
41
 
36
42
  <div align="center">
37
43
 
38
- [![GitHub Release](https://img.shields.io/github/v/release/code-yeongyu/oh-my-opencode?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/releases)
39
- [![npm downloads](https://img.shields.io/npm/dt/oh-my-opencode?color=ff6b35&labelColor=black&style=flat-square)](https://www.npmjs.com/package/oh-my-opencode)
40
- [![GitHub Contributors](https://img.shields.io/github/contributors/code-yeongyu/oh-my-opencode?color=c4f042&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/graphs/contributors)
41
- [![GitHub Forks](https://img.shields.io/github/forks/code-yeongyu/oh-my-opencode?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/network/members)
42
- [![GitHub Stars](https://img.shields.io/github/stars/code-yeongyu/oh-my-opencode?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
43
- [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/oh-my-opencode?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/issues)
44
- [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/LICENSE.md)
45
- [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/oh-my-opencode)
44
+ [![GitHub Release](https://img.shields.io/github/v/release/code-yeongyu/openagent-labforge?color=369eff&labelColor=black&logo=github&style=flat-square)](https://github.com/code-yeongyu/openagent-labforge/releases)
45
+ [![npm downloads](https://img.shields.io/endpoint?url=https%3A%2F%2Fohmyopenagent.com%2Fapi%2Fnpm-downloads&style=flat-square)](https://www.npmjs.com/package/openagent-labforge)
46
+ [![GitHub Contributors](https://img.shields.io/github/contributors/code-yeongyu/openagent-labforge?color=c4f042&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/openagent-labforge/graphs/contributors)
47
+ [![GitHub Forks](https://img.shields.io/github/forks/code-yeongyu/openagent-labforge?color=8ae8ff&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/openagent-labforge/network/members)
48
+ [![GitHub Stars](https://img.shields.io/github/stars/code-yeongyu/openagent-labforge?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/openagent-labforge/stargazers)
49
+ [![GitHub Issues](https://img.shields.io/github/issues/code-yeongyu/openagent-labforge?color=ff80eb&labelColor=black&style=flat-square)](https://github.com/code-yeongyu/openagent-labforge/issues)
50
+ [![License](https://img.shields.io/badge/license-SUL--1.0-white?labelColor=black&style=flat-square)](https://github.com/code-yeongyu/openagent-labforge/blob/dev/LICENSE.md)
51
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/code-yeongyu/openagent-labforge)
46
52
 
47
53
  [English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
48
54
 
@@ -56,169 +62,219 @@
56
62
 
57
63
  > "If Claude Code does in 7 days what a human does in 3 months, Sisyphus does it in 1 hour. It just works until the task is done. It is a discipline agent." <br/>- B, Quant Researcher
58
64
 
59
- > "Knocked out 8000 eslint warnings with Oh My Opencode, just in a day" <br/>- [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
65
+ > "Knocked out 8000 eslint warnings with OpenAgent Labforge, just in a day" <br/>- [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
60
66
 
61
67
  > "I converted a 45k line tauri app into a SaaS web app overnight using Ohmyopencode and ralph loop. Started with interview me prompt, asked it for ratings and recommendations on the questions. It was amazing to watch it work and to wake up this morning to a mostly working website!" - [James Hargis](https://x.com/hargabyte/status/2007299688261882202)
62
68
 
63
- > "use oh-my-opencode, you will never go back" <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
69
+ > "use openagent-labforge, you will never go back" <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
64
70
 
65
71
  > "I haven't really been able to articulate exactly what makes it so great yet, but the development experience has reached a completely different dimension." - [
66
72
  苔硯:こけすずり](https://x.com/kokesuzuri/status/2008532913961529372?s=20)
67
73
 
68
- > "Experimenting with open code, oh my opencode and supermemory this weekend to build some minecraft/souls-like abomination."
74
+ > "Experimenting with open code, OpenAgent Labforge and supermemory this weekend to build some minecraft/souls-like abomination."
69
75
  > "Asking it to add crouch animations while I go take my post-lunch walk. [Video]" - [MagiMetal](https://x.com/MagiMetal/status/2005374704178373023)
70
76
 
71
77
  > "You guys should pull this into core and recruit him. Seriously. It's really, really, really good." <br/>- Henning Kilset
72
78
 
73
79
  > "Hire @yeon_gyu_kim if you can convince him, this dude has revolutionized opencode." <br/>- [mysticaltech](https://x.com/mysticaltech/status/2001858758608376079)
74
80
 
75
- > "Oh My OpenCode Is Actually Insane" - [YouTube - Darren Builds AI](https://www.youtube.com/watch?v=G_Snfh2M41M)
81
+ > "OpenAgent Labforge Is Actually Insane" - [YouTube - Darren Builds AI](https://www.youtube.com/watch?v=G_Snfh2M41M)
76
82
 
77
83
  ---
78
84
 
79
- # Oh My OpenCode
85
+ # OpenAgent Labforge
80
86
 
81
87
  You're juggling Claude Code, Codex, random OSS models. Configuring workflows. Debugging agents.
82
88
 
83
89
  We did the work. Tested everything. Kept what actually shipped.
84
90
 
85
- Install OmO. Type `ultrawork`. Done.
86
-
87
- ## Change Summary (Labforge)
88
-
89
- - Renamed fork with a derivative notice and third-party provenance.
90
- - Restored lightweight default plan and build behavior with explicit toggles.
91
- - Added Model Governor AUTO for discovery, category defaults, and fallback chains.
92
- - Enforced manual model selection priority to prevent unwanted overrides.
93
- - Added i18n agent display names and SOUL rule injection controls.
94
- - Added built-in skills for DOCX, PDF, PPTX, XLSX, web research, and data analysis.
95
- - Added research-oriented MCP defaults, explicit MCP policy, and visible default-off research MCPs.
96
- - Added unified `full` / `paper` skills bundles with source-aware naming and bundle loading.
97
- - Reduced skill initialization overhead with metadata-first preview and lazy merged-skill access.
98
- - Hardened todo continuation behavior to better respect user-facing question/confirmation flows.
99
-
100
- ## Research-Focused Design
101
-
102
- - This derivative keeps the original programming strengths and adds research-oriented defaults directly in core.
103
- - Core now includes model governance, SOUL injection controls, and document/research skill presets.
104
- - Skills now support a unified functional catalog with metadata-first preview and lazy body loading.
105
- - Curated skills are split into `paper` and `full` bundles for lower token overhead at runtime.
106
- - Companion plugins are still recommended for domain depth:
107
- - `opencode-agent-bio-paper`
108
- - `opencode-mcp-paper-search`
109
- - See `plugins/BUNDLES.md` for `full` and `paper-only` bundle profiles.
110
-
111
- ## Unified Skills Catalog
112
-
113
- - Generate the curated functional catalog:
114
-
115
- ```bash
116
- bun run build:skills-catalog
117
- ```
118
-
119
- - Use the runtime bundle shortcut:
120
-
121
- ```jsonc
122
- {
123
- "skills": {
124
- "bundle": "full"
125
- }
126
- }
127
- ```
128
-
129
- or:
130
-
131
- ```jsonc
132
- {
133
- "skills": {
134
- "bundle": "paper"
135
- }
136
- }
137
- ```
138
-
139
- - Generated outputs:
140
- - `generated/skills-bundles/catalog.json`
141
- - `generated/skills-bundles/full/INDEX.md`
142
- - `generated/skills-bundles/paper/INDEX.md`
143
-
144
- The model now previews skill `name`, `description`, and `category` first, then reads full skill instructions only when needed.
145
-
146
- To avoid collisions between curated sources, external bundle skills use source-prefixed IDs (for example `openai-curated/openai-docs`, `anthropic/mcp-builder`), while builtin skills keep their original stable names.
147
-
148
- ## Model Selection Guarantee
149
-
150
- - User-selected model is treated as highest priority across build/plan and all added agents.
151
- - AUTO is explicit (`auto` provider entry) and does not override explicit model pinning.
152
- - Strict lock is enabled by default and configurable:
153
-
154
- ```jsonc
155
- {
156
- "experimental": {
157
- "strict_user_model_priority": true
158
- }
159
- }
160
- ```
91
+ Install OmO. Type `ultrawork`. Done.
92
+
93
+ ## Change Summary (Labforge)
94
+
95
+ - Renamed fork with a derivative notice and third-party provenance.
96
+ - Restored lightweight default plan and build behavior with explicit toggles.
97
+ - Added Model Governor AUTO for discovery, category defaults, and fallback chains.
98
+ - Enforced manual model selection priority to prevent unwanted overrides.
99
+ - Added i18n agent display names and SOUL rule injection controls.
100
+ - Added built-in skills for DOCX, PDF, PPTX, XLSX, web research, and data analysis.
101
+ - Added research-oriented MCP defaults, explicit MCP policy, and visible default-off research MCPs.
102
+ - Added unified `full` / `paper` skills bundles with source-aware naming and bundle loading.
103
+ - Reduced skill initialization overhead with metadata-first preview and lazy merged-skill access.
104
+ - Hardened todo continuation behavior to better respect user-facing question/confirmation flows.
105
+
106
+ ## Research-Focused Design
107
+
108
+ - This derivative keeps the original programming strengths and adds research-oriented defaults directly in core.
109
+ - Core now includes model governance, SOUL injection controls, and document/research skill presets.
110
+ - Skills now support a unified functional catalog with metadata-first preview and lazy body loading.
111
+ - Curated skills are split into `paper` and `full` bundles for lower token overhead at runtime.
112
+ - Companion plugins are still recommended for domain depth:
113
+ - `opencode-agent-bio-paper`
114
+ - `opencode-mcp-paper-search`
115
+ - See `plugins/BUNDLES.md` for `full` and `paper-only` bundle profiles.
116
+
117
+ ## Unified Skills Catalog
118
+
119
+ - Generate the curated functional catalog:
120
+
121
+ ```bash
122
+ bun run build:skills-catalog
123
+ ```
124
+
125
+ - Use the runtime bundle shortcut:
126
+
127
+ ```jsonc
128
+ {
129
+ "skills": {
130
+ "bundle": "full"
131
+ }
132
+ }
133
+ ```
134
+
135
+ or:
136
+
137
+ ```jsonc
138
+ {
139
+ "skills": {
140
+ "bundle": "paper"
141
+ }
142
+ }
143
+ ```
144
+
145
+ - Generated outputs:
146
+ - `generated/skills-bundles/catalog.json`
147
+ - `generated/skills-bundles/full/INDEX.md`
148
+ - `generated/skills-bundles/paper/INDEX.md`
149
+
150
+ The model now previews skill `name`, `description`, and `category` first, then reads full skill instructions only when needed.
151
+
152
+ To avoid collisions between curated sources, external bundle skills use source-prefixed IDs (for example `openai-curated/openai-docs`, `anthropic/mcp-builder`), while builtin skills keep their original stable names.
153
+
154
+ ## Model Selection Guarantee
155
+
156
+ - User-selected model is treated as highest priority across build/plan and all added agents.
157
+ - AUTO is explicit (`auto` provider entry) and does not override explicit model pinning.
158
+ - Strict lock is enabled by default and configurable:
159
+
160
+ ```jsonc
161
+ {
162
+ "experimental": {
163
+ "strict_user_model_priority": true
164
+ }
165
+ }
166
+ ```
161
167
 
162
168
 
163
169
  ## Installation
164
170
 
165
- ### Release Naming (Labforge)
166
-
167
- - Core package: `@labforge/openagent-labforge-core`
168
- - Full bundle target: `@labforge/openagent-labforge`
169
- - Paper-focused bundle target: `@labforge/openagent-labforge-paper`
170
-
171
- ## Current Distribution Policy
172
-
173
- - Current recommended usage: **local build + local install**
174
- - Formal npm release is intentionally deferred for now
175
- - Upstream publish workflow differences are tracked in `docs/release/upstream-publish-notes.md`
176
-
177
- ## Recommended Current Usage
178
-
179
- 1. Build locally:
180
-
181
- ```bash
182
- bun run build:skills-catalog
183
- bun run build
184
- ```
185
-
186
- 2. Install or load the local build into your OpenCode config directory.
187
- 3. Use the bundle shortcut in plugin config:
188
-
189
- ```jsonc
190
- {
191
- "skills": {
192
- "bundle": "full"
193
- }
194
- }
195
- ```
196
-
197
- 4. Use `paper` if you want a smaller research-focused runtime surface.
198
-
199
- ## Current Runtime Behavior
200
-
201
- - User-selected model remains highest priority across sessions and agents.
202
- - `skills.bundle = "full"` currently loads the complete curated bundle (builtin + curated external skills).
203
- - External bundle skills use source-prefixed IDs (for example `openai-curated/openai-docs`) to avoid collision with builtin skills.
204
- - Todo continuation is now more conservative:
205
- - waits for a second idle cycle before injecting continuation
206
- - respects `question` tool usage and common textual “waiting for user” patterns
207
- - avoids immediate repeated continuation reinjection
208
-
209
- ## Current Known Limits
210
-
211
- - Multi-window / multi-repository switching still depends partly on OpenCode host-side initialization behavior.
212
- - The plugin now avoids several repeated scans, but `createSkillContext` and host-side session loading can still add noticeable cold-start cost in very large workspaces or long-running OpenCode installations.
213
- - Formal npm publishing is intentionally deferred; local build + local install is the supported path for now.
214
-
215
- ### For Humans
171
+ ### Published Package
172
+
173
+ - Core package: `@bohuyeshan/openagent-labforge-core`
174
+ - Current published version line: `3.11.x`
175
+ - Legacy `@labforge/...` references remain in some historical docs and migration notes only
176
+
177
+ ## Current Distribution Policy
178
+
179
+ - Current recommended usage: **npm install from the published package**
180
+ - Local build + local install remains available for development and debugging
181
+ - Upstream publish workflow differences are tracked in `docs/release/upstream-publish-notes.md`
182
+
183
+ ## Recommended Current Usage
184
+
185
+ 1. Install from npm:
186
+
187
+ ```bash
188
+ npm install --prefix ~/.config/opencode @bohuyeshan/openagent-labforge-core@latest
189
+ ```
190
+
191
+ 2. Register the plugin in `opencode.json`:
192
+
193
+ ```jsonc
194
+ {
195
+ "plugin": ["@bohuyeshan/openagent-labforge-core"]
196
+ }
197
+ ```
198
+
199
+ 3. Use the bundle shortcut in plugin config:
200
+
201
+ ```bash
202
+ bun run build:skills-catalog
203
+ bun run build
204
+ ```
205
+
206
+ ```jsonc
207
+ {
208
+ "skills": {
209
+ "bundle": "full"
210
+ }
211
+ }
212
+ ```
213
+
214
+ 4. Use `paper` if you want a smaller research-focused runtime surface.
215
+
216
+ 5. Local development path (optional):
217
+
218
+ ```bash
219
+ bun run build:skills-catalog
220
+ bun run build
221
+ npm pack
222
+ npm install --prefix ~/.config/opencode /absolute/path/to/openagent-labforge-core-<version>.tgz
223
+ ```
224
+
225
+ ## Current Runtime Behavior
226
+
227
+ - User-selected model remains highest priority across sessions and agents.
228
+ - OpenAI-compatible providers such as `gmn` should keep a single GPT model entry (for example `gmn/gpt-5.3-codex`) and let the OpenCode UI control reasoning depth.
229
+ - `skills.bundle = "full"` currently loads the complete curated bundle (builtin + curated external skills).
230
+ - External bundle skills use source-prefixed IDs (for example `openai-curated/openai-docs`) to avoid collision with builtin skills.
231
+ - Todo continuation is now more conservative:
232
+ - waits for a second idle cycle before injecting continuation
233
+ - respects `question` tool usage and common textual “waiting for user” patterns
234
+ - avoids immediate repeated continuation reinjection
235
+
236
+ ## Current Known Limits
237
+
238
+ - Multi-window / multi-repository switching still depends partly on OpenCode host-side initialization behavior.
239
+ - The plugin now avoids several repeated scans, but `createSkillContext` and host-side session loading can still add noticeable cold-start cost in very large workspaces or long-running OpenCode installations.
240
+ - Large OpenCode host storage, stale session state, and very large workspaces can still make session hydration feel slower than raw startup.
241
+
242
+ ## Provider Note
243
+
244
+ For OpenAI-compatible providers such as `gmn`, prefer a config shape like:
245
+
246
+ ```jsonc
247
+ {
248
+ "provider": {
249
+ "gmn": {
250
+ "npm": "@ai-sdk/openai",
251
+ "options": {
252
+ "baseURL": "https://gmn.chuangzuoli.com/v1"
253
+ },
254
+ "models": {
255
+ "gpt-5.3-codex": {
256
+ "name": "GPT-5.3 Codex",
257
+ "limit": {
258
+ "context": 400000,
259
+ "output": 128000
260
+ }
261
+ }
262
+ }
263
+ }
264
+ },
265
+ "model": "gmn/gpt-5.3-codex"
266
+ }
267
+ ```
268
+
269
+ Keep reasoning depth in the OpenCode UI instead of hardcoding separate `low` / `medium` / `high` model aliases.
270
+
271
+ ### For Humans
216
272
 
217
273
  Copy and paste this prompt to your LLM agent (Claude Code, AmpCode, Cursor, etc.):
218
274
 
219
275
  ```
220
- Install and configure @labforge/openagent-labforge-core by following the instructions here:
221
- https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
276
+ Install and configure @bohuyeshan/openagent-labforge-core by following the instructions here:
277
+ https://raw.githubusercontent.com/code-yeongyu/openagent-labforge/refs/heads/dev/docs/guide/installation.md
222
278
  ```
223
279
 
224
280
  Or read the [Installation Guide](docs/guide/installation.md), but seriously, let an agent do it. Humans fat-finger configs.
@@ -228,7 +284,7 @@ Or read the [Installation Guide](docs/guide/installation.md), but seriously, let
228
284
  Fetch the installation guide and follow it:
229
285
 
230
286
  ```bash
231
- curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/docs/guide/installation.md
287
+ curl -s https://raw.githubusercontent.com/code-yeongyu/openagent-labforge/refs/heads/dev/docs/guide/installation.md
232
288
  ```
233
289
 
234
290
  ---
@@ -238,7 +294,7 @@ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads
238
294
  We're past the era of reading docs. Just paste this into your agent:
239
295
 
240
296
  ```
241
- Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/refs/heads/dev/README.md
297
+ Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/code-yeongyu/openagent-labforge/refs/heads/dev/README.md
242
298
  ```
243
299
 
244
300
  ## Highlights
@@ -294,7 +350,7 @@ Every agent is tuned to its model's specific strengths. No manual model-juggling
294
350
  >
295
351
  > We run best on Opus, but Kimi K2.5 + GPT-5.3 Codex already beats vanilla Claude Code. Zero config needed.
296
352
 
297
- ### Agent Orchestration
353
+ ### Agent Orchestration
298
354
 
299
355
  When Sisyphus delegates to a subagent, it doesn't pick a model. It picks a **category**. The category maps automatically to the right model:
300
356
 
@@ -305,29 +361,29 @@ When Sisyphus delegates to a subagent, it doesn't pick a model. It picks a **cat
305
361
  | `quick` | Single-file changes, typos |
306
362
  | `ultrabrain` | Hard logic, architecture decisions |
307
363
 
308
- Agent says what kind of work. Harness picks the right model. You touch nothing.
309
-
310
- ### Model Governor (AUTO)
311
-
312
- AUTO detects available models, assigns category defaults, and builds fallback chains.
313
- It never overwrites your explicit config or UI-selected model.
314
-
315
- Config example:
316
-
317
- ```jsonc
318
- {
319
- "model_governor": {
320
- "enabled": true,
321
- "mode": "auto",
322
- "report": { "enabled": true, "format": "md" }
323
- }
324
- }
325
- ```
326
-
327
- Reports and rules are written to your OpenCode config dir:
328
-
329
- - `openagent-labforge.models.report.md`
330
- - `openagent-labforge.models.rules.jsonc`
364
+ Agent says what kind of work. Harness picks the right model. `ultrabrain` now routes to GPT-5.4 xhigh by default. You touch nothing.
365
+
366
+ ### Model Governor (AUTO)
367
+
368
+ AUTO detects available models, assigns category defaults, and builds fallback chains.
369
+ It never overwrites your explicit config or UI-selected model.
370
+
371
+ Config example:
372
+
373
+ ```jsonc
374
+ {
375
+ "model_governor": {
376
+ "enabled": true,
377
+ "mode": "auto",
378
+ "report": { "enabled": true, "format": "md" }
379
+ }
380
+ }
381
+ ```
382
+
383
+ Reports and rules are written to your OpenCode config dir:
384
+
385
+ - `openagent-labforge.models.report.md`
386
+ - `openagent-labforge.models.rules.jsonc`
331
387
 
332
388
  ### Claude Code Compatibility
333
389
 
@@ -407,19 +463,19 @@ Add your own: `.opencode/skills/*/SKILL.md` or `~/.config/opencode/skills/*/SKIL
407
463
 
408
464
  ---
409
465
 
410
- > **New to oh-my-opencode?** Read the **[Overview](docs/guide/overview.md)** to understand what you have, or check the **[Orchestration Guide](docs/guide/orchestration.md)** for how agents collaborate.
466
+ > **New to openagent-labforge?** Read the **[Overview](docs/guide/overview.md)** to understand what you have, or check the **[Orchestration Guide](docs/guide/orchestration.md)** for how agents collaborate.
411
467
 
412
468
  ## Uninstallation
413
469
 
414
- To remove oh-my-opencode:
470
+ To remove openagent-labforge:
415
471
 
416
472
  1. **Remove the plugin from your OpenCode config**
417
473
 
418
- Edit `~/.config/opencode/opencode.json` (or `opencode.jsonc`) and remove `"oh-my-opencode"` from the `plugin` array:
474
+ Edit `~/.config/opencode/opencode.json` (or `opencode.jsonc`) and remove `"openagent-labforge"` from the `plugin` array:
419
475
 
420
476
  ```bash
421
477
  # Using jq
422
- jq '.plugin = [.plugin[] | select(. != "oh-my-opencode")]' \
478
+ jq '.plugin = [.plugin[] | select(. != "openagent-labforge")]' \
423
479
  ~/.config/opencode/opencode.json > /tmp/oc.json && \
424
480
  mv /tmp/oc.json ~/.config/opencode/opencode.json
425
481
  ```
@@ -428,10 +484,10 @@ To remove oh-my-opencode:
428
484
 
429
485
  ```bash
430
486
  # Remove user config
431
- rm -f ~/.config/opencode/oh-my-opencode.json ~/.config/opencode/oh-my-opencode.jsonc
487
+ rm -f ~/.config/opencode/openagent-labforge.json ~/.config/opencode/openagent-labforge.jsonc
432
488
 
433
489
  # Remove project config (if exists)
434
- rm -f .opencode/oh-my-opencode.json .opencode/oh-my-opencode.jsonc
490
+ rm -f .opencode/openagent-labforge.json .opencode/openagent-labforge.jsonc
435
491
  ```
436
492
 
437
493
  3. **Verify removal**
@@ -456,7 +512,7 @@ See full [Features Documentation](docs/reference/features.md).
456
512
  - **Claude Code Compatibility**: Full hook system, commands, skills, agents, MCPs
457
513
  - **Built-in MCPs**: websearch (Exa), context7 (docs), grep_app (GitHub search)
458
514
  - **Session Tools**: List, read, search, and analyze session history
459
- - **Productivity Features**: Ralph Loop, Todo Enforcer, Comment Checker, Think Mode, and more
515
+ - **Productivity Features**: Ralph Loop, Todo Enforcer, GPT permission-tail continuation, Comment Checker, Think Mode, and more
460
516
  - **Model Setup**: Agent-model matching is built into the [Installation Guide](docs/guide/installation.md#step-5-understand-your-model-setup)
461
517
 
462
518
  ## Configuration
@@ -466,14 +522,14 @@ Opinionated defaults, adjustable if you insist.
466
522
  See [Configuration Documentation](docs/reference/configuration.md).
467
523
 
468
524
  **Quick Overview:**
469
- - **Config Locations**: `.opencode/oh-my-opencode.jsonc` or `.opencode/oh-my-opencode.json` (project), `~/.config/opencode/oh-my-opencode.jsonc` or `~/.config/opencode/oh-my-opencode.json` (user)
525
+ - **Config Locations**: `.opencode/openagent-labforge.jsonc` or `.opencode/openagent-labforge.json` (project), `~/.config/opencode/openagent-labforge.jsonc` or `~/.config/opencode/openagent-labforge.json` (user)
470
526
  - **JSONC Support**: Comments and trailing commas supported
471
527
  - **Agents**: Override models, temperatures, prompts, and permissions for any agent
472
528
  - **Built-in Skills**: `playwright` (browser automation), `git-master` (atomic commits)
473
529
  - **Sisyphus Agent**: Main orchestrator with Prometheus (Planner) and Metis (Plan Consultant)
474
530
  - **Background Tasks**: Configure concurrency limits per provider/model
475
531
  - **Categories**: Domain-specific task delegation (`visual`, `business-logic`, custom)
476
- - **Hooks**: 25+ built-in hooks, all configurable via `disabled_hooks`
532
+ - **Hooks**: 25+ built-in hooks, including `gpt-permission-continuation`, all configurable via `disabled_hooks`
477
533
  - **MCPs**: Built-in websearch (Exa), context7 (docs), grep_app (GitHub search)
478
534
  - **LSP**: Full LSP support with refactoring tools
479
535
  - **Experimental**: Aggressive truncation, auto-resume, and more
@@ -525,3 +581,4 @@ No affiliation with any project/model mentioned. Just personal experimentation.
525
581
  - Making elepay - multi-mobile payment gateway, OneQR - mobile application SaaS for cashless solutions
526
582
 
527
583
  *Special thanks to [@junhoyeo](https://github.com/junhoyeo) for this amazing hero image.*
584
+