oh-my-opencode-slim 1.1.0 → 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.
Files changed (59) hide show
  1. package/README.ja-JP.md +638 -0
  2. package/README.ko-KR.md +634 -0
  3. package/README.md +48 -12
  4. package/README.zh-CN.md +627 -0
  5. package/dist/cli/background-subagents.d.ts +13 -0
  6. package/dist/cli/index.js +65 -92
  7. package/dist/cli/skills.d.ts +2 -30
  8. package/dist/cli/types.d.ts +0 -1
  9. package/dist/config/fallback-chains.d.ts +1 -0
  10. package/dist/config/schema.d.ts +7 -0
  11. package/dist/hooks/auto-update-checker/checker.d.ts +7 -1
  12. package/dist/hooks/auto-update-checker/constants.d.ts +1 -0
  13. package/dist/hooks/auto-update-checker/types.d.ts +10 -0
  14. package/dist/hooks/deepwork/index.d.ts +13 -0
  15. package/dist/hooks/index.d.ts +1 -0
  16. package/dist/hooks/session-goal/index.d.ts +38 -0
  17. package/dist/index.js +852 -435
  18. package/dist/multiplexer/session-manager.d.ts +3 -1
  19. package/dist/tools/ast-grep/tools.d.ts +1 -1
  20. package/dist/tools/cancel-task.d.ts +16 -0
  21. package/dist/tools/preset-manager.d.ts +6 -7
  22. package/dist/tools/subtask/tools.d.ts +6 -1
  23. package/dist/tui.js +17 -62
  24. package/dist/utils/background-job-board.d.ts +90 -0
  25. package/oh-my-opencode-slim.schema.json +11 -0
  26. package/package.json +6 -3
  27. package/dist/agents/council-master.d.ts +0 -2
  28. package/dist/background/background-manager.d.ts +0 -203
  29. package/dist/background/index.d.ts +0 -3
  30. package/dist/background/multiplexer-session-manager.d.ts +0 -70
  31. package/dist/background/subagent-depth.d.ts +0 -35
  32. package/dist/cli/divoom.d.ts +0 -23
  33. package/dist/integrations/divoom/index.d.ts +0 -3
  34. package/dist/integrations/divoom/status-manager.d.ts +0 -31
  35. package/dist/integrations/divoom/swift-helper-source.d.ts +0 -1
  36. package/dist/integrations/divoom/swift-transport.d.ts +0 -26
  37. package/dist/integrations/divoom/types.d.ts +0 -41
  38. package/dist/tools/background.d.ts +0 -13
  39. package/dist/tools/fork/command.d.ts +0 -28
  40. package/dist/tools/fork/files.d.ts +0 -33
  41. package/dist/tools/fork/index.d.ts +0 -10
  42. package/dist/tools/fork/state.d.ts +0 -7
  43. package/dist/tools/fork/tools.d.ts +0 -23
  44. package/dist/tools/fork/vendor.d.ts +0 -28
  45. package/dist/tools/handoff/command.d.ts +0 -29
  46. package/dist/tools/handoff/files.d.ts +0 -33
  47. package/dist/tools/handoff/index.d.ts +0 -10
  48. package/dist/tools/handoff/state.d.ts +0 -7
  49. package/dist/tools/handoff/tools.d.ts +0 -23
  50. package/dist/tools/handoff/vendor.d.ts +0 -28
  51. package/dist/tools/lsp/client.d.ts +0 -81
  52. package/dist/tools/lsp/config-store.d.ts +0 -29
  53. package/dist/tools/lsp/config.d.ts +0 -5
  54. package/dist/tools/lsp/constants.d.ts +0 -24
  55. package/dist/tools/lsp/index.d.ts +0 -4
  56. package/dist/tools/lsp/tools.d.ts +0 -5
  57. package/dist/tools/lsp/types.d.ts +0 -45
  58. package/dist/tools/lsp/utils.d.ts +0 -34
  59. package/dist/utils/tmux-debug-log.d.ts +0 -2
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  <div align="center">
2
- <img src="img/team.jpeg" alt="Pantheon agents" style="border-radius: 10px;">
3
- <p><i>Seven divine beings emerged from the dawn of code, each an immortal master of their craft await your command to forge order from chaos and build what was once thought impossible.</i></p>
2
+ <a href="https://github.com/alvinunreal/oh-my-opencode-slim/stargazers">
3
+ <img src="img/v2beta.webp" alt="V2 Beta Release" style="border-radius: 10px;">
4
+ </a>
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
+
4
8
  <p><b>Open Multi Agent Suite</b> · Mix any models · Auto delegate tasks</p>
5
9
 
6
10
  <p><sub>by <b>Boring Dystopia Development</b></sub></p>
@@ -9,6 +13,10 @@
9
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>&nbsp;
10
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>&nbsp;
11
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>
12
20
  </div>
13
21
 
14
22
  ---
@@ -37,12 +45,20 @@ Install and configure oh-my-opencode-slim: https://raw.githubusercontent.com/alv
37
45
  bunx oh-my-opencode-slim@latest install
