@austinthesing/magic-shell 0.2.16 → 0.2.18
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 +23 -16
- package/dist/cli.js +30529 -12868
- package/dist/index.js +5049 -1063
- package/dist/tui.js +30529 -12868
- package/package.json +11 -10
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ Magic Shell is an open-source CLI tool that translates plain English (or any nat
|
|
|
23
23
|
|
|
24
24
|
### Via Package Manager (Recommended)
|
|
25
25
|
|
|
26
|
+
**Prerequisite:** Magic Shell runs on the [Bun](https://bun.sh) runtime. Install Bun first,
|
|
27
|
+
even if you install the package with npm, pnpm, or yarn.
|
|
28
|
+
|
|
26
29
|
```bash
|
|
27
30
|
# bun (recommended)
|
|
28
31
|
bun add -g @austinthesing/magic-shell
|
|
@@ -39,7 +42,7 @@ yarn global add @austinthesing/magic-shell
|
|
|
39
42
|
|
|
40
43
|
### From Source
|
|
41
44
|
|
|
42
|
-
**
|
|
45
|
+
**Prerequisite:** [Bun](https://bun.sh) runtime (v1.3.9 or higher)
|
|
43
46
|
|
|
44
47
|
```bash
|
|
45
48
|
# Clone the repository
|
|
@@ -181,18 +184,19 @@ OpenCode Zen provides curated models optimized for coding tasks, including **fre
|
|
|
181
184
|
|
|
182
185
|
**Free Models:**
|
|
183
186
|
|
|
184
|
-
- `
|
|
185
|
-
- `
|
|
186
|
-
- `minimax-m2.
|
|
187
|
-
- `kimi-k2.5` - Moonshot's latest model
|
|
187
|
+
- `kimi-k2.6-free` - Moonshot's latest model (default)
|
|
188
|
+
- `deepseek-v4-flash-free` - DeepSeek's latest fast model
|
|
189
|
+
- `minimax-m2.5-free` - Free MiniMax model
|
|
188
190
|
|
|
189
191
|
**Premium Models:**
|
|
190
192
|
|
|
191
193
|
- Claude Sonnet 4.5, Claude Opus 4.5
|
|
192
194
|
- Claude Haiku 4.5
|
|
193
|
-
- Kimi K2, Kimi K2 Thinking
|
|
194
|
-
-
|
|
195
|
-
- GLM
|
|
195
|
+
- Kimi K2.6, Kimi K2 Thinking
|
|
196
|
+
- DeepSeek V4 Pro, DeepSeek V4 Flash
|
|
197
|
+
- GLM 5.1
|
|
198
|
+
- MiMo V2.5, MiMo V2.5 Pro
|
|
199
|
+
- MiniMax M2.7
|
|
196
200
|
- Gemini 3 Pro, Gemini 3 Flash
|
|
197
201
|
- GPT 5.2, GPT 5.2 Codex, GPT 5.1 series
|
|
198
202
|
- And more...
|
|
@@ -205,16 +209,15 @@ Access to a wide variety of models from different providers.
|
|
|
205
209
|
|
|
206
210
|
**Free Models:**
|
|
207
211
|
|
|
208
|
-
-
|
|
209
|
-
- DeepSeek V3
|
|
212
|
+
- MiniMax M2.5 Free
|
|
210
213
|
|
|
211
214
|
**Premium Models:**
|
|
212
215
|
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
- DeepSeek
|
|
216
|
-
- GLM
|
|
217
|
-
-
|
|
216
|
+
- MiMo V2.5, MiMo V2.5 Pro
|
|
217
|
+
- Kimi K2.6, Kimi K2 Thinking
|
|
218
|
+
- DeepSeek V4 Pro, DeepSeek V4 Flash
|
|
219
|
+
- GLM 5.1, GLM 5 Turbo
|
|
220
|
+
- MiniMax M2.7
|
|
218
221
|
- And many more...
|
|
219
222
|
|
|
220
223
|
Get your API key at: https://openrouter.ai/keys
|
|
@@ -296,7 +299,7 @@ Configuration is stored in `~/.magic-shell/config.json`.
|
|
|
296
299
|
```json
|
|
297
300
|
{
|
|
298
301
|
"provider": "opencode-zen",
|
|
299
|
-
"defaultModel": "
|
|
302
|
+
"defaultModel": "kimi-k2.6-free",
|
|
300
303
|
"safetyLevel": "moderate",
|
|
301
304
|
"dryRunByDefault": false,
|
|
302
305
|
"repoContext": false,
|
|
@@ -575,6 +578,10 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
575
578
|
|
|
576
579
|
## Release Notes
|
|
577
580
|
|
|
581
|
+
### v0.2.17 - Dependency Maintenance
|
|
582
|
+
- Updated published CLI dependencies to current releases
|
|
583
|
+
- Fixed TUI input typing compatibility after the `@opentui/core` upgrade
|
|
584
|
+
|
|
578
585
|
### v0.2.15 - Slash Command Support
|
|
579
586
|
- Added `/` command support in TUI mode (e.g., `/help`, `/clear`)
|
|
580
587
|
- Both `!` and `/` prefixes now work for all TUI commands
|