oh-my-opencode-medium 0.8.2 → 0.8.3
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 +57 -24
- package/dist/cli/index.js +177 -2518
- package/dist/config/schema.d.ts +3 -0
- package/dist/index.js +100 -48
- package/dist/utils/internal-initiator.d.ts +1 -1
- package/oh-my-opencode-slim.schema.json +448 -0
- package/package.json +8 -6
- package/src/skills/cartography/SKILL.md +23 -0
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
> **Forked from [`alvinunreal/oh-my-opencode-slim`](https://github.com/alvinunreal/oh-my-opencode-slim)** and independently maintained by **`SamWang32191`**. Issues for this fork should be filed at [`SamWang32191/oh-my-opencode-
|
|
10
|
+
> **Forked from [`alvinunreal/oh-my-opencode-slim`](https://github.com/alvinunreal/oh-my-opencode-slim)** and independently maintained by **`SamWang32191`**. Issues for this fork should be filed at [`SamWang32191/oh-my-opencode-medium`](https://github.com/SamWang32191/oh-my-opencode-medium/issues).
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -35,27 +35,30 @@ The installer no longer auto-reads old slim config files—manual renaming is re
|
|
|
35
35
|
bunx oh-my-opencode-medium@latest install
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
The installer
|
|
38
|
+
The installer generates an OpenAI configuration by default (using `gpt-5.4` and `gpt-5-codex`). No provider questions asked.
|
|
39
|
+
|
|
40
|
+
For non-interactive mode:
|
|
39
41
|
|
|
40
42
|
```bash
|
|
41
|
-
bunx oh-my-opencode-medium@latest install --no-tui --
|
|
43
|
+
bunx oh-my-opencode-medium@latest install --no-tui --tmux=no --skills=yes
|
|
42
44
|
```
|
|
43
45
|
|
|
44
|
-
|
|
46
|
+
### For Alternative Providers
|
|
45
47
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
48
|
+
The default configuration uses OpenAI. To use Kimi, GitHub Copilot, or ZAI Coding Plan, see **[Provider Configurations](docs/provider-configurations.md)** for step-by-step instructions and config examples.
|
|
49
|
+
|
|
50
|
+
### JSON Schema
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
An official JSON Schema is included in the package for editor validation and autocomplete. Add a `$schema` reference to your config file:
|
|
51
53
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
```jsonc
|
|
55
|
+
{
|
|
56
|
+
"$schema": "https://unpkg.com/oh-my-opencode-medium@latest/oh-my-opencode-slim.schema.json",
|
|
57
|
+
// your config...
|
|
58
|
+
}
|
|
59
|
+
```
|
|
57
60
|
|
|
58
|
-
|
|
61
|
+
This enables autocomplete and inline validation in VS Code, Neovim, and other editors that support JSON Schema.
|
|
59
62
|
|
|
60
63
|
### For LLM Agents
|
|
61
64
|
|
|
@@ -63,13 +66,13 @@ Paste this into any coding agent:
|
|
|
63
66
|
|
|
64
67
|
```
|
|
65
68
|
Install and configure by following the instructions here:
|
|
66
|
-
https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-
|
|
69
|
+
https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-medium/main/README.md
|
|
67
70
|
```
|
|
68
71
|
|
|
69
72
|
**Detailed installation guide:** [docs/installation.md](docs/installation.md)
|
|
70
73
|
|
|
71
74
|
**Additional guides:**
|
|
72
|
-
- **[
|
|
75
|
+
- **[Provider Configurations](docs/provider-configurations.md)** - Config examples for all supported providers
|
|
73
76
|
- **[Tmux Integration](docs/tmux-integration.md)** - Real-time agent monitoring with tmux
|
|
74
77
|
|
|
75
78
|
---
|
|
@@ -100,7 +103,12 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
100
103
|
</tr>
|
|
101
104
|
<tr>
|
|
102
105
|
<td colspan="2">
|
|
103
|
-
<b>
|
|
106
|
+
<b>Default Model:</b> <code>openai/gpt-5.4</code>
|
|
107
|
+
</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td colspan="2">
|
|
111
|
+
<b>Recommended Models:</b> <code>openai/gpt-5.4</code> <code>kimi-for-coding/k2p5</code>
|
|
104
112
|
</td>
|
|
105
113
|
</tr>
|
|
106
114
|
</table>
|
|
@@ -131,7 +139,12 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
131
139
|
</tr>
|
|
132
140
|
<tr>
|
|
133
141
|
<td colspan="2">
|
|
134
|
-
<b>
|
|
142
|
+
<b>Default Model:</b> <code>openai/gpt-5-codex</code>
|
|
143
|
+
</td>
|
|
144
|
+
</tr>
|
|
145
|
+
<tr>
|
|
146
|
+
<td colspan="2">
|
|
147
|
+
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>google/gemini-3.1-pro-preview</code> <code>openai/gpt-5-codex</code>
|
|
135
148
|
</td>
|
|
136
149
|
</tr>
|
|
137
150
|
</table>
|
|
@@ -162,7 +175,12 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
162
175
|
</tr>
|
|
163
176
|
<tr>
|
|
164
177
|
<td colspan="2">
|
|
165
|
-
<b>
|
|
178
|
+
<b>Default Model:</b> <code>openai/gpt-5.4</code>
|
|
179
|
+
</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td colspan="2">
|
|
183
|
+
<b>Recommended Models:</b> <code>openai/gpt-5.4</code> <code>kimi-for-coding/k2p5</code>
|
|
166
184
|
</td>
|
|
167
185
|
</tr>
|
|
168
186
|
</table>
|
|
@@ -193,7 +211,12 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
193
211
|
</tr>
|
|
194
212
|
<tr>
|
|
195
213
|
<td colspan="2">
|
|
196
|
-
<b>
|
|
214
|
+
<b>Default Model:</b> <code>openai/gpt-5-codex</code>
|
|
215
|
+
</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td colspan="2">
|
|
219
|
+
<b>Recommended Models:</b> <code>google/gemini-3.1-pro-preview</code> <code>openai/gpt-5-codex</code>
|
|
197
220
|
</td>
|
|
198
221
|
</tr>
|
|
199
222
|
</table>
|
|
@@ -224,7 +247,12 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
224
247
|
</tr>
|
|
225
248
|
<tr>
|
|
226
249
|
<td colspan="2">
|
|
227
|
-
<b>
|
|
250
|
+
<b>Default Model:</b> <code>kimi-for-coding/k2p5</code>
|
|
251
|
+
</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td colspan="2">
|
|
255
|
+
<b>Recommended Models:</b> <code>google/gemini-3.1-pro-preview</code>
|
|
228
256
|
</td>
|
|
229
257
|
</tr>
|
|
230
258
|
</table>
|
|
@@ -255,7 +283,12 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
255
283
|
</tr>
|
|
256
284
|
<tr>
|
|
257
285
|
<td colspan="2">
|
|
258
|
-
<b>
|
|
286
|
+
<b>Default Model:</b> <code>openai/gpt-5-codex</code>
|
|
287
|
+
</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td colspan="2">
|
|
291
|
+
<b>Recommended Models:</b> <code>cerebras/zai-glm-4.7</code> <code>google/gemini-3.1-pro-preview</code> <code>openai/gpt-5-codex</code>
|
|
259
292
|
</td>
|
|
260
293
|
</tr>
|
|
261
294
|
</table>
|
|
@@ -264,10 +297,10 @@ https://raw.githubusercontent.com/SamWang32191/oh-my-opencode-slim/main/README.m
|
|
|
264
297
|
|
|
265
298
|
## 📚 Documentation
|
|
266
299
|
|
|
267
|
-
- **[Quick Reference](docs/quick-reference.md)** -
|
|
300
|
+
- **[Quick Reference](docs/quick-reference.md)** - Skills, MCPs, Tools, Configuration
|
|
301
|
+
- **[Provider Configurations](docs/provider-configurations.md)** - Config examples for OpenAI, Kimi, Copilot, ZAI
|
|
268
302
|
- **[Installation Guide](docs/installation.md)** - Detailed installation and troubleshooting
|
|
269
303
|
- **[Cartography Skill](docs/cartography.md)** - Custom skill for repository mapping + codemap generation
|
|
270
|
-
- **[Antigravity Setup](docs/antigravity.md)** - Complete guide for Antigravity provider configuration
|
|
271
304
|
- **[Tmux Integration](docs/tmux-integration.md)** - Real-time agent monitoring with tmux
|
|
272
305
|
|
|
273
306
|
---
|