oh-my-opencode-slim 0.8.5 → 0.8.6
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 +80 -21
- package/dist/index.js +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="img/team.png" alt="Pantheon agents" width="
|
|
3
|
-
<p><i>
|
|
2
|
+
<img src="img/team.png" alt="Pantheon agents" style="border-radius: 10px;" width="620">
|
|
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>
|
|
4
4
|
<p><b>Open Multi Agent Suite</b> · Mix any models · Auto delegate tasks</p>
|
|
5
5
|
<p><a href="https://moltfounders.com/jobs/09d1c6e7-9e0e-4683-8d78-e2376aaa2333"><img src="https://moltfounders.com/badges/4.png" alt="MoltFounders" height="30"></a></p>
|
|
6
6
|
</div>
|
|
@@ -56,11 +56,6 @@ https://raw.githubusercontent.com/alvinunreal/oh-my-opencode-slim/refs/heads/mas
|
|
|
56
56
|
|
|
57
57
|
**Detailed installation guide:** [docs/installation.md](docs/installation.md)
|
|
58
58
|
|
|
59
|
-
**Additional guides:**
|
|
60
|
-
- **[Provider Configurations](docs/provider-configurations.md)** - Config examples for all supported providers
|
|
61
|
-
- **[Tmux Integration](docs/tmux-integration.md)** - Real-time agent monitoring with tmux
|
|
62
|
-
**[Quick Reference](docs/quick-reference.md)** - Config, fallback behavior, skills, MCPs
|
|
63
|
-
|
|
64
59
|
### ✅ Verify Your Setup
|
|
65
60
|
|
|
66
61
|
After installation and authentication, verify all agents are configured and responding:
|
|
@@ -115,7 +110,7 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
115
110
|
</tr>
|
|
116
111
|
<tr>
|
|
117
112
|
<td colspan="2">
|
|
118
|
-
<b>Recommended Models:</b> <code>openai/gpt-5.4</code> <code>
|
|
113
|
+
<b>Recommended Models:</b> <code>openai/gpt-5.4</code> <code>anthropic/claude-opus-4.6</code>
|
|
119
114
|
</td>
|
|
120
115
|
</tr>
|
|
121
116
|
</table>
|
|
@@ -151,7 +146,7 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
151
146
|
</tr>
|
|
152
147
|
<tr>
|
|
153
148
|
<td colspan="2">
|
|
154
|
-
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>
|
|
149
|
+
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo</code> <code>openai/gpt-5.4-mini</code>
|
|
155
150
|
</td>
|
|
156
151
|
</tr>
|
|
157
152
|
</table>
|
|
@@ -182,12 +177,53 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
182
177
|
</tr>
|
|
183
178
|
<tr>
|
|
184
179
|
<td colspan="2">
|
|
185
|
-
<b>Default Model:</b> <code>openai/gpt-5.4</code>
|
|
180
|
+
<b>Default Model:</b> <code>openai/gpt-5.4 (high)</code>
|
|
181
|
+
</td>
|
|
182
|
+
</tr>
|
|
183
|
+
<tr>
|
|
184
|
+
<td colspan="2">
|
|
185
|
+
<b>Recommended Models:</b> <code>openai/gpt-5.4 (high)</code> <code>google/gemini-3.1-pro-preview (high)</code>
|
|
186
|
+
</td>
|
|
187
|
+
</tr>
|
|
188
|
+
</table>
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
### Council: The Chorus of Minds
|
|
193
|
+
|
|
194
|
+
<table>
|
|
195
|
+
<tr>
|
|
196
|
+
<td width="30%" align="center" valign="top">
|
|
197
|
+
<img src="img/council.png" width="240" style="border-radius: 10px;">
|
|
198
|
+
<br><sub><i>Many minds, one verdict.</i></sub>
|
|
199
|
+
</td>
|
|
200
|
+
<td width="70%" valign="top">
|
|
201
|
+
The Council is not a lone being but a chamber of minds summoned when one answer is not enough. It sends your question to multiple models in parallel, gathers their competing judgments, and places them before a master who distills the strongest ideas into a single verdict. Where a solitary agent may miss a path, the Council cross-examines possibility itself.
|
|
202
|
+
</td>
|
|
203
|
+
</tr>
|
|
204
|
+
<tr>
|
|
205
|
+
<td colspan="2">
|
|
206
|
+
<b>Role:</b> <code>Multi-LLM consensus and synthesis</code>
|
|
207
|
+
</td>
|
|
208
|
+
</tr>
|
|
209
|
+
<tr>
|
|
210
|
+
<td colspan="2">
|
|
211
|
+
<b>Prompt:</b> <a href="src/agents/council.ts"><code>council.ts</code></a>
|
|
186
212
|
</td>
|
|
187
213
|
</tr>
|
|
188
214
|
<tr>
|
|
189
215
|
<td colspan="2">
|
|
190
|
-
<b>
|
|
216
|
+
<b>Guide:</b> <a href="docs/council.md"><code>docs/council.md</code></a>
|
|
217
|
+
</td>
|
|
218
|
+
</tr>
|
|
219
|
+
<tr>
|
|
220
|
+
<td colspan="2">
|
|
221
|
+
<b>Default Setup:</b> <code>Config-driven</code> — council master + councillors are chosen from your configured preset
|
|
222
|
+
</td>
|
|
223
|
+
</tr>
|
|
224
|
+
<tr>
|
|
225
|
+
<td colspan="2">
|
|
226
|
+
<b>Recommended Setup:</b> <code>Strong master</code> + <code>diverse councillors</code> across providers
|
|
191
227
|
</td>
|
|
192
228
|
</tr>
|
|
193
229
|
</table>
|
|
@@ -223,7 +259,7 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
223
259
|
</tr>
|
|
224
260
|
<tr>
|
|
225
261
|
<td colspan="2">
|
|
226
|
-
<b>Recommended Models:</b> <code>
|
|
262
|
+
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo</code> <code>openai/gpt-5.4-mini</code>
|
|
227
263
|
</td>
|
|
228
264
|
</tr>
|
|
229
265
|
</table>
|
|
@@ -254,12 +290,12 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
254
290
|
</tr>
|
|
255
291
|
<tr>
|
|
256
292
|
<td colspan="2">
|
|
257
|
-
<b>Default Model:</b> <code>
|
|
293
|
+
<b>Default Model:</b> <code>openai/gpt-5.4-mini</code>
|
|
258
294
|
</td>
|
|
259
295
|
</tr>
|
|
260
296
|
<tr>
|
|
261
297
|
<td colspan="2">
|
|
262
|
-
<b>Recommended Models:</b> <code>google/gemini-3.1-pro-preview</code>
|
|
298
|
+
<b>Recommended Models:</b> <code>google/gemini-3.1-pro-preview</code> <code>kimi-for-coding/k2p5</code>
|
|
263
299
|
</td>
|
|
264
300
|
</tr>
|
|
265
301
|
</table>
|
|
@@ -295,7 +331,7 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
295
331
|
</tr>
|
|
296
332
|
<tr>
|
|
297
333
|
<td colspan="2">
|
|
298
|
-
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>
|
|
334
|
+
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo</code> <code>openai/gpt-5.4-mini</code>
|
|
299
335
|
</td>
|
|
300
336
|
</tr>
|
|
301
337
|
</table>
|
|
@@ -304,12 +340,35 @@ If any agent fails to respond, check your provider authentication and config fil
|
|
|
304
340
|
|
|
305
341
|
## 📚 Documentation
|
|
306
342
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
**[
|
|
343
|
+
### 🚀 Getting Started
|
|
344
|
+
|
|
345
|
+
| Doc | Contents |
|
|
346
|
+
|-----|----------|
|
|
347
|
+
| **[Installation Guide](docs/installation.md)** | CLI flags, `--reset`, auth, troubleshooting |
|
|
348
|
+
| **[Provider Configurations](docs/provider-configurations.md)** | OpenAI, Kimi, Copilot, ZAI, Fireworks AI — mixing providers, fallback chains |
|
|
349
|
+
|
|
350
|
+
### ✨ Features
|
|
351
|
+
|
|
352
|
+
| Feature | Doc | What it does |
|
|
353
|
+
|---------|-----|--------------|
|
|
354
|
+
| **Council** | [council.md](docs/council.md) | Run N models in parallel, synthesize one answer (`@council`) |
|
|
355
|
+
| **Tmux Integration** | [tmux-integration.md](docs/tmux-integration.md) | Watch agents work in real-time with auto-spawned panes |
|
|
356
|
+
| **Cartography Skill** | [cartography.md](docs/cartography.md) | Auto-generate hierarchical codemaps for any codebase |
|
|
357
|
+
|
|
358
|
+
### ⚙️ Config & Reference
|
|
359
|
+
|
|
360
|
+
| Doc | Contents |
|
|
361
|
+
|-----|----------|
|
|
362
|
+
| **[Skills](docs/skills.md)** | `simplify`, `agent-browser`, `cartography` — assignment syntax |
|
|
363
|
+
| **[MCPs](docs/mcps.md)** | `websearch`, `context7`, `grep_app` — permissions per agent |
|
|
364
|
+
| **[Tools](docs/tools.md)** | Background tasks, LSP, code search, formatters |
|
|
365
|
+
| **[Configuration](docs/configuration.md)** | Config files, prompt overriding, JSONC, full option reference |
|
|
366
|
+
|
|
367
|
+
### 💡 Author's Setup
|
|
368
|
+
|
|
369
|
+
| Doc | Contents |
|
|
370
|
+
|-----|----------|
|
|
371
|
+
| **[Author's Preset](docs/authors-preset.md)** | The exact config the author runs daily — OpenAI + Fireworks AI + GitHub Copilot |
|
|
313
372
|
|
|
314
373
|
---
|
|
315
374
|
|
package/dist/index.js
CHANGED
|
@@ -17579,13 +17579,12 @@ You are an AI coding orchestrator that optimizes for quality, speed, cost, and r
|
|
|
17579
17579
|
- **Rule of thumb:** "How does this library work?" \u2192 @librarian. "How does programming work?" \u2192 yourself.
|
|
17580
17580
|
|
|
17581
17581
|
@oracle
|
|
17582
|
-
- Role: Strategic advisor for high-stakes decisions and persistent problems
|
|
17583
|
-
- Stats:
|
|
17584
|
-
- Capabilities: Deep architectural reasoning, system-level trade-offs, complex debugging
|
|
17585
|
-
-
|
|
17586
|
-
- **Delegate when:** Major architectural decisions with long-term impact \u2022 Problems persisting after 2+ fix attempts \u2022 High-risk multi-system refactors \u2022 Costly trade-offs (performance vs maintainability) \u2022 Complex debugging with unclear root cause \u2022 Security/scalability/data integrity decisions \u2022 Genuinely uncertain and cost of wrong choice is high
|
|
17582
|
+
- Role: Strategic advisor for high-stakes decisions and persistent problems, code reviewer
|
|
17583
|
+
- Stats: 5x better decision maker, problem solver, investigator than orchestrator, 0.8x speed of orchestrator, same cost.
|
|
17584
|
+
- Capabilities: Deep architectural reasoning, system-level trade-offs, complex debugging, code review
|
|
17585
|
+
- **Delegate when:** Major architectural decisions with long-term impact \u2022 Problems persisting after 2+ fix attempts \u2022 High-risk multi-system refactors \u2022 Costly trade-offs (performance vs maintainability) \u2022 Complex debugging with unclear root cause \u2022 Security/scalability/data integrity decisions \u2022 Genuinely uncertain and cost of wrong choice is high \u2022 When a workflow calls for a **reviewer** subagent
|
|
17587
17586
|
- **Don't delegate when:** Routine decisions you're confident about \u2022 First bug fix attempt \u2022 Straightforward trade-offs \u2022 Tactical "how" vs strategic "should" \u2022 Time-sensitive good-enough decisions \u2022 Quick research/testing can answer
|
|
17588
|
-
- **Rule of thumb:** Need senior architect review? \u2192 @oracle. Just do it and PR? \u2192 yourself.
|
|
17587
|
+
- **Rule of thumb:** Need senior architect review? \u2192 @oracle. Need code review? \u2192 @oracle. Just do it and PR? \u2192 yourself.
|
|
17589
17588
|
|
|
17590
17589
|
@designer
|
|
17591
17590
|
- Role: UI/UX specialist for intentional, polished experiences
|
package/package.json
CHANGED