@austinthesing/magic-shell 0.2.18 → 0.2.20
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 +14 -9
- package/dist/cli.js +640 -183
- package/dist/index.js +1119 -424
- package/dist/tui.js +640 -183
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -105,6 +105,7 @@ mshell
|
|
|
105
105
|
| `msh --list-custom` | List custom models |
|
|
106
106
|
| `msh --remove-model <id>` | Remove custom model |
|
|
107
107
|
| `msh --provider <name>` | Set provider (opencode-zen or openrouter) |
|
|
108
|
+
| `msh --thinking <level>` | Set thinking level (off, low, medium, high) |
|
|
108
109
|
| `msh --themes` | List available themes |
|
|
109
110
|
| `msh --theme <name>` | Set color theme |
|
|
110
111
|
| `msh --repo-context` | Enable project context detection |
|
|
@@ -184,21 +185,24 @@ OpenCode Zen provides curated models optimized for coding tasks, including **fre
|
|
|
184
185
|
|
|
185
186
|
**Free Models:**
|
|
186
187
|
|
|
187
|
-
- `
|
|
188
|
-
- `
|
|
189
|
-
- `
|
|
188
|
+
- `minimax-m2.5-free` - MiniMax's free model (default)
|
|
189
|
+
- `ling-2.6-flash-free` - Ling's free flash model
|
|
190
|
+
- `hy3-preview-free` - Hy3 preview model
|
|
191
|
+
- `nemotron-3-super-free` - NVIDIA Nemotron free trial model
|
|
192
|
+
- `trinity-large-preview-free` - Trinity large preview model
|
|
193
|
+
- `big-pickle` - OpenCode stealth model
|
|
194
|
+
- `gpt-5-nano` - OpenAI's free lightweight GPT model
|
|
190
195
|
|
|
191
196
|
**Premium Models:**
|
|
192
197
|
|
|
193
|
-
- Claude Sonnet 4.
|
|
194
|
-
- Claude Haiku 4.5
|
|
198
|
+
- Claude Sonnet 4.6, Claude Opus 4.7, Claude Haiku 4.5
|
|
195
199
|
- Kimi K2.6, Kimi K2 Thinking
|
|
196
|
-
- DeepSeek V4 Pro
|
|
200
|
+
- DeepSeek V4 Pro
|
|
197
201
|
- GLM 5.1
|
|
198
202
|
- MiMo V2.5, MiMo V2.5 Pro
|
|
199
203
|
- MiniMax M2.7
|
|
200
|
-
- Gemini 3 Pro, Gemini 3 Flash
|
|
201
|
-
- GPT 5.
|
|
204
|
+
- Gemini 3.1 Pro, Gemini 3 Flash
|
|
205
|
+
- GPT 5.5, GPT 5.5 Pro, GPT 5.4 Mini/Nano, GPT 5.3 Codex
|
|
202
206
|
- And more...
|
|
203
207
|
|
|
204
208
|
Get your API key at: https://opencode.ai/auth
|
|
@@ -299,7 +303,8 @@ Configuration is stored in `~/.magic-shell/config.json`.
|
|
|
299
303
|
```json
|
|
300
304
|
{
|
|
301
305
|
"provider": "opencode-zen",
|
|
302
|
-
"defaultModel": "
|
|
306
|
+
"defaultModel": "minimax-m2.5-free",
|
|
307
|
+
"thinkingLevel": "low",
|
|
303
308
|
"safetyLevel": "moderate",
|
|
304
309
|
"dryRunByDefault": false,
|
|
305
310
|
"repoContext": false,
|