oh-my-opencode-slim 2.2.0 → 2.2.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.md CHANGED
@@ -26,9 +26,32 @@
26
26
 
27
27
  oh-my-opencode-slim is an agent orchestration plugin for OpenCode. It includes a built-in team of specialized agents that can scout a codebase, look up fresh documentation, review architecture, handle UI work, and execute well-scoped implementation tasks under one orchestrator.
28
28
 
29
- The main idea is simple: instead of forcing one model to do everything, the plugin routes each part of the job to the agent best suited for it, balancing **quality, speed and cost**.
30
-
31
- To explore the agents themselves, see **[Meet the Pantheon](#meet-the-pantheon)**. For the full feature set, see **[Features & Workflows](#features-and-workflows)** below.
29
+ The main idea is simple: instead of forcing one model to do everything, the plugin routes each part of the job to the agent best suited for it, balancing **quality, speed and cost**. The Orchestrator plans the work graph, dispatches specialists as background tasks, and reconciles their results before continuing.
30
+
31
+ ### Highlights
32
+
33
+ - **[Seven specialized agents](#meet-the-pantheon)** - Orchestrator, Explorer,
34
+ Oracle, Council, Librarian, Designer, and Fixer. Each part of the job goes to
35
+ the agent best suited for it - mix any models across any providers.
36
+ - **[Background orchestration](docs/background-orchestration.md)** - the
37
+ Orchestrator dispatches specialists as background tasks, tracks them, and
38
+ reconciles results before continuing - parallel work by default.
39
+ - **[Bundled skills](#skills)** - prompt-based workflows like `deepwork`,
40
+ `codemap`, `verification-planning`, and `reflect`, assigned per agent.
41
+ - **[Council](docs/council.md)** - run multiple models in parallel on the same
42
+ question and synthesize a single answer with `@council`.
43
+ - **[Companion](docs/companion.md)** - an optional floating desktop window
44
+ showing which agents are active, including parallel background specialists.
45
+ - **[Multiplexer integration](docs/multiplexer-integration.md)** - watch agents
46
+ work live in Tmux, Zellij, Herdr, or cmux panes.
47
+ - **[Preset switching](docs/preset-switching.md)** - swap the whole team's
48
+ models at runtime with `/preset`.
49
+ - **[Code intelligence tools](docs/tools.md)** - LSP tools, AST-aware search
50
+ across 25 languages, and built-in MCPs for web search, docs, and GitHub code
51
+ search.
52
+ - **[Fully customizable](docs/configuration.md)** - custom agents, prompt
53
+ overrides, per-agent skill/MCP permissions, and
54
+ [project-local customization](docs/project-local-customization.md).
32
55
 
33
56
  ### OpenAI GPT-5.6
34
57
 
@@ -150,12 +173,13 @@ The default generated configuration includes both `openai` and `opencode-go` pre
150
173
  "fixer": { "model": "openai/gpt-5.6-luna", "variant": "medium", "skills": [], "mcps": [] }
151
174
  },
152
175
  "opencode-go": {
153
- "orchestrator": { "model": "opencode-go/glm-5.2", "skills": [ "*" ], "mcps": [ "*", "!context7" ] },
176
+ "orchestrator": { "model": "opencode-go/minimax-m3", "variant": "max", "skills": [ "*" ], "mcps": [ "*", "!context7" ] },
154
177
  "oracle": { "model": "opencode-go/qwen3.7-max", "variant": "max", "skills": ["simplify"], "mcps": [] },
155
- "librarian": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [ "websearch", "context7", "gh_grep" ] },
156
- "explorer": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [] },
178
+ "librarian": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [ "websearch", "context7", "gh_grep" ] },
179
+ "explorer": { "model": "opencode-go/deepseek-v4-flash", "variant": "max", "skills": [], "mcps": [] },
157
180
  "designer": { "model": "opencode-go/kimi-k2.7-code", "variant": "medium", "skills": [], "mcps": [] },
158
- "fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] }
181
+ "fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] },
182
+ "observer": { "model": "opencode-go/mimo-v2.5", "variant": "max", "skills": [], "mcps": [] }
159
183
  }
