@austinthesing/magic-shell 0.2.4 → 0.2.5

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 CHANGED
@@ -176,7 +176,7 @@ OpenCode Zen provides curated models optimized for coding tasks, including **fre
176
176
  **Free Models:**
177
177
  - `big-pickle` - Stealth model (default)
178
178
  - `grok-code` - xAI's Grok Code Fast 1
179
- - `glm-4.7-free` - GLM 4.7
179
+ - `glm-4.7` - GLM 4.7
180
180
  - `minimax-m2.1-free` - MiniMax M2.1
181
181
 
182
182
  **Premium Models:**
package/dist/cli.js CHANGED
@@ -20569,13 +20569,12 @@ var OPENCODE_ZEN_MODELS = [
20569
20569
  free: true
20570
20570
  },
20571
20571
  {
20572
- id: "glm-4.7-free",
20572
+ id: "glm-4.7",
20573
20573
  name: "GLM 4.7",
20574
- description: "Free GLM model (limited time)",
20574
+ description: "GLM model",
20575
20575
  category: "fast",
20576
20576
  provider: "opencode-zen",
20577
- contextLength: 128000,
20578
- free: true
20577
+ contextLength: 128000
20579
20578
  },
20580
20579
  {
20581
20580
  id: "minimax-m2.1-free",
@@ -22391,7 +22390,7 @@ function getHelpBarContent() {
22391
22390
  function getWelcomeMessage() {
22392
22391
  const providerName = config.provider === "opencode-zen" ? "OpenCode Zen" : "OpenRouter";
22393
22392
  const freeNote = config.provider === "opencode-zen" ? `
22394
- Free models: big-pickle, glm-4.7-free` : "";
22393
+ Free models: big-pickle` : "";
22395
22394
  return `Ready. Using ${providerName}.${freeNote}
22396
22395
  Type what you want to do, or press Ctrl+X P for command palette.`;
22397
22396
  }
package/dist/index.js CHANGED
@@ -112,13 +112,12 @@ var OPENCODE_ZEN_MODELS = [
112
112
  free: true
113
113
  },
114
114
  {
115
- id: "glm-4.7-free",
115
+ id: "glm-4.7",
116
116
  name: "GLM 4.7",
117
- description: "Free GLM model (limited time)",
117
+ description: "GLM model",
118
118
  category: "fast",
119
119
  provider: "opencode-zen",
120
- contextLength: 128000,
121
- free: true
120
+ contextLength: 128000
122
121
  },
123
122
  {
124
123
  id: "minimax-m2.1-free",
package/dist/tui.js CHANGED
@@ -20569,13 +20569,12 @@ var OPENCODE_ZEN_MODELS = [
20569
20569
  free: true
20570
20570
  },
20571
20571
  {
20572
- id: "glm-4.7-free",
20572
+ id: "glm-4.7",
20573
20573
  name: "GLM 4.7",
20574
- description: "Free GLM model (limited time)",
20574
+ description: "GLM model",
20575
20575
  category: "fast",
20576
20576
  provider: "opencode-zen",
20577
- contextLength: 128000,
20578
- free: true
20577
+ contextLength: 128000
20579
20578
  },
20580
20579
  {
20581
20580
  id: "minimax-m2.1-free",
@@ -22391,7 +22390,7 @@ function getHelpBarContent() {
22391
22390
  function getWelcomeMessage() {
22392
22391
  const providerName = config.provider === "opencode-zen" ? "OpenCode Zen" : "OpenRouter";
22393
22392
  const freeNote = config.provider === "opencode-zen" ? `
22394
- Free models: big-pickle, glm-4.7-free` : "";
22393
+ Free models: big-pickle` : "";
22395
22394
  return `Ready. Using ${providerName}.${freeNote}
22396
22395
  Type what you want to do, or press Ctrl+X P for command palette.`;
22397
22396
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@austinthesing/magic-shell",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Natural language to terminal commands with safety features. Supports OpenCode Zen (with free models) and OpenRouter.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",