evil-omo 3.17.12 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.ja.md +154 -114
- package/README.ko.md +197 -150
- package/README.ru.md +93 -71
- package/README.zh-cn.md +113 -72
- package/dist/agents/agent-skill-resolution.d.ts +1 -0
- package/dist/agents/builtin-agents/available-skills.d.ts +1 -1
- package/dist/agents/builtin-agents/general-agents.d.ts +1 -0
- package/dist/agents/builtin-agents.d.ts +1 -1
- package/dist/agents/dynamic-agent-core-sections.d.ts +1 -0
- package/dist/agents/dynamic-agent-prompt-builder.d.ts +1 -1
- package/dist/agents/hephaestus/gpt-5-5.d.ts +0 -4
- package/dist/agents/types.d.ts +1 -0
- package/dist/cli/doctor/checks/team-mode.d.ts +2 -0
- package/dist/cli/doctor/constants.d.ts +1 -0
- package/dist/cli/index.js +21099 -20826
- package/dist/cli/run/continuation-state.d.ts +1 -0
- package/dist/config/index.d.ts +1 -1
- package/dist/config/schema/agent-names.d.ts +1 -0
- package/dist/config/schema/agent-overrides.d.ts +45 -0
- package/dist/config/schema/categories.d.ts +7 -1
- package/dist/config/schema/commands.d.ts +1 -0
- package/dist/config/schema/evil-omo-config.d.ts +70 -0
- package/dist/config/schema/fallback-models.d.ts +5 -0
- package/dist/config/schema/hooks.d.ts +1 -0
- package/dist/config/schema/keyword-detector.d.ts +21 -0
- package/dist/config/schema/team-mode.d.ts +16 -0
- package/dist/config/schema.d.ts +2 -0
- package/dist/create-hooks.d.ts +3 -0
- package/dist/evil-omo.schema.json +191 -47
- package/dist/features/background-agent/manager.d.ts +17 -9
- package/dist/features/background-agent/process-cleanup.d.ts +4 -0
- package/dist/features/background-agent/types.d.ts +16 -12
- package/dist/features/background-agent/wait-for-task-session.d.ts +1 -1
- package/dist/features/boulder-state/storage.d.ts +1 -0
- package/dist/features/builtin-commands/commands.d.ts +1 -0
- package/dist/features/builtin-commands/templates/hyperplan.d.ts +1 -0
- package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
- package/dist/features/builtin-commands/templates/remove-ai-slops.d.ts +1 -0
- package/dist/features/builtin-commands/types.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +1 -1
- package/dist/features/builtin-skills/skills/index.d.ts +1 -0
- package/dist/features/builtin-skills/skills/team-mode.d.ts +2 -0
- package/dist/features/builtin-skills/skills.d.ts +1 -0
- package/dist/features/claude-code-plugin-loader/discovery.d.ts +1 -0
- package/dist/features/hook-message-injector/injector.d.ts +2 -2
- package/dist/features/opencode-skill-loader/loader.d.ts +2 -2
- package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +1 -0
- package/dist/features/run-continuation-state/types.d.ts +1 -1
- package/dist/features/skill-mcp-manager/types.d.ts +1 -0
- package/dist/features/team-mode/deps.d.ts +6 -0
- package/dist/features/team-mode/member-guidance.d.ts +2 -0
- package/dist/features/team-mode/member-parser.d.ts +16 -0
- package/dist/features/team-mode/member-session-resolution.d.ts +6 -0
- package/dist/features/team-mode/member-session-routing.d.ts +19 -0
- package/dist/features/team-mode/resolve-caller-team-lead.d.ts +8 -0
- package/dist/features/team-mode/team-layout-tmux/close-team-member-pane.d.ts +4 -0
- package/dist/features/team-mode/team-layout-tmux/layout.d.ts +26 -6
- package/dist/features/team-mode/team-layout-tmux/rebalance-team-window.d.ts +9 -0
- package/dist/features/team-mode/team-layout-tmux/resolve-caller-tmux-session.d.ts +7 -0
- package/dist/features/team-mode/team-layout-tmux/sweep-stale-team-sessions.d.ts +8 -0
- package/dist/features/team-mode/team-mailbox/ack.d.ts +2 -0
- package/dist/features/team-mode/team-mailbox/inbox.d.ts +3 -0
- package/dist/features/team-mode/team-mailbox/index.d.ts +7 -0
- package/dist/features/team-mode/team-mailbox/poll.d.ts +10 -0
- package/dist/features/team-mode/team-mailbox/reservation.d.ts +11 -0
- package/dist/features/team-mode/team-mailbox/send.d.ts +27 -0
- package/dist/features/team-mode/team-registry/index.d.ts +3 -0
- package/dist/features/team-mode/team-registry/loader.d.ts +12 -0
- package/dist/features/team-mode/team-registry/paths.d.ts +13 -0
- package/dist/features/team-mode/team-registry/team-spec-input-normalizer.d.ts +6 -0
- package/dist/features/team-mode/team-registry/validator.d.ts +10 -0
- package/dist/features/team-mode/team-runtime/activate-team-layout.d.ts +4 -0
- package/dist/features/team-mode/team-runtime/cleanup-team-run-resources.d.ts +17 -0
- package/dist/features/team-mode/team-runtime/create.d.ts +25 -0
- package/dist/features/team-mode/team-runtime/delete-team.d.ts +16 -0
- package/dist/features/team-mode/team-runtime/index.d.ts +2 -0
- package/dist/features/team-mode/team-runtime/resolve-member-dependencies.d.ts +3 -0
- package/dist/features/team-mode/team-runtime/resolve-member.d.ts +17 -0
- package/dist/features/team-mode/team-runtime/shutdown-helpers.d.ts +11 -0
- package/dist/features/team-mode/team-runtime/shutdown-test-fixtures.d.ts +46 -0
- package/dist/features/team-mode/team-runtime/shutdown.d.ts +5 -0
- package/dist/features/team-mode/team-runtime/status.d.ts +36 -0
- package/dist/features/team-mode/team-session-registry.d.ts +11 -0
- package/dist/features/team-mode/team-state-store/index.d.ts +1 -0
- package/dist/features/team-mode/team-state-store/locks.d.ts +12 -0
- package/dist/features/team-mode/team-state-store/resume.d.ts +10 -0
- package/dist/features/team-mode/team-state-store/store.d.ts +21 -0
- package/dist/features/team-mode/team-tasklist/claim.d.ts +10 -0
- package/dist/features/team-mode/team-tasklist/dependencies.d.ts +2 -0
- package/dist/features/team-mode/team-tasklist/get.d.ts +3 -0
- package/dist/features/team-mode/team-tasklist/index.d.ts +6 -0
- package/dist/features/team-mode/team-tasklist/list.d.ts +8 -0
- package/dist/features/team-mode/team-tasklist/store.d.ts +3 -0
- package/dist/features/team-mode/team-tasklist/test-support.d.ts +9 -0
- package/dist/features/team-mode/team-tasklist/update.d.ts +9 -0
- package/dist/features/team-mode/tools/index.d.ts +1 -0
- package/dist/features/team-mode/tools/lifecycle-test-fixture.d.ts +188 -0
- package/dist/features/team-mode/tools/lifecycle.d.ts +37 -0
- package/dist/features/team-mode/tools/messaging.d.ts +31 -0
- package/dist/features/team-mode/tools/query.d.ts +16 -0
- package/dist/features/team-mode/tools/tasks.d.ts +18 -0
- package/dist/features/team-mode/types.d.ts +138 -6
- package/dist/features/tmux-subagent/action-executor-core.d.ts +1 -0
- package/dist/features/tmux-subagent/action-executor.d.ts +1 -0
- package/dist/features/tmux-subagent/attachable-session-status.d.ts +4 -0
- package/dist/features/tmux-subagent/manager.d.ts +32 -3
- package/dist/features/tmux-subagent/pane-state-querier.d.ts +10 -0
- package/dist/features/tmux-subagent/polling.d.ts +1 -0
- package/dist/hooks/atlas/atlas-hook.d.ts +1 -1
- package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -3
- package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -1
- package/dist/hooks/atlas/tool-execute-after.d.ts +2 -1
- package/dist/hooks/atlas/tool-execute-before.d.ts +1 -0
- package/dist/hooks/atlas/types.d.ts +8 -2
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/keyword-detector/constants.d.ts +6 -0
- package/dist/hooks/keyword-detector/detector.d.ts +5 -3
- package/dist/hooks/keyword-detector/hook.d.ts +2 -1
- package/dist/hooks/keyword-detector/hyperplan/default.d.ts +13 -0
- package/dist/hooks/keyword-detector/hyperplan/index.d.ts +1 -0
- package/dist/hooks/keyword-detector/team/default.d.ts +13 -0
- package/dist/hooks/keyword-detector/team/index.d.ts +1 -0
- package/dist/hooks/ralph-loop/loop-session-recovery.d.ts +7 -0
- package/dist/hooks/session-notification-scheduler.d.ts +2 -4
- package/dist/hooks/session-notification-utils.d.ts +1 -0
- package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +2 -2
- package/dist/hooks/team-mailbox-injector/hook.d.ts +31 -0
- package/dist/hooks/team-mailbox-injector/index.d.ts +2 -0
- package/dist/hooks/team-mode-status-injector/hook.d.ts +28 -0
- package/dist/hooks/team-mode-status-injector/index.d.ts +1 -0
- package/dist/hooks/team-session-events/team-idle-wake-hint.d.ts +38 -0
- package/dist/hooks/team-session-events/team-lead-orphan-handler.d.ts +12 -0
- package/dist/hooks/team-session-events/team-member-error-handler.d.ts +10 -0
- package/dist/hooks/team-session-events/team-member-status-handler.d.ts +10 -0
- package/dist/hooks/team-tool-gating/hook.d.ts +3 -0
- package/dist/hooks/team-tool-gating/index.d.ts +1 -0
- package/dist/hooks/write-existing-file-guard/hook.d.ts +6 -1
- package/dist/hooks/write-existing-file-guard/tool-execute-before-handler.d.ts +1 -0
- package/dist/index.js +74497 -71438
- package/dist/plugin/hooks/create-core-hooks.d.ts +3 -0
- package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
- package/dist/plugin/hooks/create-transform-hooks.d.ts +3 -1
- package/dist/plugin/recent-synthetic-idles.d.ts +1 -0
- package/dist/plugin/tool-registry.d.ts +16 -0
- package/dist/shared/bun-spawn-shim.d.ts +40 -0
- package/dist/shared/posthog-activity-state.d.ts +0 -5
- package/dist/shared/posthog.d.ts +7 -6
- package/dist/shared/project-discovery-dirs.d.ts +1 -0
- package/dist/shared/shell-env.d.ts +1 -0
- package/dist/shared/tmux/constants.d.ts +1 -1
- package/dist/shared/tmux/index.d.ts +1 -0
- package/dist/shared/tmux/runner.d.ts +13 -0
- package/dist/shared/tmux/tmux-utils/pane-replace.d.ts +1 -1
- package/dist/shared/tmux/tmux-utils/pane-spawn.d.ts +13 -1
- package/dist/shared/tmux/tmux-utils/session-spawn.d.ts +13 -1
- package/dist/shared/tmux/tmux-utils/spawn-process.d.ts +1 -1
- package/dist/shared/tmux/tmux-utils/stale-session-sweep.d.ts +9 -2
- package/dist/shared/tmux/tmux-utils/window-spawn.d.ts +13 -1
- package/dist/shared/tmux/tmux-utils.d.ts +1 -1
- package/dist/tools/delegate-task/openai-categories.d.ts +1 -0
- package/dist/tools/delegate-task/skill-resolver.d.ts +1 -0
- package/dist/tools/delegate-task/subagent-resolver.d.ts +5 -1
- package/dist/tools/delegate-task/types.d.ts +1 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/look-at/missing-file-error.d.ts +2 -0
- package/dist/tools/skill/types.d.ts +2 -0
- package/package.json +15 -14
package/README.zh-cn.md
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
> [!WARNING]
|
|
2
|
-
> **临时通知(本周):维护者响应延迟说明**
|
|
3
|
-
>
|
|
4
|
-
> 核心维护者 Q 因受伤,本周 issue/PR 回复和发布可能会延迟。
|
|
5
|
-
> 感谢你的耐心与支持。
|
|
6
|
-
|
|
7
1
|
> [!TIP]
|
|
8
2
|
> **Building in Public**
|
|
9
3
|
>
|
|
10
|
-
> 维护者正在使用 Jobdori 实时开发和维护 oh-my-
|
|
4
|
+
> 维护者正在使用 Jobdori 实时开发和维护 oh-my-openagent。Jobdori 是基于 OpenClaw 深度定制的 AI 助手。
|
|
11
5
|
> 每个功能开发、每次修复、每次 Issue 分类,都在 Discord 上实时进行。
|
|
12
6
|
>
|
|
13
7
|
> [](https://discord.gg/PUwSMR9XNk)
|
|
@@ -17,35 +11,39 @@
|
|
|
17
11
|
|
|
18
12
|
> [!NOTE]
|
|
19
13
|
>
|
|
20
|
-
> [](https://sisyphuslabs.ai)
|
|
15
|
+
> > **OmO 由上述的 Jobdori 进行维护。认识你专属的 Jobdori — Dori。<br />[在此处](https://sisyphuslabs.ai)加入等待名单。**
|
|
22
16
|
|
|
23
17
|
> [!TIP]
|
|
24
18
|
> 加入我们!
|
|
25
19
|
>
|
|
26
|
-
> | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PUwSMR9XNk) | 加入我们的 [Discord 社区](https://discord.gg/PUwSMR9XNk),与贡献者及其他 `oh-my-
|
|
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) | 加入我们的 [Discord 社区](https://discord.gg/PUwSMR9XNk),与贡献者及其他 `oh-my-openagent` 用户交流。 |
|
|
27
21
|
> | :-----| :----- |
|
|
28
|
-
> | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | 关于 `oh-my-
|
|
22
|
+
> | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | 关于 `oh-my-openagent` 的更新过去发布在我的 X 账号上。<br /> 因为账号被意外停用,现在由 [@justsisyphus](https://x.com/justsisyphus) 代为发布更新。 |
|
|
29
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) | 在 GitHub 上关注 [@code-yeongyu](https://github.com/code-yeongyu) 获取更多项目信息。 |
|
|
30
24
|
|
|
31
25
|
<!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
32
26
|
|
|
33
27
|
<div align="center">
|
|
34
28
|
|
|
35
|
-
[](https://github.com/code-yeongyu/oh-my-openagent#oh-my-openagent)
|
|
36
30
|
|
|
37
|
-
[](https://github.com/code-yeongyu/oh-my-openagent#oh-my-
|
|
31
|
+
[](https://github.com/code-yeongyu/oh-my-openagent#oh-my-openagent)
|
|
38
32
|
|
|
39
33
|
</div>
|
|
40
34
|
|
|
41
|
-
>
|
|
35
|
+
> 这是 oh-my-openagent 运行 Team Mode 的画面。搭配 Kimi K2.6 和 GPT-5.5。
|
|
36
|
+
|
|
37
|
+
> Anthropic [**因为我们屏蔽了 OpenCode。**](https://x.com/thdxr/status/2010149530486911014) **这是真的。**
|
|
38
|
+
> 他们想把你锁住。Claude Code 是个漂亮的牢笼,但仍然是牢笼。
|
|
42
39
|
>
|
|
43
|
-
>
|
|
40
|
+
> 你不需要为 2 小时的工作付 200 美元。
|
|
41
|
+
> 未来不是选一个赢家,而是把所有赢家编排到一起。模型每个月都在变便宜、变聪明。没有任何一个供应商能够独占。我们是在为那个开放的市场而构建,不是为他们的围墙花园。
|
|
44
42
|
|
|
45
43
|
<div align="center">
|
|
46
44
|
|
|
47
45
|
[](https://github.com/code-yeongyu/oh-my-openagent/releases)
|
|
48
|
-
[](https://www.npmjs.com/package/oh-my-opencode)
|
|
49
47
|
[](https://github.com/code-yeongyu/oh-my-openagent/graphs/contributors)
|
|
50
48
|
[](https://github.com/code-yeongyu/oh-my-openagent/network/members)
|
|
51
49
|
[](https://github.com/code-yeongyu/oh-my-openagent/stargazers)
|
|
@@ -61,38 +59,35 @@
|
|
|
61
59
|
|
|
62
60
|
## 评价
|
|
63
61
|
|
|
64
|
-
>
|
|
62
|
+
> "因为它,我取消了 Cursor 的订阅。开源社区正在发生令人难以置信的事情。" - [Arthur Guiot](https://x.com/arthur_guiot/status/2008736347092382053?s=20)
|
|
65
63
|
|
|
66
|
-
>
|
|
64
|
+
> "如果人类需要 3 个月完成的事情 Claude Code 需要 7 天,那么 Sisyphus 只需要 1 小时。它会一直工作直到任务完成。它是一个极度自律的智能体。" <br/>- B, 量化研究员
|
|
67
65
|
|
|
68
|
-
>
|
|
66
|
+
> "用 Oh My Opencode 一天之内解决了 8000 个 eslint 警告。" <br/>- [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
69
67
|
|
|
70
|
-
>
|
|
68
|
+
> "我用 Ohmyopencode 和 ralph loop 花了一晚上的时间,把一个 45k 行代码的 tauri 应用转换成了 SaaS Web 应用。从面试模式开始,让它对我提供的提示词进行提问和提出建议。看着它工作很有趣,今早醒来看到网站基本已经跑起来了,太震撼了!" - [James Hargis](https://x.com/hargabyte/status/2007299688261882202)
|
|
71
69
|
|
|
72
|
-
>
|
|
70
|
+
> "用 oh-my-opencode 吧,你绝对回不去了。" <br/>- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
73
71
|
|
|
74
|
-
>
|
|
72
|
+
> "我很难准确描述它到底哪里牛逼,但开发体验已经达到完全不同的维度了。" - [苔硯:こけすずり](https://x.com/kokesuzuri/status/2008532913961529372?s=20)
|
|
75
73
|
|
|
76
|
-
>
|
|
74
|
+
> "这周末我用 open code、oh my opencode 和 supermemory 瞎折腾一个像我的世界/魂系一样的怪物游戏。吃完午饭去散步前,我让它把下蹲动画加进去。[视频]" - [MagiMetal](https://x.com/MagiMetal/status/2005374704178373023)
|
|
77
75
|
|
|
78
|
-
>
|
|
76
|
+
> "你们真该把这个合并到核心代码里,然后把他招安了。说真的,这东西实在太牛了。" <br/>- Henning Kilset
|
|
79
77
|
|
|
80
|
-
>
|
|
78
|
+
> "如果你们能说服 @yeon_gyu_kim,赶紧招募他。这个人彻底改变了 opencode。" <br/>- [mysticaltech](https://x.com/mysticaltech/status/2001858758608376079)
|
|
81
79
|
|
|
82
|
-
>
|
|
80
|
+
> "Oh My OpenCode 简直疯了。" - [YouTube - Darren Builds AI](https://www.youtube.com/watch?v=G_Snfh2M41M)
|
|
83
81
|
|
|
84
82
|
---
|
|
85
83
|
|
|
86
|
-
# Oh My
|
|
87
|
-
|
|
88
|
-
我们最初把这叫做“给 Claude Code 打类固醇”。那是低估了它。
|
|
84
|
+
# Oh My OpenAgent
|
|
89
85
|
|
|
90
|
-
|
|
86
|
+
你同时折腾着 Claude Code、Codex、各种奇奇怪怪的开源模型。配工作流。给 Agent 调 Bug。
|
|
91
87
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
安装 OmO。敲下 `ultrawork`。疯狂地写代码吧。
|
|
88
|
+
这些事我们替你做完了。全部测试过。只留下真正跑得起来的。
|
|
95
89
|
|
|
90
|
+
装上 oh-my-openagent。敲 `ultrawork`。就完事了。
|
|
96
91
|
|
|
97
92
|
|
|
98
93
|
## 安装
|
|
@@ -102,11 +97,11 @@
|
|
|
102
97
|
复制并粘贴以下提示词到你的 LLM Agent (Claude Code, AmpCode, Cursor 等):
|
|
103
98
|
|
|
104
99
|
```
|
|
105
|
-
Install and configure oh-my-
|
|
100
|
+
Install and configure oh-my-openagent by following the instructions here:
|
|
106
101
|
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
|
|
107
102
|
```
|
|
108
103
|
|
|
109
|
-
|
|
104
|
+
或者你也可以直接去读 [安装指南](docs/guide/installation.md),但说真的,让 Agent 去干吧。人类配环境总是容易敲错字母。
|
|
110
105
|
|
|
111
106
|
### 给 LLM Agent 看的
|
|
112
107
|
|
|
@@ -116,45 +111,46 @@ https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/do
|
|
|
116
111
|
curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
|
|
117
112
|
```
|
|
118
113
|
|
|
119
|
-
|
|
114
|
+
**注意**:已发布的 npm 包名和 CLI 二进制名仍然是 `oh-my-opencode`(过渡期间同时以 `oh-my-openagent` 的名字双重发布)。在 `opencode.json` 中,兼容性层现在优先使用插件入口 `oh-my-openagent`,而旧的 `oh-my-opencode` 条目仍会以警告的形式加载。插件配置文件通常仍使用 `oh-my-opencode.json` 或 `oh-my-opencode.jsonc`,在过渡期间新旧两种文件名都会被识别。
|
|
120
115
|
|
|
121
|
-
|
|
116
|
+
匿名遥测默认开启,用于统计活跃安装数(DAU/WAU/MAU)。每台机器每个 UTC 日最多发送一次事件,使用哈希化的安装标识符,绝不会使用原始主机名,且不会创建 PostHog person profile。可通过 `OMO_SEND_ANONYMOUS_TELEMETRY=0` 或 `OMO_DISABLE_POSTHOG=1` 禁用。详见 [隐私政策](docs/legal/privacy-policy.md) 和 [服务条款](docs/legal/terms-of-service.md)。
|
|
122
117
|
|
|
123
118
|
---
|
|
124
119
|
|
|
125
120
|
## 跳过这个 README 吧
|
|
126
121
|
|
|
127
|
-
|
|
122
|
+
读文档的时代已经过去了。直接把下面这段发给你的 Agent:
|
|
128
123
|
|
|
129
124
|
```
|
|
130
125
|
Read this and tell me why it's not just another boilerplate: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/README.md
|
|
131
126
|
```
|
|
132
127
|
|
|
128
|
+
|
|
133
129
|
## 核心亮点
|
|
134
130
|
|
|
135
131
|
### 🪄 `ultrawork`
|
|
136
132
|
|
|
137
133
|
你竟然还在往下读?真有耐心。
|
|
138
134
|
|
|
139
|
-
安装。输入 `ultrawork
|
|
135
|
+
安装。输入 `ultrawork`(或者 `ulw`)。搞定。
|
|
140
136
|
|
|
141
|
-
|
|
137
|
+
下面的内容、所有特性、所有优化,你全都不需要知道。它就是能跑。
|
|
142
138
|
|
|
143
|
-
|
|
139
|
+
即使只订阅了下面这几个,`ultrawork` 也能跑得很好(本项目与它们没有任何关联,纯属个人推荐):
|
|
144
140
|
- [ChatGPT 订阅 ($20)](https://chatgpt.com/)
|
|
145
141
|
- [Kimi Code 订阅 ($19)](https://www.kimi.com/code)
|
|
146
142
|
- [GLM Coding 套餐 ($10)](https://z.ai/subscribe)
|
|
147
|
-
- 如果你能使用按 token 计费的方式,用
|
|
143
|
+
- 如果你能使用按 token 计费的方式,用 Kimi 和 Gemini 模型花不了多少钱。
|
|
148
144
|
|
|
149
145
|
| | 特性 | 功能说明 |
|
|
150
146
|
| :---: | :-------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
151
147
|
| 🤖 | **自律军团 (Discipline Agents)** | Sisyphus 负责调度 Hephaestus、Oracle、Librarian 和 Explore。一支完整的 AI 开发团队并行工作。 |
|
|
152
148
|
| ⚡ | **`ultrawork` / `ulw`** | 一键触发,所有智能体出动。任务完成前绝不罢休。 |
|
|
153
149
|
| 🚪 | **[IntentGate 意图门](https://factory.ai/news/terminal-bench)** | 真正行动前,先分析用户的真实意图。彻底告别被字面意思误导的 AI 废话。 |
|
|
154
|
-
| 🔗 | **基于哈希的编辑工具** | 每次修改都通过 `LINE#ID` 内容哈希验证、0% 错误修改。灵感来自 [oh-my-pi](https://github.com/can1357/oh-my-pi)。[
|
|
150
|
+
| 🔗 | **基于哈希的编辑工具** | 每次修改都通过 `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/) |
|
|
155
151
|
| 🛠️ | **LSP + AST-Grep** | 工作区级别的重命名、构建前诊断、基于 AST 的重写。为 Agent 提供 IDE 级别的精度。 |
|
|
156
152
|
| 🧠 | **后台智能体** | 同时发射 5+ 个专家并行工作。保持上下文干净,随时获取成果。 |
|
|
157
|
-
| 📚 | **内置 MCP** | Exa
|
|
153
|
+
| 📚 | **内置 MCP** | Exa(网络搜索)、Context7(官方文档)、Grep.app(GitHub 源码搜索)。默认开启。 |
|
|
158
154
|
| 🔁 | **Ralph Loop / `/ulw-loop`** | 自我引用闭环。达不到 100% 完成度绝不停止。 |
|
|
159
155
|
| ✅ | **Todo 强制执行** | Agent 想要摸鱼?系统直接揪着领子拽回来。你的任务,必须完成。 |
|
|
160
156
|
| 💬 | **注释审查员** | 剔除带有浓烈 AI 味的冗余注释。写出的代码就像老练的高级工程师写的。 |
|
|
@@ -171,15 +167,15 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
|
|
|
171
167
|
<td align="center"><img src=".github/assets/hephaestus.png" height="300" /></td>
|
|
172
168
|
</tr></table>
|
|
173
169
|
|
|
174
|
-
**Sisyphus** (`claude-opus-4-7` / **`kimi-k2.
|
|
170
|
+
**Sisyphus** (`claude-opus-4-7` / **`kimi-k2.6`** / **`glm-5.1`**) 是你的主指挥官。他负责制定计划、分配任务给专家团队,并以极其激进的并行策略推动任务直至完成。他从不半途而废。
|
|
175
171
|
|
|
176
172
|
**Hephaestus** (`gpt-5.4`) 是你的自主深度工作者。你只需要给他目标,不要给他具体做法。他会自动探索代码库模式,从头到尾独立执行任务,绝不会中途要你当保姆。*名副其实的正牌工匠。*
|
|
177
173
|
|
|
178
|
-
**Prometheus** (`claude-opus-4-7` / **`kimi-k2.
|
|
174
|
+
**Prometheus** (`claude-opus-4-7` / **`kimi-k2.6`** / **`glm-5.1`**) 是你的战略规划师。他通过访谈模式,在动一行代码之前,先通过提问确定范围并构建详尽的执行计划。
|
|
179
175
|
|
|
180
176
|
每一个 Agent 都针对其底层模型的特点进行了专门调优。你无需手动来回切换模型。[阅读背景设定了解更多 →](docs/guide/overview.md)
|
|
181
177
|
|
|
182
|
-
> Anthropic [因为我们屏蔽了 OpenCode](https://x.com/thdxr/status/2010149530486911014)。这就是为什么我们将 Hephaestus
|
|
178
|
+
> Anthropic [因为我们屏蔽了 OpenCode](https://x.com/thdxr/status/2010149530486911014)。这就是为什么我们将 Hephaestus 命名为"正牌工匠 (The Legitimate Craftsman)"。这是一个故意的讽刺。
|
|
183
179
|
>
|
|
184
180
|
> 我们在 Opus 上运行得最好,但仅仅使用 Kimi K2.5 + GPT-5.4 就足以碾压原版的 Claude Code。完全不需要配置。
|
|
185
181
|
|
|
@@ -194,7 +190,7 @@ Read this and tell me why it's not just another boilerplate: https://raw.githubu
|
|
|
194
190
|
| `quick` | 单文件修改、修错字 |
|
|
195
191
|
| `ultrabrain` | 复杂硬核逻辑、架构决策 |
|
|
196
192
|
|
|
197
|
-
|
|
193
|
+
智能体只需要说明要做什么类型的工作,框架就会挑选出最合适的模型去干。`ultrabrain` 现在默认路由到 GPT-5.4 xhigh。你完全不需要操心。
|
|
198
194
|
|
|
199
195
|
### 完全兼容 Claude Code
|
|
200
196
|
|
|
@@ -221,11 +217,11 @@ LSP、AST-Grep、Tmux、MCP 并不是用胶水勉强糊在一起的,而是真
|
|
|
221
217
|
|
|
222
218
|
Harness 问题是真的。绝大多数所谓的 Agent 故障,其实并不是大模型变笨了,而是他们用的文件编辑工具太烂了。
|
|
223
219
|
|
|
224
|
-
>
|
|
220
|
+
> *"目前所有工具都无法为模型提供一种稳定、可验证的行定位标识……它们全都依赖于模型去强行复写一遍自己刚才看到的原文。当模型一旦写错——而且这很常见——用户就会怪罪于大模型太蠢了。"*
|
|
225
221
|
>
|
|
226
222
|
> <br/>- [Can Bölük, The Harness Problem](https://blog.can.ac/2026/02/12/the-harness-problem/)
|
|
227
223
|
|
|
228
|
-
受 [oh-my-pi](https://github.com/can1357/oh-my-pi)
|
|
224
|
+
受 [oh-my-pi](https://github.com/can1357/oh-my-pi) 的启发,我们做出了 **Hashline**。Agent 读到的每一行代码,末尾都会打上一个强绑定的内容哈希值:
|
|
229
225
|
|
|
230
226
|
```
|
|
231
227
|
11#VK| function hello() {
|
|
@@ -235,11 +231,11 @@ Harness 问题是真的。绝大多数所谓的 Agent 故障,其实并不是
|
|
|
235
231
|
|
|
236
232
|
Agent 发起修改时,必须通过这些标签引用目标行。如果在此期间文件发生过变化,哈希验证就会失败,从而在代码被污染前直接驳回。不再有缩进空格错乱,彻底告别改错行的惨剧。
|
|
237
233
|
|
|
238
|
-
在 Grok Code Fast 1
|
|
234
|
+
在 Grok Code Fast 1 上,仅仅因为更换了这套编辑工具,修改成功率就从 **6.7% 飙升至 68.3%**。
|
|
239
235
|
|
|
240
236
|
### 深度上下文初始化:`/init-deep`
|
|
241
237
|
|
|
242
|
-
执行一次 `/init-deep
|
|
238
|
+
执行一次 `/init-deep`。它会为你生成一套树状的 `AGENTS.md`:
|
|
243
239
|
|
|
244
240
|
```
|
|
245
241
|
project/
|
|
@@ -262,43 +258,45 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
|
|
|
262
258
|
|
|
263
259
|
这里的 Skills 绝不只是一段无脑的 Prompt 模板。它们包含了:
|
|
264
260
|
|
|
265
|
-
-
|
|
266
|
-
- 按需加载的独立 MCP
|
|
267
|
-
- 对 Agent
|
|
261
|
+
- 面向特定领域的极度调优系统指令。
|
|
262
|
+
- 按需加载的独立 MCP 服务器。
|
|
263
|
+
- 对 Agent 能力边界的强制约束。
|
|
268
264
|
|
|
269
265
|
默认内置:`playwright`(极其稳健的浏览器自动化)、`git-master`(全自动的原子级提交及 rebase 手术)、`frontend-ui-ux`(设计感拉满的 UI 实现)。
|
|
270
266
|
|
|
271
267
|
想加你自己的?放进 `.opencode/skills/*/SKILL.md` 或者 `~/.config/opencode/skills/*/SKILL.md` 就行。
|
|
272
268
|
|
|
273
|
-
**想看所有的硬核功能说明吗?** 点击查看 **[详细特性文档 (Features)](docs/reference/features.md)
|
|
269
|
+
**想看所有的硬核功能说明吗?** 点击查看 **[详细特性文档 (Features)](docs/reference/features.md)**,深入了解 Agent 架构、Hook 流水线、核心工具链和所有的内置 MCP 等等。
|
|
274
270
|
|
|
275
271
|
---
|
|
276
272
|
|
|
277
|
-
> **第一次用 oh-my-
|
|
273
|
+
> **第一次用 oh-my-openagent?** 阅读 **[Overview](docs/guide/overview.md)** 了解你拥有哪些功能,或查看 **[Orchestration Guide](docs/guide/orchestration.md)** 了解 Agent 如何协作。
|
|
278
274
|
|
|
279
|
-
## 如何卸载
|
|
275
|
+
## 如何卸载
|
|
280
276
|
|
|
281
|
-
要移除 oh-my-
|
|
277
|
+
要移除 oh-my-openagent:
|
|
282
278
|
|
|
283
279
|
1. **从你的 OpenCode 配置文件中去掉插件**
|
|
284
280
|
|
|
285
|
-
编辑 `~/.config/opencode/opencode.json
|
|
281
|
+
编辑 `~/.config/opencode/opencode.json`(或 `opencode.jsonc`),并从 `plugin` 数组中删掉 `"oh-my-openagent"` 或旧的 `"oh-my-opencode"` 条目:
|
|
286
282
|
|
|
287
283
|
```bash
|
|
288
284
|
# 如果你有 jq 的话
|
|
289
|
-
jq '.plugin = [.plugin[] | select(. != "oh-my-opencode")]' \
|
|
285
|
+
jq '.plugin = [.plugin[] | select(. != "oh-my-openagent" and . != "oh-my-opencode")]' \
|
|
290
286
|
~/.config/opencode/opencode.json > /tmp/oc.json && \
|
|
291
287
|
mv /tmp/oc.json ~/.config/opencode/opencode.json
|
|
292
288
|
```
|
|
293
289
|
|
|
294
|
-
2.
|
|
290
|
+
2. **清除配置文件(可选)**
|
|
295
291
|
|
|
296
292
|
```bash
|
|
297
|
-
#
|
|
298
|
-
rm -f ~/.config/opencode/oh-my-
|
|
293
|
+
# 移除兼容期间被识别的插件配置文件
|
|
294
|
+
rm -f ~/.config/opencode/oh-my-openagent.jsonc ~/.config/opencode/oh-my-openagent.json \
|
|
295
|
+
~/.config/opencode/oh-my-opencode.jsonc ~/.config/opencode/oh-my-opencode.json
|
|
299
296
|
|
|
300
|
-
#
|
|
301
|
-
rm -f .opencode/oh-my-
|
|
297
|
+
# 移除当前项目的配置(如果存在)
|
|
298
|
+
rm -f .opencode/oh-my-openagent.jsonc .opencode/oh-my-openagent.json \
|
|
299
|
+
.opencode/oh-my-opencode.jsonc .opencode/oh-my-opencode.json
|
|
302
300
|
```
|
|
303
301
|
|
|
304
302
|
3. **确认卸载成功**
|
|
@@ -308,9 +306,51 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
|
|
|
308
306
|
# 这个时候就应该没有任何关于插件的输出信息了
|
|
309
307
|
```
|
|
310
308
|
|
|
309
|
+
## Features
|
|
310
|
+
|
|
311
|
+
那种"这个功能本来就该一直存在"的感觉。一用就回不去。
|
|
312
|
+
|
|
313
|
+
完整内容请见 [Features Documentation](docs/reference/features.md)。
|
|
314
|
+
|
|
315
|
+
**简要概览:**
|
|
316
|
+
- **Agents**: Sisyphus(主 Agent)、Prometheus(规划师)、Oracle(架构/调试)、Librarian(文档/代码检索)、Explore(快速 grep)、Multimodal Looker
|
|
317
|
+
- **后台 Agents**: 像真正的开发团队那样并行跑多个 Agent
|
|
318
|
+
- **LSP & AST 工具**: 重构、重命名、诊断、AST 感知的代码检索
|
|
319
|
+
- **基于哈希的编辑工具**: `LINE#ID` 引用在应用每次修改前都会验证内容。外科手术级编辑,零陈旧行错误
|
|
320
|
+
- **上下文注入**: 自动注入 AGENTS.md、README.md、条件规则
|
|
321
|
+
- **Claude Code 兼容**: 完整的 Hook 系统、命令、技能、Agents、MCP
|
|
322
|
+
- **内置 MCP**: websearch(Exa)、context7(文档)、grep_app(GitHub 检索)
|
|
323
|
+
- **会话工具**: 列出、读取、搜索、分析会话历史
|
|
324
|
+
- **效率功能**: Ralph Loop、Todo Enforcer、Comment Checker、Think Mode 等
|
|
325
|
+
- **Doctor 命令**: 内置诊断(`bunx oh-my-opencode doctor`),验证插件注册、配置、模型和环境
|
|
326
|
+
- **模型回退**: `fallback_models` 可以在同一数组中混合使用普通模型字符串和 per-fallback 对象配置
|
|
327
|
+
- **文件提示词**: 通过 `file://` 在 Agent 配置中从文件加载提示词
|
|
328
|
+
- **会话恢复**: 从会话错误、上下文窗口上限、API 失败中自动恢复
|
|
329
|
+
- **模型设置**: Agent 与模型的匹配已内置在 [安装指南](docs/guide/installation.md#step-5-understand-your-model-setup) 中
|
|
330
|
+
|
|
331
|
+
## 配置
|
|
332
|
+
|
|
333
|
+
我们有自己主见的默认值。如果你真要改,也可以调。
|
|
334
|
+
|
|
335
|
+
详细内容见 [Configuration Documentation](docs/reference/configuration.md)。
|
|
336
|
+
|
|
337
|
+
**简要概览:**
|
|
338
|
+
- **配置文件位置**: 兼容性层同时识别 `oh-my-openagent.json[c]` 和旧的 `oh-my-opencode.json[c]` 插件配置文件。现有安装仍大多使用旧文件名。
|
|
339
|
+
- **JSONC 支持**: 支持注释和尾逗号
|
|
340
|
+
- **Agents**: 可对任意 Agent 覆盖模型、temperature、prompts 和权限
|
|
341
|
+
- **内置技能**: `playwright`(浏览器自动化)、`git-master`(原子提交)
|
|
342
|
+
- **Sisyphus Agent**: 主调度器,搭配 Prometheus(规划师)和 Metis(计划顾问)
|
|
343
|
+
- **后台任务**: 按 provider/model 配置并发上限
|
|
344
|
+
- **类别**: 按领域的任务委托(`visual`、`business-logic`、自定义)
|
|
345
|
+
- **Hooks**: 25+ 内置 Hook,都可以通过 `disabled_hooks` 控制
|
|
346
|
+
- **MCPs**: 内置 websearch(Exa)、context7(文档)、grep_app(GitHub 检索)
|
|
347
|
+
- **LSP**: 包括重构工具的完整 LSP 支持
|
|
348
|
+
- **Experimental**: 激进截断、自动 resume 等
|
|
349
|
+
|
|
350
|
+
|
|
311
351
|
## 闲聊环节 (Author's Note)
|
|
312
352
|
|
|
313
|
-
**想知道做这个插件的哲学理念吗?** 阅读 [Ultrawork
|
|
353
|
+
**想知道做这个插件的哲学理念吗?** 阅读 [Ultrawork Manifesto](docs/manifesto.md)。
|
|
314
354
|
|
|
315
355
|
---
|
|
316
356
|
|
|
@@ -318,7 +358,7 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
|
|
|
318
358
|
|
|
319
359
|
我踩过的坑、撞过的南墙,它们的终极解法现在全都被硬编码到了这个插件里。你只需要安装,然后直接用。
|
|
320
360
|
|
|
321
|
-
如果把 OpenCode 喻为底层的 Debian/Arch,那么
|
|
361
|
+
如果把 OpenCode 喻为底层的 Debian/Arch,那么 oh-my-openagent 毫无疑问就是开箱即用的 Ubuntu/[Omarchy](https://omarchy.org/)。
|
|
322
362
|
|
|
323
363
|
本项目受到 [AmpCode](https://ampcode.com) 和 [Claude Code](https://code.claude.com/docs/overview) 的深刻启发。我把他们好用的特性全都搬了过来,且在很多地方做了底层强化。它仍在活跃开发中,因为毕竟,这是 **Open**Code。
|
|
324
364
|
|
|
@@ -329,7 +369,7 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
|
|
|
329
369
|
- 谁是修 Bug 的神?
|
|
330
370
|
- 谁文笔最好、最不 AI 味?
|
|
331
371
|
- 谁能在前端交互上碾压一切?
|
|
332
|
-
-
|
|
372
|
+
- 后端性能谁来扛?
|
|
333
373
|
- 谁又快又便宜适合打杂?
|
|
334
374
|
- 竞争对手们今天又发了啥牛逼的功能,能抄吗?
|
|
335
375
|
|
|
@@ -340,17 +380,18 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
|
|
|
340
380
|
|
|
341
381
|
听起来很自大吗?如果你有更牛逼的实现思路,那就交 PR,热烈欢迎。
|
|
342
382
|
|
|
343
|
-
|
|
383
|
+
郑重声明:本项目与文档中提及的任何框架或大模型供应商**均无利益相关**,这完完全全就是一次走火入魔的个人硬核实验成果。
|
|
344
384
|
|
|
345
385
|
本项目 99% 的代码都是直接由 OpenCode 生成的。我本人其实并不懂 TypeScript。**但我以人格担保,这个 README 是我亲自审核并且大幅度重写过的。**
|
|
346
386
|
|
|
347
387
|
## 以下公司的专业开发人员都在用
|
|
348
388
|
|
|
349
389
|
- [Indent](https://indentcorp.com)
|
|
350
|
-
- 开发了 Spray
|
|
390
|
+
- 开发了 Spray(意见领袖营销系统)、vovushop(跨境电商独立站)、vreview(AI 赋能的电商买家秀营销解决方案)。
|
|
351
391
|
- [Google](https://google.com)
|
|
352
392
|
- [Microsoft](https://microsoft.com)
|
|
393
|
+
- [Vercel](https://vercel.com)
|
|
353
394
|
- [ELESTYLE](https://elestyle.jp)
|
|
354
|
-
- 开发了 elepay
|
|
395
|
+
- 开发了 elepay(全渠道移动支付网关)、OneQR(专为无现金社会打造的移动 SaaS 生态系统)。
|
|
355
396
|
|
|
356
397
|
*特别感谢 [@junhoyeo](https://github.com/junhoyeo) 为我们设计的令人惊艳的首图(Hero Image)。*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { AvailableSkill } from "../dynamic-agent-prompt-builder";
|
|
2
2
|
import type { BrowserAutomationProvider } from "../../config/schema";
|
|
3
3
|
import type { LoadedSkill } from "../../features/opencode-skill-loader/types";
|
|
4
|
-
export declare function buildAvailableSkills(discoveredSkills: LoadedSkill[], browserProvider?: BrowserAutomationProvider, disabledSkills?: Set<string
|
|
4
|
+
export declare function buildAvailableSkills(discoveredSkills: LoadedSkill[], browserProvider?: BrowserAutomationProvider, disabledSkills?: Set<string>, teamModeEnabled?: boolean): AvailableSkill[];
|
|
@@ -3,4 +3,4 @@ import type { AgentOverrides } from "./types";
|
|
|
3
3
|
import type { CategoriesConfig, GitMasterConfig } from "../config/schema";
|
|
4
4
|
import type { LoadedSkill } from "../features/opencode-skill-loader/types";
|
|
5
5
|
import type { BrowserAutomationProvider } from "../config/schema";
|
|
6
|
-
export declare function createBuiltinAgents(disabledAgents?: string[], agentOverrides?: AgentOverrides, directory?: string, systemDefaultModel?: string, categories?: CategoriesConfig, gitMasterConfig?: GitMasterConfig, discoveredSkills?: LoadedSkill[],
|
|
6
|
+
export declare function createBuiltinAgents(disabledAgents?: string[], agentOverrides?: AgentOverrides, directory?: string, systemDefaultModel?: string, categories?: CategoriesConfig, gitMasterConfig?: GitMasterConfig, discoveredSkills?: LoadedSkill[], _customAgentSummaries?: unknown, browserProvider?: BrowserAutomationProvider, uiSelectedModel?: string, disabledSkills?: Set<string>, useTaskSystem?: boolean, disableOmoEnv?: boolean, teamModeEnabled?: boolean): Promise<Record<string, AgentConfig>>;
|
|
@@ -13,5 +13,6 @@ export declare function buildExploreSection(agents: AvailableAgent[]): string;
|
|
|
13
13
|
export declare function buildLibrarianSection(agents: AvailableAgent[]): string;
|
|
14
14
|
export declare function buildDelegationTable(agents: AvailableAgent[]): string;
|
|
15
15
|
export declare function buildOracleSection(agents: AvailableAgent[]): string;
|
|
16
|
+
export declare function buildFrontendGuidanceSection(categories: AvailableCategory[]): string;
|
|
16
17
|
export declare function buildNonClaudePlannerSection(model: string): string;
|
|
17
18
|
export declare function buildParallelDelegationSection(model: string, categories: AvailableCategory[]): string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory, } from "./dynamic-agent-prompt-types";
|
|
2
2
|
export { categorizeTools } from "./dynamic-agent-tool-categorization";
|
|
3
|
-
export { buildAgentIdentitySection, buildKeyTriggersSection, buildToolSelectionTable, buildExploreSection, buildLibrarianSection, buildDelegationTable, buildOracleSection, buildNonClaudePlannerSection, buildParallelDelegationSection, } from "./dynamic-agent-core-sections";
|
|
3
|
+
export { buildAgentIdentitySection, buildKeyTriggersSection, buildToolSelectionTable, buildExploreSection, buildLibrarianSection, buildDelegationTable, buildOracleSection, buildFrontendGuidanceSection, buildNonClaudePlannerSection, buildParallelDelegationSection, } from "./dynamic-agent-core-sections";
|
|
4
4
|
export { buildCategorySkillsDelegationGuide } from "./dynamic-agent-category-skills-guide";
|
|
5
5
|
export { buildHardBlocksSection, buildAntiPatternsSection, buildToolCallFormatSection, buildUltraworkSection, buildAntiDuplicationSection, } from "./dynamic-agent-policy-sections";
|
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* GPT-5.5 Hephaestus prompt - outcome-first autonomous deep worker,
|
|
3
|
-
* gated on personal manual QA of the artifact through its surface.
|
|
4
|
-
*/
|
|
5
1
|
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
|
6
2
|
export declare function buildGpt55HephaestusPrompt(availableAgents: AvailableAgent[], _availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
|
package/dist/agents/types.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ export declare function isGptModel(model: string): boolean;
|
|
|
56
56
|
export declare function isGptNativeSisyphusModel(model: string): boolean;
|
|
57
57
|
export declare function isGpt5_5Model(model: string): boolean;
|
|
58
58
|
export declare function isGpt5_3CodexModel(model: string): boolean;
|
|
59
|
+
export declare function isGpt5_2Model(model: string): boolean;
|
|
59
60
|
export declare function isClaudeOpus47Model(model: string): boolean;
|
|
60
61
|
/**
|
|
61
62
|
* Kimi K2.x model detection (K2.5 / K2.6 family).
|
|
@@ -18,6 +18,7 @@ export declare const CHECK_IDS: {
|
|
|
18
18
|
readonly CONFIG: "config";
|
|
19
19
|
readonly TOOLS: "tools";
|
|
20
20
|
readonly MODELS: "models";
|
|
21
|
+
readonly TEAM_MODE: "team-mode";
|
|
21
22
|
};
|
|
22
23
|
export declare const CHECK_NAMES: Record<string, string>;
|
|
23
24
|
export declare const EXIT_CODES: {
|