38
46
  ```
39
47
 
40
- The installer also registers the companion TUI plugin in OpenCode's
41
- `tui.json`, which adds a small sidebar showing specialist-agent status plus
42
- active/reusable task sessions. It also warms OpenCode's plugin cache so bunx
43
- installs keep loading even after temporary directories are cleaned up. For
44
- manual setups, add `oh-my-opencode-slim` to the `plugin` array in both
45
- `opencode.json` and `tui.json`.
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
+ ```
46
62
 
47
63
  ### Getting Started
48
64
 
@@ -61,6 +77,8 @@ Then:
61
77
  opencode models --refresh
62
78
  ```
63
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
64
82
 
65
83
  4. **Update the models you want for each agent**
66
84
 
@@ -79,7 +97,7 @@ The default generated configuration includes both `openai` and `opencode-go` pre
79
97
  "oracle": { "model": "openai/gpt-5.5", "variant": "high", "skills": ["simplify"], "mcps": [] },
80
98
  "librarian": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": ["websearch", "context7", "grep_app"] },
81
99
  "explorer": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [] },
82
- "designer": { "model": "openai/gpt-5.4-mini", "variant": "medium", "skills": ["agent-browser"], "mcps": [] },
100
+ "designer": { "model": "openai/gpt-5.4-mini", "variant": "medium", "skills": [], "mcps": [] },
83
101
  "fixer": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [] }
84
102
  },
85
103
  "opencode-go": {
@@ -88,7 +106,7 @@ The default generated configuration includes both `openai` and `opencode-go` pre
88
106
  "council": { "model": "opencode-go/deepseek-v4-pro", "variant": "high", "skills": [], "mcps": [] },
89
107
  "librarian": { "model": "opencode-go/minimax-m2.7", "skills": [], "mcps": [ "websearch", "context7", "grep_app" ] },
90
108
  "explorer": { "model": "opencode-go/minimax-m2.7", "skills": [], "mcps": [] },
91
- "designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [ "agent-browser" ], "mcps": [] },
109
+ "designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [], "mcps": [] },
92
110
  "fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] }
93
111
  }
94
112
  }
@@ -488,8 +506,10 @@ Use this section as a map: start with installation, then jump to features, confi
488
506
  | **[Council](docs/council.md)** | Run multiple models in parallel and synthesize a single answer with `@council` |
489
507
  | **[Multiplexer Integration](docs/multiplexer-integration.md)** | Watch agents work live in Tmux or Zellij panes |
490
508
  | **[Session Management](docs/session-management.md)** | Reuse recent child-agent sessions with short aliases instead of starting over |
509
+ | **[Session Goal](docs/session-goal.md)** | Pin a session objective with `/goal` so todos, delegation, and verification stay aligned |
491
510
  | **[Todo Continuation](docs/todo-continuation.md)** | Auto-continue orchestrator sessions with cooldowns and safety checks |
492
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 |
493
513
  | **[Subtask](docs/subtask.md)** | Run a bounded child worker with `/subtask` and return a structured summary to the main session |
494
514
  | **[Codemap](docs/codemap.md)** | Generate hierarchical codemaps to understand large codebases faster |
495
515
  | **[Clonedeps](docs/clonedeps.md)** | Clone selected dependency source into an ignored local workspace for inspection |
@@ -502,7 +522,7 @@ Use this section as a map: start with installation, then jump to features, confi
502
522
  |-----|----------------|
503
523
  | **[Configuration](docs/configuration.md)** | Config file locations, JSONC support, prompt overrides, and full option reference |
504
524
  | **[Maintainer Guide](docs/maintainers.md)** | Issue triage rules, label meanings, support routing, and repo maintenance workflow |
505
- | **[Skills](docs/skills.md)** | Built-in and recommended skills such as `simplify`, `agent-browser`, `codemap`, and `clonedeps` |
525
+ | **[Skills](docs/skills.md)** | Bundled skills such as `simplify`, `codemap`, and `clonedeps` |
506
526
  | **[MCPs](docs/mcps.md)** | `websearch`, `context7`, `grep_app`, and how MCP permissions work per agent |
507
527
  | **[Tools](docs/tools.md)** | Built-in tool capabilities like `webfetch`, LSP tools, code search, and formatters |
508
528
 
@@ -523,7 +543,7 @@ Use this section as a map: start with installation, then jump to features, confi
523
543
  <p><sub>Every merged contribution leaves a mark on the realm.</sub></p>
524
544
 
525
545
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
526
- [![All Contributors](https://img.shields.io/badge/all_contributors-46-orange.svg?style=flat-square)](#contributors-)
546
+ [![All Contributors](https://img.shields.io/badge/all_contributors-58-orange.svg?style=flat-square)](#contributors-)
527
547
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
528
548
  </div>
529
549
 
@@ -595,6 +615,22 @@ Use this section as a map: start with installation, then jump to features, confi
595
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>
596
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>
597
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>
598
634
  </tr>
599
635
  </tbody>
600
636
  </table>