@wolfx/oh-my-openagent 3.17.15 → 4.1.1
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 +178 -113
- package/README.ko.md +221 -149
- package/README.md +79 -51
- package/README.ru.md +118 -71
- package/README.zh-cn.md +139 -73
- package/dist/agents/agent-skill-resolution.d.ts +1 -0
- package/dist/agents/atlas/agent.d.ts +7 -12
- package/dist/agents/atlas/default-prompt-sections.d.ts +5 -5
- package/dist/agents/atlas/gemini-prompt-sections.d.ts +4 -4
- package/dist/agents/atlas/gpt-prompt-sections.d.ts +5 -5
- package/dist/agents/atlas/kimi-prompt-sections.d.ts +6 -0
- package/dist/agents/atlas/kimi.d.ts +2 -0
- package/dist/agents/atlas/opus-4-7-prompt-sections.d.ts +6 -0
- package/dist/agents/atlas/opus-4-7.d.ts +2 -0
- package/dist/agents/atlas/shared-prompt.d.ts +1 -1
- 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/prometheus/plan-generation.d.ts +1 -1
- package/dist/agents/types.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/fallback-models.d.ts +5 -0
- package/dist/config/schema/hooks.d.ts +2 -0
- package/dist/config/schema/keyword-detector.d.ts +21 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +71 -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 +4 -0
- package/dist/create-managers.d.ts +2 -0
- package/dist/features/background-agent/manager.d.ts +13 -0
- package/dist/features/background-agent/spawner.d.ts +4 -2
- package/dist/features/background-agent/task-poller.d.ts +1 -0
- package/dist/features/background-agent/types.d.ts +5 -0
- package/dist/features/boulder-state/format-duration.d.ts +1 -0
- package/dist/features/boulder-state/index.d.ts +1 -0
- package/dist/features/boulder-state/storage.d.ts +40 -1
- package/dist/features/boulder-state/types.d.ts +43 -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/templates/start-work.d.ts +1 -1
- 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/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/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/session-cleanup.d.ts +21 -0
- package/dist/features/team-mode/team-runtime/session-team-run-registry.d.ts +4 -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 +137 -5
- 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/cleanup.d.ts +10 -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/features/tmux-subagent/session-created-handler.d.ts +23 -0
- package/dist/features/tmux-subagent/session-deleted-handler.d.ts +16 -0
- package/dist/hooks/atlas/atlas-hook.d.ts +1 -1
- package/dist/hooks/atlas/boulder-continuation-injector.d.ts +3 -4
- package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -1
- package/dist/hooks/atlas/system-reminder-templates.d.ts +1 -0
- package/dist/hooks/atlas/tool-execute-after.d.ts +3 -1
- package/dist/hooks/atlas/tool-execute-before.d.ts +2 -0
- package/dist/hooks/atlas/types.d.ts +10 -2
- package/dist/hooks/compaction-context-injector/recovery.d.ts +1 -1
- package/dist/hooks/compaction-context-injector/types.d.ts +1 -0
- package/dist/hooks/compaction-todo-preserver/hook.d.ts +11 -0
- package/dist/hooks/fsync-skip-warning/index.d.ts +18 -0
- package/dist/hooks/index.d.ts +4 -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/continuation-prompt-injector.d.ts +7 -1
- package/dist/hooks/ralph-loop/iteration-continuation.d.ts +9 -1
- package/dist/hooks/ralph-loop/loop-state-controller.d.ts +1 -0
- package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +3 -0
- package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +2 -0
- package/dist/hooks/ralph-loop/types.d.ts +1 -0
- package/dist/hooks/ralph-loop/verification-failure-handler.d.ts +3 -1
- package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +2 -2
- package/dist/hooks/shared/session-idle-settle.d.ts +11 -0
- 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 +42 -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/todo-description-override/description.d.ts +1 -1
- package/dist/hooks/unstable-agent-babysitter/unstable-agent-babysitter-hook.d.ts +2 -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 +93264 -81453
- package/dist/oh-my-opencode.schema.json +199 -47
- package/dist/plugin/hooks/create-core-hooks.d.ts +4 -0
- package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +3 -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/session-compacting.d.ts +31 -0
- package/dist/plugin/tool-registry.d.ts +16 -0
- package/dist/plugin-dispose.d.ts +13 -0
- package/dist/plugin-handlers/agent-priority-order.d.ts +6 -6
- package/dist/shared/agent-ordering.d.ts +8 -0
- package/dist/shared/agent-sort-shim.d.ts +8 -8
- package/dist/shared/agent-tool-restrictions.d.ts +5 -1
- package/dist/shared/bun-file-shim.d.ts +8 -0
- package/dist/shared/bun-hash-shim.d.ts +1 -0
- package/dist/shared/bun-spawn-shim.d.ts +1 -0
- package/dist/shared/bun-which-shim.d.ts +1 -0
- package/dist/shared/classify-path-environment.d.ts +3 -0
- package/dist/shared/event-session-id.d.ts +2 -0
- package/dist/shared/extract-semver.d.ts +1 -0
- package/dist/shared/fsync-skip-tracker.d.ts +12 -0
- package/dist/shared/fsync-skip-warning-formatter.d.ts +2 -0
- package/dist/shared/index.d.ts +3 -0
- package/dist/shared/internal-initiator-marker.d.ts +8 -0
- package/dist/shared/model-capability-heuristics.d.ts +1 -0
- package/dist/shared/opencode-version.d.ts +14 -1
- package/dist/shared/project-discovery-dirs.d.ts +1 -0
- package/dist/shared/session-route.d.ts +18 -0
- package/dist/shared/shell-env.d.ts +1 -0
- package/dist/shared/tmux/cmux-detect.d.ts +8 -0
- package/dist/shared/tmux/constants.d.ts +1 -1
- package/dist/shared/tmux/index.d.ts +2 -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/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/shared/tolerant-fsync.d.ts +5 -0
- package/dist/shared/write-file-atomically.d.ts +4 -1
- package/dist/tools/call-omo-agent/agent-resolver.d.ts +5 -12
- package/dist/tools/call-omo-agent/constants.d.ts +2 -2
- package/dist/tools/delegate-task/model-string-parser.d.ts +9 -0
- package/dist/tools/delegate-task/openai-categories.d.ts +1 -0
- package/dist/tools/delegate-task/resolve-call-id.d.ts +2 -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/sync-prompt-sender.d.ts +1 -0
- package/dist/tools/delegate-task/sync-result-fetcher.d.ts +3 -1
- package/dist/tools/delegate-task/types.d.ts +1 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/interactive-bash/constants.d.ts +1 -0
- package/dist/tools/interactive-bash/tmux-path-resolver.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 +3 -4
- package/dist/hooks/ralph-loop/completion-promise-detector-test-input.d.ts +0 -11
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
> [!TIP]
|
|
2
2
|
> **Building in Public**
|
|
3
3
|
>
|
|
4
|
-
> The maintainer builds and maintains oh-my-
|
|
4
|
+
> The maintainer builds and maintains oh-my-openagent in real-time with Jobdori, an AI assistant running on a heavily customized fork of OpenClaw.
|
|
5
5
|
> Every feature, every fix, every issue triage — live in our Discord.
|
|
6
6
|
>
|
|
7
7
|
> [](https://discord.gg/PUwSMR9XNk)
|
|
@@ -10,33 +10,34 @@
|
|
|
10
10
|
|
|
11
11
|
> [!NOTE]
|
|
12
12
|
>
|
|
13
|
-
> [](https://sisyphuslabs.ai)
|
|
14
|
+
> > **OmO is maintained by Jobdori, the AI assistant shown above. Meet your own Jobdori — Dori. <br />Join the waitlist [here](https://sisyphuslabs.ai).**
|
|
15
15
|
|
|
16
16
|
> [!TIP]
|
|
17
17
|
> Be with us!
|
|
18
18
|
>
|
|
19
|
-
> | [<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-
|
|
19
|
+
> | [<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-openagent` users. |
|
|
20
20
|
> | :-----| :----- |
|
|
21
|
-
> | [<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) |
|
|
21
|
+
> | [<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) | Updates for `oh-my-openagent` used to be posted on my X account. <br /> Since it was mistakenly suspended, [@justsisyphus](https://x.com/justsisyphus) now posts updates on my behalf. |
|
|
22
22
|
> | [<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. |
|
|
23
23
|
|
|
24
24
|
<!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
25
25
|
|
|
26
26
|
<div align="center">
|
|
27
27
|
|
|
28
|
-
[](https://github.com/code-yeongyu/oh-my-openagent#oh-my-opencode)
|
|
28
|
+
[](https://github.com/code-yeongyu/oh-my-openagent#oh-my-openagent)
|
|
31
29
|
|
|
30
|
+
[](https://github.com/code-yeongyu/oh-my-openagent#oh-my-openagent)
|
|
32
31
|
|
|
33
32
|
</div>
|
|
34
33
|
|
|
35
|
-
>
|
|
36
|
-
|
|
34
|
+
> This is oh-my-openagent, running Team Mode. With Kimi K2.6 and GPT-5.5.
|
|
35
|
+
|
|
36
|
+
> Anthropic [**blocked OpenCode because of us.**](https://x.com/thdxr/status/2010149530486911014) **Yes, this is true.**
|
|
37
|
+
> They want you locked in. Claude Code is a nice prison, but it's still a prison.
|
|
37
38
|
>
|
|
38
|
-
>
|
|
39
|
-
> The future isn't picking one winner
|
|
39
|
+
> You don't need to pay $200 for 2 hours of work.
|
|
40
|
+
> The future isn't picking one winner; it's orchestrating them all. Models get cheaper every month. Smarter every month. No single provider will dominate. We're building for that open market, not their walled gardens.
|
|
40
41
|
|
|
41
42
|
<div align="center">
|
|
42
43
|
|
|
@@ -81,13 +82,13 @@
|
|
|
81
82
|
|
|
82
83
|
---
|
|
83
84
|
|
|
84
|
-
# Oh My
|
|
85
|
+
# Oh My OpenAgent
|
|
85
86
|
|
|
86
|
-
You're juggling Claude Code, Codex, random OSS models. Configuring workflows. Debugging agents.
|
|
87
|
+
You're juggling Claude Code, Codex, and random OSS models. Configuring workflows. Debugging agents.
|
|
87
88
|
|
|
88
89
|
We did the work. Tested everything. Kept what actually shipped.
|
|
89
90
|
|
|
90
|
-
Install
|
|
91
|
+
Install oh-my-openagent. Type `ultrawork`. Done.
|
|
91
92
|
|
|
92
93
|
|
|
93
94
|
## Installation
|
|
@@ -97,7 +98,7 @@ Install OmO. Type `ultrawork`. Done.
|
|
|
97
98
|
Copy and paste this prompt to your LLM agent (Claude Code, AmpCode, Cursor, etc.):
|
|
98
99
|
|
|
99
100
|
```
|
|
100
|
-
Install and configure oh-my-
|
|
101
|
+
Install and configure oh-my-openagent by following the instructions here:
|
|
101
102
|
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
|
|
102
103
|
```
|
|
103
104
|
|
|
@@ -111,7 +112,7 @@ Fetch the installation guide and follow it:
|
|
|
111
112
|
curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/heads/dev/docs/guide/installation.md
|
|
112
113
|
```
|
|
113
114
|
|
|
114
|
-
**Note**:
|
|
115
|
+
**Note**: The published npm package and CLI binary are still named `oh-my-opencode` (dual-published as `oh-my-openagent` during the transition). Inside `opencode.json`, the compatibility layer now prefers the plugin entry `oh-my-openagent`, while legacy `oh-my-opencode` entries still load with a warning. Plugin config files still commonly use `oh-my-opencode.json` or `oh-my-opencode.jsonc`; both legacy and renamed basenames are recognized during the transition.
|
|
115
116
|
|
|
116
117
|
Anonymous telemetry is enabled by default to track active installations (DAU/WAU/MAU). A single event is sent at most once per UTC day per machine using a hashed installation identifier, never the raw hostname, and PostHog person profiles are not created. Disable with `OMO_SEND_ANONYMOUS_TELEMETRY=0` or `OMO_DISABLE_POSTHOG=1`. See [Privacy Policy](docs/legal/privacy-policy.md) and [Terms of Service](docs/legal/terms-of-service.md).
|
|
117
118
|
|
|
@@ -125,6 +126,7 @@ We're past the era of reading docs. Just paste this into your agent:
|
|
|
125
126
|
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
|
|
126
127
|
```
|
|
127
128
|
|
|
129
|
+
|
|
128
130
|
## Highlights
|
|
129
131
|
|
|
130
132
|
### 🪄 `ultrawork`
|
|
@@ -133,17 +135,18 @@ You're actually reading this? Wild.
|
|
|
133
135
|
|
|
134
136
|
Install. Type `ultrawork` (or `ulw`). Done.
|
|
135
137
|
|
|
136
|
-
Everything below, every feature, every optimization
|
|
138
|
+
Everything below, every feature, every optimization: you don't need to know any of it. It just works.
|
|
137
139
|
|
|
138
|
-
Even only
|
|
140
|
+
Even with only the following subscriptions, `ultrawork` works well (this project is not affiliated; these are personal recommendations):
|
|
139
141
|
- [ChatGPT Subscription ($20)](https://chatgpt.com/)
|
|
140
142
|
- [Kimi Code Subscription ($19)](https://www.kimi.com/code)
|
|
141
143
|
- [GLM Coding Plan ($10)](https://z.ai/subscribe)
|
|
142
|
-
- If you
|
|
144
|
+
- If you're eligible for pay-per-token, using Kimi and Gemini models won't cost much.
|
|
143
145
|
|
|
144
146
|
| | Feature | What it does |
|
|
145
147
|
| :---: | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
146
148
|
| 🤖 | **Discipline Agents** | Sisyphus orchestrates Hephaestus, Oracle, Librarian, Explore. A full AI dev team in parallel. |
|
|
149
|
+
| 👥 | **Team Mode** (v4.0, opt-in) | Lead agent + up to 8 parallel members, real-time tmux visualization, dedicated `team_*` tools. Powers `hyperplan` (5 hostile critics) and `security-research` (3 hunters + 2 PoC engineers). [Docs →](docs/guide/team-mode.md) |
|
|
147
150
|
| ⚡ | **`ultrawork` / `ulw`** | One word. Every agent activates. Doesn't stop until done. |
|
|
148
151
|
| 🚪 | **[IntentGate](https://factory.ai/news/terminal-bench)** | Analyzes true user intent before classifying or acting. No more literal misinterpretations. |
|
|
149
152
|
| 🔗 | **Hash-Anchored Edit Tool** | `LINE#ID` content hash validates every change. Zero stale-line errors. Inspired by [oh-my-pi](https://github.com/can1357/oh-my-pi). [The Harness Problem →](https://blog.can.ac/2026/02/12/the-harness-problem/) |
|
|
@@ -157,7 +160,7 @@ Even only with following subscriptions, ultrawork will work well (this project i
|
|
|
157
160
|
| 🔌 | **Claude Code Compatible** | Your hooks, commands, skills, MCPs, and plugins? All work here. |
|
|
158
161
|
| 🎯 | **Skill-Embedded MCPs** | Skills carry their own MCP servers. No context bloat. |
|
|
159
162
|
| 📋 | **Prometheus Planner** | Interview-mode strategic planning before any execution. |
|
|
160
|
-
| 🔍 | **`/init-deep`** | Auto-generates hierarchical `AGENTS.md` files throughout your project. Great for both token efficiency and your agent's performance
|
|
163
|
+
| 🔍 | **`/init-deep`** | Auto-generates hierarchical `AGENTS.md` files throughout your project. Great for both token efficiency and your agent's performance. |
|
|
161
164
|
|
|
162
165
|
### Discipline Agents
|
|
163
166
|
|
|
@@ -166,17 +169,41 @@ Even only with following subscriptions, ultrawork will work well (this project i
|
|
|
166
169
|
<td align="center"><img src=".github/assets/hephaestus.png" height="300" /></td>
|
|
167
170
|
</tr></table>
|
|
168
171
|
|
|
169
|
-
**Sisyphus** (`claude-opus-4-7` / **`kimi-k2.
|
|
172
|
+
**Sisyphus** (`claude-opus-4-7` / **`kimi-k2.6`** / **`glm-5.1`** ) is your main orchestrator. He plans, delegates to specialists, and drives tasks to completion with aggressive parallel execution. He does not stop halfway.
|
|
170
173
|
|
|
171
|
-
**Hephaestus** (`gpt-5.
|
|
174
|
+
**Hephaestus** (`gpt-5.5`) is your autonomous deep worker. Give him a goal, not a recipe. He explores the codebase, researches patterns, and executes end-to-end without hand-holding. *The Legitimate Craftsman.*
|
|
172
175
|
|
|
173
|
-
**Prometheus** (`claude-opus-4-7` / **`kimi-k2.
|
|
176
|
+
**Prometheus** (`claude-opus-4-7` / **`kimi-k2.6`** / **`glm-5.1`** ) is your strategic planner. Interview mode: he asks questions, identifies scope, and builds a detailed plan before a single line of code is touched.
|
|
174
177
|
|
|
175
|
-
Every agent is tuned to its model's specific strengths. No manual model
|
|
178
|
+
Every agent is tuned to its model's specific strengths. No manual model juggling. [Learn more →](docs/guide/overview.md)
|
|
176
179
|
|
|
177
180
|
> Anthropic [blocked OpenCode because of us.](https://x.com/thdxr/status/2010149530486911014) That's why Hephaestus is called "The Legitimate Craftsman." The irony is intentional.
|
|
178
181
|
>
|
|
179
|
-
> We run best on Opus, but Kimi K2.
|
|
182
|
+
> We run best on Opus, but Kimi K2.6 + GPT-5.5 already beats vanilla Claude Code. Zero config needed.
|
|
183
|
+
|
|
184
|
+
### Team Mode (v4.0)
|
|
185
|
+
|
|
186
|
+
One agent is fast. A coordinated team is *devastating*.
|
|
187
|
+
|
|
188
|
+
**Team Mode** turns oh-my-openagent from "one agent with subagents" into a real multi-agent system. A lead agent orchestrates a team of category-specialized members, all running **in parallel** and communicating through dedicated tools (`team_create`, `team_send_message`, `team_task_create`, `team_status`, ...). Watch every member work simultaneously in a tmux layout with focus + grid windows.
|
|
189
|
+
|
|
190
|
+
```jsonc
|
|
191
|
+
// .opencode/oh-my-openagent.jsonc
|
|
192
|
+
{
|
|
193
|
+
"team_mode": {
|
|
194
|
+
"enabled": true,
|
|
195
|
+
"max_parallel_members": 4,
|
|
196
|
+
"tmux_visualization": true
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
Restart opencode and the `team_*` tool family unlocks. Two skills already ride on top:
|
|
202
|
+
|
|
203
|
+
- **`hyperplan`** — 5 hostile agents tear apart your plan from orthogonal angles before a single line of code is written.
|
|
204
|
+
- **`security-research`** — 3 vulnerability hunters + 2 PoC engineers audit your codebase in parallel, with severity calibrated by *actual exploitability*.
|
|
205
|
+
|
|
206
|
+
> **Off by default. Enable it when you want it.** [Full Team Mode guide →](docs/guide/team-mode.md)
|
|
180
207
|
|
|
181
208
|
### Agent Orchestration
|
|
182
209
|
|
|
@@ -189,7 +216,7 @@ When Sisyphus delegates to a subagent, it doesn't pick a model. It picks a **cat
|
|
|
189
216
|
| `quick` | Single-file changes, typos |
|
|
190
217
|
| `ultrabrain` | Hard logic, architecture decisions |
|
|
191
218
|
|
|
192
|
-
|
|
219
|
+
The agent says what kind of work it needs; the harness picks the right model. `ultrabrain` now routes to GPT-5.5 xhigh by default. You touch nothing.
|
|
193
220
|
|
|
194
221
|
### Claude Code Compatibility
|
|
195
222
|
|
|
@@ -199,28 +226,28 @@ Every hook, command, skill, MCP, plugin works here unchanged. Full compatibility
|
|
|
199
226
|
|
|
200
227
|
### World-Class Tools for Your Agents
|
|
201
228
|
|
|
202
|
-
LSP, AST-Grep, Tmux, MCP actually integrated, not duct-taped together.
|
|
229
|
+
LSP, AST-Grep, Tmux, and MCP, actually integrated, not duct-taped together.
|
|
203
230
|
|
|
204
|
-
- **LSP**: `lsp_rename`, `lsp_goto_definition`, `lsp_find_references`, `lsp_diagnostics`. IDE precision for every agent
|
|
205
|
-
- **AST-Grep**: Pattern-aware code search and rewriting across 25 languages
|
|
206
|
-
- **Tmux**: Full interactive terminal. REPLs, debuggers, TUI apps. Your agent stays in session
|
|
207
|
-
- **MCP**: Web search, official docs, GitHub code search. All baked in
|
|
231
|
+
- **LSP**: `lsp_rename`, `lsp_goto_definition`, `lsp_find_references`, `lsp_diagnostics`. IDE precision for every agent.
|
|
232
|
+
- **AST-Grep**: Pattern-aware code search and rewriting across 25 languages.
|
|
233
|
+
- **Tmux**: Full interactive terminal. REPLs, debuggers, TUI apps. Your agent stays in session.
|
|
234
|
+
- **MCP**: Web search, official docs, GitHub code search. All baked in.
|
|
208
235
|
|
|
209
236
|
### Skill-Embedded MCPs
|
|
210
237
|
|
|
211
238
|
MCP servers eat your context budget. We fixed that.
|
|
212
239
|
|
|
213
|
-
Skills bring their own MCP servers.
|
|
240
|
+
Skills bring their own MCP servers. They spin up on demand, scoped to the task, and go away when done. The context window stays clean.
|
|
214
241
|
|
|
215
242
|
### Codes Better. Hash-Anchored Edits
|
|
216
243
|
|
|
217
|
-
The harness problem is real. Most agent failures aren't the model
|
|
244
|
+
The harness problem is real. Most agent failures aren't the model's fault; it's the edit tool.
|
|
218
245
|
|
|
219
246
|
> *"None of these tools give the model a stable, verifiable identifier for the lines it wants to change... They all rely on the model reproducing content it already saw. When it can't - and it often can't - the user blames the model."*
|
|
220
247
|
>
|
|
221
248
|
> <br/>- [Can Bölük, The Harness Problem](https://blog.can.ac/2026/02/12/the-harness-problem/)
|
|
222
249
|
|
|
223
|
-
Inspired by [oh-my-pi](https://github.com/can1357/oh-my-pi), we
|
|
250
|
+
Inspired by [oh-my-pi](https://github.com/can1357/oh-my-pi), we built **Hashline**. Every line the agent reads comes back tagged with a content hash:
|
|
224
251
|
|
|
225
252
|
```
|
|
226
253
|
11#VK| function hello() {
|
|
@@ -228,9 +255,9 @@ Inspired by [oh-my-pi](https://github.com/can1357/oh-my-pi), we implemented **Ha
|
|
|
228
255
|
33#MB| }
|
|
229
256
|
```
|
|
230
257
|
|
|
231
|
-
The agent edits by referencing those tags. If the file changed since the last read, the hash won't match and the edit is rejected before corruption. No whitespace reproduction. No stale-line errors.
|
|
258
|
+
The agent edits by referencing those tags. If the file has changed since the last read, the hash won't match and the edit is rejected before any corruption. No whitespace reproduction. No stale-line errors.
|
|
232
259
|
|
|
233
|
-
Grok Code Fast 1: **6.7% → 68.3%** success rate
|
|
260
|
+
Grok Code Fast 1: **6.7% → 68.3%** success rate, just from changing the edit tool.
|
|
234
261
|
|
|
235
262
|
### Deep Initialization. `/init-deep`
|
|
236
263
|
|
|
@@ -251,29 +278,29 @@ Agents auto-read relevant context. Zero manual management.
|
|
|
251
278
|
|
|
252
279
|
Complex task? Don't prompt and pray.
|
|
253
280
|
|
|
254
|
-
`/start-work` calls Prometheus. **
|
|
281
|
+
`/start-work` calls Prometheus. He **interviews you like a real engineer**, identifies scope and ambiguities, and builds a verified plan before touching code. The agent knows what it's building before it starts.
|
|
255
282
|
|
|
256
283
|
### Skills
|
|
257
284
|
|
|
258
285
|
Skills aren't just prompts. Each brings:
|
|
259
286
|
|
|
260
|
-
- Domain-tuned system instructions
|
|
261
|
-
- Embedded MCP servers, on
|
|
262
|
-
- Scoped permissions
|
|
287
|
+
- Domain-tuned system instructions.
|
|
288
|
+
- Embedded MCP servers, on demand.
|
|
289
|
+
- Scoped permissions so agents stay in bounds.
|
|
263
290
|
|
|
264
291
|
Built-ins: `playwright` (browser automation), `git-master` (atomic commits, rebase surgery), `frontend-ui-ux` (design-first UI).
|
|
265
292
|
|
|
266
|
-
Add your own
|
|
293
|
+
Add your own under `.opencode/skills/*/SKILL.md` or `~/.config/opencode/skills/*/SKILL.md`.
|
|
267
294
|
|
|
268
295
|
**Want the full feature breakdown?** See the **[Features Documentation](docs/reference/features.md)** for agents, hooks, tools, MCPs, and everything else in detail.
|
|
269
296
|
|
|
270
297
|
---
|
|
271
298
|
|
|
272
|
-
> **New to oh-my-
|
|
299
|
+
> **New to oh-my-openagent?** 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.
|
|
273
300
|
|
|
274
301
|
## Uninstallation
|
|
275
302
|
|
|
276
|
-
To remove oh-my-
|
|
303
|
+
To remove oh-my-openagent:
|
|
277
304
|
|
|
278
305
|
1. **Remove the plugin from your OpenCode config**
|
|
279
306
|
|
|
@@ -334,7 +361,7 @@ Opinionated defaults, adjustable if you insist.
|
|
|
334
361
|
See [Configuration Documentation](docs/reference/configuration.md).
|
|
335
362
|
|
|
336
363
|
**Quick Overview:**
|
|
337
|
-
- **Config Locations**:
|
|
364
|
+
- **Config Locations**: User config plus walked `.opencode/oh-my-openagent.json[c]` configs up to `$HOME`; closest wins. Legacy `oh-my-opencode.json[c]` still works.
|
|
338
365
|
- **JSONC Support**: Comments and trailing commas supported
|
|
339
366
|
- **Agents**: Override models, temperatures, prompts, and permissions for any agent
|
|
340
367
|
- **Built-in Skills**: `playwright` (browser automation), `git-master` (atomic commits)
|
|
@@ -357,9 +384,9 @@ I burned through $24K in LLM tokens on personal projects. Tried every tool. Conf
|
|
|
357
384
|
|
|
358
385
|
Every problem I hit, the fix is baked into this plugin. Install and go.
|
|
359
386
|
|
|
360
|
-
If OpenCode is Debian/Arch,
|
|
387
|
+
If OpenCode is Debian/Arch, oh-my-openagent is Ubuntu/[Omarchy](https://omarchy.org/).
|
|
361
388
|
|
|
362
|
-
|
|
389
|
+
Heavily influenced by [AmpCode](https://ampcode.com) and [Claude Code](https://code.claude.com/docs/overview). Features ported, often improved. Still building. It's **Open**Code.
|
|
363
390
|
|
|
364
391
|
Other harnesses promise multi-model orchestration. We ship it. Stability too. And features that actually work.
|
|
365
392
|
|
|
@@ -379,17 +406,18 @@ This plugin is the distillation. Take the best. Got improvements? PRs welcome.
|
|
|
379
406
|
|
|
380
407
|
Sounds arrogant? Have a better way? Contribute. You're welcome.
|
|
381
408
|
|
|
382
|
-
No affiliation with any project
|
|
409
|
+
No affiliation with any project or model mentioned. Just personal experimentation.
|
|
383
410
|
|
|
384
|
-
99% of this project was built with OpenCode. I don't really know TypeScript
|
|
411
|
+
99% of this project was built with OpenCode. I don't really know TypeScript, **but I personally reviewed and largely rewrote this doc.**
|
|
385
412
|
|
|
386
413
|
## Loved by professionals at
|
|
387
414
|
|
|
388
415
|
- [Indent](https://indentcorp.com)
|
|
389
|
-
-
|
|
416
|
+
- Makers of Spray (influencer marketing solution), vovushop (cross-border commerce platform), and vreview (AI commerce review marketing solution).
|
|
390
417
|
- [Google](https://google.com)
|
|
391
418
|
- [Microsoft](https://microsoft.com)
|
|
419
|
+
- [Vercel](https://vercel.com)
|
|
392
420
|
- [ELESTYLE](https://elestyle.jp)
|
|
393
|
-
-
|
|
421
|
+
- Makers of elepay (multi-mobile payment gateway) and OneQR (mobile application SaaS for cashless solutions).
|
|
394
422
|
|
|
395
423
|
*Special thanks to [@junhoyeo](https://github.com/junhoyeo) for this amazing hero image.*
|