@austinthesing/magic-shell 0.2.15 → 0.2.17
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 +19 -15
- package/dist/cli.js +22767 -8198
- package/dist/index.js +4182 -908
- package/dist/tui.js +22767 -8198
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -181,18 +181,19 @@ OpenCode Zen provides curated models optimized for coding tasks, including **fre
|
|
|
181
181
|
|
|
182
182
|
**Free Models:**
|
|
183
183
|
|
|
184
|
-
- `
|
|
185
|
-
- `
|
|
186
|
-
- `minimax-m2.
|
|
187
|
-
- `kimi-k2.5` - Moonshot's latest model
|
|
184
|
+
- `kimi-k2.6-free` - Moonshot's latest model (default)
|
|
185
|
+
- `deepseek-v4-flash-free` - DeepSeek's latest fast model
|
|
186
|
+
- `minimax-m2.5-free` - Free MiniMax model
|
|
188
187
|
|
|
189
188
|
**Premium Models:**
|
|
190
189
|
|
|
191
190
|
- Claude Sonnet 4.5, Claude Opus 4.5
|
|
192
191
|
- Claude Haiku 4.5
|
|
193
|
-
- Kimi K2, Kimi K2 Thinking
|
|
194
|
-
-
|
|
195
|
-
- GLM
|
|
192
|
+
- Kimi K2.6, Kimi K2 Thinking
|
|
193
|
+
- DeepSeek V4 Pro, DeepSeek V4 Flash
|
|
194
|
+
- GLM 5.1
|
|
195
|
+
- MiMo V2.5, MiMo V2.5 Pro
|
|
196
|
+
- MiniMax M2.7
|
|
196
197
|
- Gemini 3 Pro, Gemini 3 Flash
|
|
197
198
|
- GPT 5.2, GPT 5.2 Codex, GPT 5.1 series
|
|
198
199
|
- And more...
|
|
@@ -205,16 +206,15 @@ Access to a wide variety of models from different providers.
|
|
|
205
206
|
|
|
206
207
|
**Free Models:**
|
|
207
208
|
|
|
208
|
-
-
|
|
209
|
-
- DeepSeek V3
|
|
209
|
+
- MiniMax M2.5 Free
|
|
210
210
|
|
|
211
211
|
**Premium Models:**
|
|
212
212
|
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
- DeepSeek
|
|
216
|
-
- GLM
|
|
217
|
-
-
|
|
213
|
+
- MiMo V2.5, MiMo V2.5 Pro
|
|
214
|
+
- Kimi K2.6, Kimi K2 Thinking
|
|
215
|
+
- DeepSeek V4 Pro, DeepSeek V4 Flash
|
|
216
|
+
- GLM 5.1, GLM 5 Turbo
|
|
217
|
+
- MiniMax M2.7
|
|
218
218
|
- And many more...
|
|
219
219
|
|
|
220
220
|
Get your API key at: https://openrouter.ai/keys
|
|
@@ -296,7 +296,7 @@ Configuration is stored in `~/.magic-shell/config.json`.
|
|
|
296
296
|
```json
|
|
297
297
|
{
|
|
298
298
|
"provider": "opencode-zen",
|
|
299
|
-
"defaultModel": "
|
|
299
|
+
"defaultModel": "kimi-k2.6-free",
|
|
300
300
|
"safetyLevel": "moderate",
|
|
301
301
|
"dryRunByDefault": false,
|
|
302
302
|
"repoContext": false,
|
|
@@ -575,6 +575,10 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
575
575
|
|
|
576
576
|
## Release Notes
|
|
577
577
|
|
|
578
|
+
### v0.2.17 - Dependency Maintenance
|
|
579
|
+
- Updated published CLI dependencies to current releases
|
|
580
|
+
- Fixed TUI input typing compatibility after the `@opentui/core` upgrade
|
|
581
|
+
|
|
578
582
|
### v0.2.15 - Slash Command Support
|
|
579
583
|
- Added `/` command support in TUI mode (e.g., `/help`, `/clear`)
|
|
580
584
|
- Both `!` and `/` prefixes now work for all TUI commands
|