oh-my-opencode-slim 1.1.1 โ 1.1.2
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-JP.md +638 -0
- package/README.ko-KR.md +634 -0
- package/README.md +44 -13
- package/README.zh-CN.md +627 -0
- package/dist/cli/background-subagents.d.ts +13 -0
- package/dist/cli/index.js +65 -92
- package/dist/cli/skills.d.ts +2 -30
- package/dist/cli/types.d.ts +0 -1
- package/dist/config/fallback-chains.d.ts +1 -0
- package/dist/config/schema.d.ts +7 -0
- package/dist/hooks/auto-update-checker/checker.d.ts +7 -1
- package/dist/hooks/auto-update-checker/constants.d.ts +1 -0
- package/dist/hooks/auto-update-checker/types.d.ts +10 -0
- package/dist/hooks/deepwork/index.d.ts +13 -0
- package/dist/index.js +300 -121
- package/dist/tools/ast-grep/tools.d.ts +1 -1
- package/dist/tools/cancel-task.d.ts +16 -0
- package/dist/tools/preset-manager.d.ts +6 -7
- package/dist/tools/subtask/tools.d.ts +6 -1
- package/dist/tui.js +17 -62
- package/dist/utils/background-job-board.d.ts +90 -0
- package/oh-my-opencode-slim.schema.json +11 -0
- package/package.json +6 -3
- package/dist/agents/council-master.d.ts +0 -2
- package/dist/background/background-manager.d.ts +0 -203
- package/dist/background/index.d.ts +0 -3
- package/dist/background/multiplexer-session-manager.d.ts +0 -70
- package/dist/background/subagent-depth.d.ts +0 -35
- package/dist/cli/divoom.d.ts +0 -23
- package/dist/goal/index.d.ts +0 -3
- package/dist/goal/manager.d.ts +0 -41
- package/dist/goal/prompts.d.ts +0 -4
- package/dist/goal/store.d.ts +0 -15
- package/dist/goal/types.d.ts +0 -28
- package/dist/integrations/divoom/index.d.ts +0 -3
- package/dist/integrations/divoom/status-manager.d.ts +0 -31
- package/dist/integrations/divoom/swift-helper-source.d.ts +0 -1
- package/dist/integrations/divoom/swift-transport.d.ts +0 -26
- package/dist/integrations/divoom/types.d.ts +0 -41
- package/dist/tools/background.d.ts +0 -13
- package/dist/tools/fork/command.d.ts +0 -28
- package/dist/tools/fork/files.d.ts +0 -33
- package/dist/tools/fork/index.d.ts +0 -10
- package/dist/tools/fork/state.d.ts +0 -7
- package/dist/tools/fork/tools.d.ts +0 -23
- package/dist/tools/fork/vendor.d.ts +0 -28
- package/dist/tools/handoff/command.d.ts +0 -29
- package/dist/tools/handoff/files.d.ts +0 -33
- package/dist/tools/handoff/index.d.ts +0 -10
- package/dist/tools/handoff/state.d.ts +0 -7
- package/dist/tools/handoff/tools.d.ts +0 -23
- package/dist/tools/handoff/vendor.d.ts +0 -28
- package/dist/tools/lsp/client.d.ts +0 -81
- package/dist/tools/lsp/config-store.d.ts +0 -29
- package/dist/tools/lsp/config.d.ts +0 -5
- package/dist/tools/lsp/constants.d.ts +0 -24
- package/dist/tools/lsp/index.d.ts +0 -4
- package/dist/tools/lsp/tools.d.ts +0 -5
- package/dist/tools/lsp/types.d.ts +0 -45
- package/dist/tools/lsp/utils.d.ts +0 -34
- package/dist/utils/tmux-debug-log.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<a href="https://github.com/alvinunreal/oh-my-opencode-slim/stargazers">
|
|
3
|
-
<img src="img/
|
|
3
|
+
<img src="img/v2beta.webp" alt="V2 Beta Release" style="border-radius: 10px;">
|
|
4
4
|
</a>
|
|
5
|
-
<h3
|
|
6
|
-
<p><i>
|
|
5
|
+
<h3>โจ V2 Beta Release: Background Orchestration Has Arrived โจ</h3>
|
|
6
|
+
<p><i>The orchestrator now schedules specialist agents in the background,<br>while <code>/deepwork</code> turns big goals into file-backed plans.<br>Beta testers: share your feedback with us on Telegram.</i></p>
|
|
7
7
|
|
|
8
8
|
<p><b>Open Multi Agent Suite</b> ยท Mix any models ยท Auto delegate tasks</p>
|
|
9
9
|
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
<a href="https://x.com/alvinunreal"><img src="https://img.shields.io/badge/X-@alvinunreal-000000?style=for-the-badge&logo=x&logoColor=white" alt="X @alvinunreal"></a>
|
|
14
14
|
<a href="https://t.me/boringdystopiadevelopment"><img src="https://img.shields.io/badge/Telegram-Join%20channel-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white" alt="Telegram Join channel"></a>
|
|
15
15
|
</p>
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
<b>English</b> | <a href="README.zh-CN.md">็ฎไฝไธญๆ</a> | <a href="README.ja-JP.md">ๆฅๆฌ่ช</a> | <a href="README.ko-KR.md">ํ๊ตญ์ด</a>
|
|
19
|
+
</p>
|
|
16
20
|
</div>
|
|
17
21
|
|
|
18
22
|
---
|
|
@@ -41,12 +45,20 @@ Install and configure oh-my-opencode-slim: https://raw.githubusercontent.com/alv
|
|
|
41
45
|
bunx oh-my-opencode-slim@latest install
|
|
42
46
|
```
|
|
43
47
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
### V2 Background-Orchestration Beta
|
|
49
|
+
|
|
50
|
+
V2 changes the orchestrator from the default execution worker into a scheduler:
|
|
51
|
+
it plans work, dispatches specialists as background tasks, polls their status,
|
|
52
|
+
then reconciles results before continuing. This requires OpenCode's native
|
|
53
|
+
background subagent support, so beta users must start OpenCode with the
|
|
54
|
+
experimental flag enabled.
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Existing users: clear OpenCode's cached package first so beta is fetched fresh.
|
|
58
|
+
rm -rf ~/.cache/opencode/packages/oh-my-opencode-slim
|
|
59
|
+
bunx oh-my-opencode-slim@beta install
|
|
60
|
+
OPENCODE_EXPERIMENTAL_BACKGROUND_SUBAGENTS=1 opencode
|
|
61
|
+
```
|
|
50
62
|
|
|
51
63
|
### Getting Started
|
|
52
64
|
|
|
@@ -65,6 +77,8 @@ Then:
|
|
|
65
77
|
opencode models --refresh
|
|
66
78
|
```
|
|
67
79
|
3. **Open your plugin config** at `~/.config/opencode/oh-my-opencode-slim.json`
|
|
80
|
+
or `$OPENCODE_CONFIG_DIR/oh-my-opencode-slim.json` if you use a custom
|
|
81
|
+
OpenCode config directory
|
|
68
82
|
|
|
69
83
|
4. **Update the models you want for each agent**
|
|
70
84
|
|
|
@@ -83,7 +97,7 @@ The default generated configuration includes both `openai` and `opencode-go` pre
|
|
|
83
97
|
"oracle": { "model": "openai/gpt-5.5", "variant": "high", "skills": ["simplify"], "mcps": [] },
|
|
84
98
|
"librarian": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": ["websearch", "context7", "grep_app"] },
|
|
85
99
|
"explorer": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [] },
|
|
86
|
-
"designer": { "model": "openai/gpt-5.4-mini", "variant": "medium", "skills": [
|
|
100
|
+
"designer": { "model": "openai/gpt-5.4-mini", "variant": "medium", "skills": [], "mcps": [] },
|
|
87
101
|
"fixer": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [] }
|
|
88
102
|
},
|
|
89
103
|
"opencode-go": {
|
|
@@ -92,7 +106,7 @@ The default generated configuration includes both `openai` and `opencode-go` pre
|
|
|
92
106
|
"council": { "model": "opencode-go/deepseek-v4-pro", "variant": "high", "skills": [], "mcps": [] },
|
|
93
107
|
"librarian": { "model": "opencode-go/minimax-m2.7", "skills": [], "mcps": [ "websearch", "context7", "grep_app" ] },
|
|
94
108
|
"explorer": { "model": "opencode-go/minimax-m2.7", "skills": [], "mcps": [] },
|
|
95
|
-
"designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [
|
|
109
|
+
"designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [], "mcps": [] },
|
|
96
110
|
"fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] }
|
|
97
111
|
}
|
|
98
112
|
}
|
|
@@ -495,6 +509,7 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
495
509
|
| **[Session Goal](docs/session-goal.md)** | Pin a session objective with `/goal` so todos, delegation, and verification stay aligned |
|
|
496
510
|
| **[Todo Continuation](docs/todo-continuation.md)** | Auto-continue orchestrator sessions with cooldowns and safety checks |
|
|
497
511
|
| **[Preset Switching](docs/preset-switching.md)** | Switch agent model presets at runtime with `/preset` |
|
|
512
|
+
| **[Custom Agents](docs/configuration.md#custom-agents)** | Define your own specialists with custom prompts, models, MCP access, and Orchestrator delegation rules |
|
|
498
513
|
| **[Subtask](docs/subtask.md)** | Run a bounded child worker with `/subtask` and return a structured summary to the main session |
|
|
499
514
|
| **[Codemap](docs/codemap.md)** | Generate hierarchical codemaps to understand large codebases faster |
|
|
500
515
|
| **[Clonedeps](docs/clonedeps.md)** | Clone selected dependency source into an ignored local workspace for inspection |
|
|
@@ -507,7 +522,7 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
507
522
|
|-----|----------------|
|
|
508
523
|
| **[Configuration](docs/configuration.md)** | Config file locations, JSONC support, prompt overrides, and full option reference |
|
|
509
524
|
| **[Maintainer Guide](docs/maintainers.md)** | Issue triage rules, label meanings, support routing, and repo maintenance workflow |
|
|
510
|
-
| **[Skills](docs/skills.md)** |
|
|
525
|
+
| **[Skills](docs/skills.md)** | Bundled skills such as `simplify`, `codemap`, and `clonedeps` |
|
|
511
526
|
| **[MCPs](docs/mcps.md)** | `websearch`, `context7`, `grep_app`, and how MCP permissions work per agent |
|
|
512
527
|
| **[Tools](docs/tools.md)** | Built-in tool capabilities like `webfetch`, LSP tools, code search, and formatters |
|
|
513
528
|
|
|
@@ -528,7 +543,7 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
528
543
|
<p><sub>Every merged contribution leaves a mark on the realm.</sub></p>
|
|
529
544
|
|
|
530
545
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
531
|
-
[](#contributors-)
|
|
532
547
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
533
548
|
</div>
|
|
534
549
|
|
|
@@ -600,6 +615,22 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
600
615
|
<td align="center" valign="top" width="16.66%"><a href="https://github.com/ThomasMldr"><img src="https://avatars.githubusercontent.com/u/6631765?v=4?s=100" width="100px;" alt="Thomas Mulder"/><br /><sub><b>Thomas Mulder</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=ThomasMldr" title="Code">๐ป</a></td>
|
|
601
616
|
<td align="center" valign="top" width="16.66%"><a href="https://github.com/maou-shonen"><img src="https://avatars.githubusercontent.com/u/22576780?v=4?s=100" width="100px;" alt="้ญ็ๅฐๅนด(maou shonen)"/><br /><sub><b>้ญ็ๅฐๅนด(maou shonen)</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=maou-shonen" title="Code">๐ป</a></td>
|
|
602
617
|
<td align="center" valign="top" width="16.66%"><a href="https://github.com/jelasin"><img src="https://avatars.githubusercontent.com/u/97788570?v=4?s=100" width="100px;" alt=" Jelasin"/><br /><sub><b> Jelasin</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=jelasin" title="Code">๐ป</a></td>
|
|
618
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/hannespr"><img src="https://avatars.githubusercontent.com/u/40021505?v=4?s=100" width="100px;" alt="Hannes"/><br /><sub><b>Hannes</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=hannespr" title="Code">๐ป</a></td>
|
|
619
|
+
<td align="center" valign="top" width="16.66%"><a href="https://qwtoe.github.io/"><img src="https://avatars.githubusercontent.com/u/36733893?v=4?s=100" width="100px;" alt="mooozfxs"/><br /><sub><b>mooozfxs</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=qwtoe" title="Code">๐ป</a></td>
|
|
620
|
+
</tr>
|
|
621
|
+
<tr>
|
|
622
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/zackslash"><img src="https://avatars.githubusercontent.com/u/2040617?v=4?s=100" width="100px;" alt="Luke Hines"/><br /><sub><b>Luke Hines</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=zackslash" title="Code">๐ป</a></td>
|
|
623
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/andrewylies"><img src="https://avatars.githubusercontent.com/u/103019336?v=4?s=100" width="100px;" alt="m.seomoon"/><br /><sub><b>m.seomoon</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=andrewylies" title="Code">๐ป</a></td>
|
|
624
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/yolo2h"><img src="https://avatars.githubusercontent.com/u/10754850?v=4?s=100" width="100px;" alt="Yolo"/><br /><sub><b>Yolo</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=yolo2h" title="Code">๐ป</a></td>
|
|
625
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/xinxingi"><img src="https://avatars.githubusercontent.com/u/49302071?v=4?s=100" width="100px;" alt="XinXing"/><br /><sub><b>XinXing</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=xinxingi" title="Code">๐ป</a></td>
|
|
626
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/eltociear"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Eltociear Ashimine"/><br /><sub><b>Ikko Eltociear Ashimine</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=eltociear" title="Code">๐ป</a></td>
|
|
627
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/dev-wantap"><img src="https://avatars.githubusercontent.com/u/69743540?v=4?s=100" width="100px;" alt="GWANWOO KIM"/><br /><sub><b>GWANWOO KIM</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=dev-wantap" title="Code">๐ป</a></td>
|
|
628
|
+
</tr>
|
|
629
|
+
<tr>
|
|
630
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/OmerFarukOruc"><img src="https://avatars.githubusercontent.com/u/7347742?v=4?s=100" width="100px;" alt="Omer Faruk Oruc"/><br /><sub><b>Omer Faruk Oruc</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=OmerFarukOruc" title="Code">๐ป</a></td>
|
|
631
|
+
<td align="center" valign="top" width="16.66%"><a href="https://khallaf.uk/"><img src="https://avatars.githubusercontent.com/u/51155980?v=4?s=100" width="100px;" alt="Omar Mohamed Khallaf"/><br /><sub><b>Omar Mohamed Khallaf</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=omar-mohamed-khallaf" title="Code">๐ป</a></td>
|
|
632
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/Qesire"><img src="https://avatars.githubusercontent.com/u/102657430?v=4?s=100" width="100px;" alt="Knowingthesea_Qesire"/><br /><sub><b>Knowingthesea_Qesire</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=Qesire" title="Code">๐ป</a></td>
|
|
633
|
+
<td align="center" valign="top" width="16.66%"><a href="http://www.flyinghail.net/"><img src="https://avatars.githubusercontent.com/u/157430?v=4?s=100" width="100px;" alt="FENG Hao"/><br /><sub><b>FENG Hao</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=flyinghail" title="Code">๐ป</a></td>
|
|
603
634
|
</tr>
|
|
604
635
|
</tbody>
|
|
605
636
|
</table>
|