@austinthesing/magic-shell 0.2.17 → 0.2.19
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 +8 -7
- package/dist/cli.js +11752 -8339
- package/dist/index.js +1927 -647
- package/dist/tui.js +11752 -8339
- 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
|
|
@@ -183,19 +186,17 @@ OpenCode Zen provides curated models optimized for coding tasks, including **fre
|
|
|
183
186
|
|
|
184
187
|
- `kimi-k2.6-free` - Moonshot's latest model (default)
|
|
185
188
|
- `deepseek-v4-flash-free` - DeepSeek's latest fast model
|
|
186
|
-
- `minimax-m2.5-free` - Free MiniMax model
|
|
187
189
|
|
|
188
190
|
**Premium Models:**
|
|
189
191
|
|
|
190
|
-
- Claude Sonnet 4.
|
|
191
|
-
- Claude Haiku 4.5
|
|
192
|
+
- Claude Sonnet 4.6, Claude Opus 4.7, Claude Haiku 4.5
|
|
192
193
|
- Kimi K2.6, Kimi K2 Thinking
|
|
193
|
-
- DeepSeek V4 Pro
|
|
194
|
+
- DeepSeek V4 Pro
|
|
194
195
|
- GLM 5.1
|
|
195
196
|
- MiMo V2.5, MiMo V2.5 Pro
|
|
196
197
|
- MiniMax M2.7
|
|
197
|
-
- Gemini 3 Pro, Gemini 3 Flash
|
|
198
|
-
- GPT 5.
|
|
198
|
+
- Gemini 3.1 Pro, Gemini 3 Flash
|
|
199
|
+
- GPT 5.5, GPT 5.5 Pro, GPT 5.4 Mini/Nano, GPT 5.3 Codex
|
|
199
200
|
- And more...
|
|
200
201
|
|
|
201
202
|
Get your API key at: https://opencode.ai/auth
|