160
184
  }
161
185
  }
@@ -196,135 +220,6 @@ If any agent fails to respond, check your provider authentication and config fil
196
220
 
197
221
  ---
198
222
 
199
- ### What's New in V2
200
-
201
- V2 turns oh-my-opencode-slim into a scheduler-first multi-agent workflow system.
202
- The Orchestrator stays focused on planning, delegation, reconciliation, and
203
- verification while specialists do the work in their own lanes.
204
-
205
- - **[Background agents](#background-agents)** - the Orchestrator now dispatches
206
- specialists as background tasks, tracks task/session IDs, waits for completion
207
- events, and reconciles results before continuing.
208
- - **[Companion](#companion)** - an optional floating desktop window shows which
209
- agents are currently active, including parallel background specialists.
210
- - **[Deepwork](#deepwork)** - a structured workflow for large, multi-file, risky,
211
- or phased coding work using persistent plan files and Oracle review gates.
212
- - **[Verification Planning](#verification-planning)** - plans a project-specific
213
- evidence path before non-trivial implementation, including verification
214
- affordances when the system needs to become more legible to an agent.
215
- - **[Reflect](#reflect)** - reviews repeated work patterns and suggests reusable skills,
216
- agents, commands, config rules, prompt rules, or project playbooks.
217
- - **[Worktrees](#worktrees)** - manages Git worktrees as isolated coding lanes
218
- with safety protocols for complex, risky, or parallel tasks.
219
- - **[oh-my-opencode-slim skill](#oh-my-opencode-slim-skill)** - a bundled
220
- configuration skill that helps tune models, prompts, custom agents, MCP access,
221
- presets, and plugin behavior safely.
222
-
223
- #### Background Agents
224
-
225
- V2 makes background specialists the default mental model: the Orchestrator plans
226
- the work graph, launches the right agents, avoids overlapping write ownership,
227
- and waits for terminal task results before acting on them.
228
-
229
- See **[Background Orchestration](docs/background-orchestration.md)** for the
230
- full scheduler model.
231
-
232
- #### Companion
233
-
234
- The optional Companion is a floating desktop status window for live agent
235
- activity. It shows the current session state and which agents are active, so
236
- background work is easier to follow at a glance.
237
-
238
- <div align="center">
239
- <img src="img/companion.gif" alt="Companion showing active agents" width="600">
240
- <p><i>Left bottom visual companion.</i></p>
241
- </div>
242
-
243
- During interactive install, the installer asks whether to enable Companion and
244
- defaults to `no`. For automation, enable it explicitly with:
245
-
246
- ```bash
247
- bunx oh-my-opencode-slim@latest install --companion=yes
248
- ```
249
-
250
- See **[Companion](docs/companion.md)** for configuration, positions, sizes, and
251
- install details.
252
-
253
- #### Deepwork
254
-
255
- Deepwork is for heavy coding sessions: broad refactors, multi-phase features,
256
- risky architecture changes, or work that needs a persistent plan. It creates a
257
- local markdown progress file, uses Oracle review gates, and keeps implementation
258
- phases structured.
259
-
260
- Start it with:
261
-
262
- ```text
263
- /deepwork <heavy coding task>
264
- ```
265
-
266
- See **[Skills](docs/skills.md#deepwork)** for when to use it and how the workflow
267
- runs.
268
-
269
- #### Verification Planning
270
-
271
- Verification Planning gives the Orchestrator a way to decide how a non-trivial
272
- change will be proven before implementation begins. It frames the claim, designs
273
- project-specific evidence paths, and can create a small verification affordance
274
- when the system cannot directly reveal the decisive state to an agent. For
275
- unfamiliar capabilities, it asks the Librarian for focused research before
276
- choosing an approach.
277
-
278
- See **[Skills](docs/skills.md#verification-planning)** for the evidence-path
279
- workflow and its safety boundaries.
280
-
281
- #### Reflect
282
-
283
- Reflect helps the Orchestrator learn from repeated workflow friction. It reviews
284
- recent work and existing assets, then recommends the smallest useful improvement:
285
- a skill, custom agent, command, config rule, prompt rule, MCP permission change,
286
- or project playbook. If there is not enough evidence, it should recommend
287
- creating nothing.
288
-
289
- Use it directly with:
290
-
291
- ```text
292
- /reflect
293
- /reflect release workflow and checks
294
- ```
295
-
296
- Or with natural prompts like:
297
-
298
- ```text
299
- reflect on my recent workflows
300
- find repeated work worth turning into reusable instructions
301
- ```
302
-
303
- See **[Skills](docs/skills.md#reflect)** for the full workflow and guardrails.
304
-
305
- #### Worktrees
306
-
307
- Worktrees manages Git worktrees as safe, isolated coding lanes under `.slim/worktrees/<slug>/`. The Orchestrator manages the lifecycle of these lanes, tracks state in `.slim/worktrees.json`, dispatches specialist agents inside them, and requires explicit confirmation before mutating git state.
308
-
309
- See **[Skills](docs/skills.md#worktrees)** for the safety protocol.
310
-
311
- #### oh-my-opencode-slim Skill
312
-
313
- The bundled `oh-my-opencode-slim` skill helps the Orchestrator configure and
314
- improve the plugin itself. Use it for model tuning, custom agents, prompt
315
- overrides, skill/MCP permissions, presets, optional agents, background
316
- orchestration, and recurring workflow friction.
317
-
318
- <div align="center">
319
- <img src="img/oh-my-opencode-skill.png" alt="oh-my-opencode-slim skill in use" width="600">
320
- <p><i>Ask the bundled skill to tune and improve your agent setup.</i></p>
321
- </div>
322
-
323
- See **[Skills](docs/skills.md#oh-my-opencode-slim)** for examples and safety
324
- rules.
325
-
326
- ---
327
-
328
223
  <a id="meet-the-pantheon"></a>
329
224
 
330
225
  ## 🏛️ Meet the Pantheon
@@ -643,7 +538,7 @@ rules.
643
538
 
644
539
  - Images, screenshots, diagrams → `read` tool (native image support)
645
540
  - PDFs and binary documents → `read` tool (text + structure extraction)
646
- - **Disabled by default** - enable with `"disabled_agents": []` and configure a vision-capable model; installing with `--preset=opencode-go` enables it with `opencode-go/kimi-k2.6`. Image attachments route to Observer by default when it is enabled; set `"image_routing": "direct"` to keep them on the Orchestrator.
541
+ - **Disabled by default** - enable with `"disabled_agents": []` and configure a vision-capable model; installing with `--preset=opencode-go` enables it with `opencode-go/mimo-v2.5`. Image attachments route to Observer by default when it is enabled; set `"image_routing": "direct"` to keep them on the Orchestrator.
647
542
 
648
543
  </td>
649
544
  </tr>
@@ -666,6 +561,63 @@ rules.
666
561
 
667
562
  ---
668
563
 
564
+ <a id="skills"></a>
565
+
566
+ ## 🧩 Skills
567
+
568
+ Skills are prompt-based instructions injected into an agent's system prompt to
569
+ guide decisions, workflows, and tool use. Unlike MCPs (which are running
570
+ servers), a skill runs no process — it is a focused playbook an agent activates
571
+ when the task calls for it. The installer bundles eight skills and keeps them
572
+ updated on plugin auto-update; local customizations are preserved.
573
+
574
+ | Skill | Purpose | Default agent | How to invoke |
575
+ |:-----:|---------|---------------|---------------|
576
+ | <img src="img/skills/codemap.webp" width="120" alt="Codemap artifact"><br>[`codemap`](src/skills/codemap/SKILL.md) | Hierarchical repository maps so agents understand codebases without re-reading everything | `orchestrator` | `run codemap` |
577
+ | <img src="img/skills/deepwork.webp" width="120" alt="Deepwork artifact"><br>[`deepwork`](src/skills/deepwork/SKILL.md) | Structured workflow for large, risky, multi-phase coding sessions with review gates | `orchestrator` | `/deepwork <task>` |
578
+ | <img src="img/skills/verification-planning.webp" width="120" alt="Verification Planning artifact"><br>[`verification-planning`](src/skills/verification-planning/SKILL.md) | Plans a project-specific evidence path before non-trivial changes | `orchestrator` | automatic before non-trivial work |
579
+ | <img src="img/skills/simplify.webp" width="120" alt="Simplify artifact"><br>[`simplify`](src/skills/simplify/SKILL.md) | Behavior-preserving simplification for readability and maintainability | `oracle` | ask for simplification or during review |
580
+ | <img src="img/skills/worktrees.webp" width="120" alt="Worktrees artifact"><br>[`worktrees`](src/skills/worktrees/SKILL.md) | Git worktrees as safe, isolated coding lanes for risky or parallel work | `orchestrator` | `work in a worktree` |
581
+ | <img src="img/skills/clonedeps.webp" width="120" alt="Clonedeps artifact"><br>[`clonedeps`](src/skills/clonedeps/SKILL.md) | Clones dependency source locally so agents can inspect library internals | `orchestrator` | `clone dependencies` |
582
+ | <img src="img/skills/reflect.webp" width="120" alt="Reflect artifact"><br>[`reflect`](src/skills/reflect/SKILL.md) | Turns repeated workflow friction into reusable skills, agents, or config | `orchestrator` | `/reflect` |
583
+ | <img src="img/skills/oh-my-opencode-slim.webp" width="120" alt="oh-my-opencode-slim artifact"><br>[`oh-my-opencode-slim`](src/skills/oh-my-opencode-slim/SKILL.md) | Configures and safely improves the plugin setup itself | `orchestrator` | ask to tune your setup |
584
+
585
+ Skill assignments are permission grants — an agent can only activate skills it
586
+ has been given. Configure them per agent with the `skills` array in
587
+ `~/.config/opencode/oh-my-opencode-slim.json`: an explicit list, `"*"` for
588
+ everything, or `"!skill-name"` to deny one.
589
+
590
+ See **[Skills](docs/skills.md)** for full documentation, or browse the
591
+ illustrated overview at
592
+ **[ohmyopencodeslim.com/skills](https://ohmyopencodeslim.com/skills)**.
593
+
594
+ ---
595
+
596
+ <a id="companion"></a>
597
+
598
+ ## 🖥️ Companion
599
+
600
+ The optional Companion is a floating desktop status window for live agent
601
+ activity. It shows the current session state and which agents are active, so
602
+ background work is easier to follow at a glance.
603
+
604
+ <div align="center">
605
+ <img src="img/companion.gif" alt="Companion showing active agents" width="600">
606
+ <p><i>Left bottom visual companion.</i></p>
607
+ </div>
608
+
609
+ During interactive install, the installer asks whether to enable Companion and
610
+ defaults to `no`. For automation, enable it explicitly with:
611
+
612
+ ```bash
613
+ bunx oh-my-opencode-slim@latest install --companion=yes
614
+ ```
615
+
616
+ See **[Companion](docs/companion.md)** for configuration, positions, sizes, and
617
+ install details.
618
+
619
+ ---
620
+
669
621
  ## 📚 Documentation
670
622
 
671
623
  Use this section as a map: start with installation, then jump to features, configuration, or example presets depending on what you need.
@@ -700,14 +652,6 @@ Use this section as a map: start with installation, then jump to features, confi
700
652
  | **[MCPs](docs/mcps.md)** | `websearch`, `context7`, `gh_grep`, and how MCP permissions work per agent |
701
653
  | **[Tools](docs/tools.md)** | Built-in tool capabilities like `webfetch`, LSP tools, code search, and formatters |
702
654
 
703
- ### 💡 Presets
704
-
705
- | Doc | What it covers |
706
- |-----|----------------|
707
- | **[Author's Preset](docs/authors-preset.md)** | The author's daily mixed-provider setup |
708
- | **[$30 Preset](docs/thirty-dollars-preset.md)** | A budget mixed-provider setup for around $30/month |
709
- | **[OpenCode Go Preset](docs/opencode-go-preset.md)** | The bundled `opencode-go` preset generated by the installer |
710
-
711
655
  ---
712
656
 
713
657
  ## 🏛️ Contributors