opencommand-plugin 0.0.15 → 0.0.16

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
@@ -154,6 +154,12 @@ De publish workflow staat in `.github/workflows/npm-publish.yml`. Deze workflow
154
154
 
155
155
  ## Release notes
156
156
 
157
+ ### v0.0.16
158
+
159
+ - MiniMax M3 (`MiniMaxAI/MiniMax-M3`) toegevoegd aan de open-source/Go-plan modellen.
160
+ - Qwen 3.7 Max (`Qwen/Qwen3.7-Max`) toegevoegd aan de open-source/Go-plan modellen.
161
+ - CommandCode protocol headers bijgewerkt naar CLI-versie `0.27.0`.
162
+
157
163
  ### v0.0.12
158
164
 
159
165
  - OpenAI-compatible chat schema voor OpenCode requests.
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ const PROVIDER_NAME = "CommandCode";
11
11
  const PROVIDER_API_KEY_PLACEHOLDER = "opencommand";
12
12
  const DEFAULT_PROXY_BASE_URL = "http://localhost:3000/v1";
13
13
  const COMMAND_CODE_API_BASE_URL = "https://api.commandcode.ai";
14
- const COMMAND_CODE_CLIENT_VERSION = "0.26.3";
14
+ const COMMAND_CODE_CLIENT_VERSION = "0.27.0";
15
15
  const COMMAND_CODE_PROJECT_SLUG = "opencommand";
16
16
  const MODEL_CACHE_MAX_AGE_MS = 10 * 60 * 1000;
17
17
  function isDebugEnabled() {
@@ -80,6 +80,14 @@ export const COMMAND_CODE_GO_PLAN_MODELS = [
80
80
  output: 8192,
81
81
  cost: { input: 1.0, output: 3.2, cache_read: 0.2 },
82
82
  },
83
+ {
84
+ id: "MiniMaxAI/MiniMax-M3",
85
+ name: "MiniMax M3",
86
+ description: "Frontier coding, agents and native multimodality",
87
+ context: 1000000,
88
+ output: 8192,
89
+ cost: { input: 0.6, output: 2.4 },
90
+ },
83
91
  {
84
92
  id: "MiniMaxAI/MiniMax-M2.7",
85
93
  name: "MiniMax M2.7",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencommand-plugin",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "OpenCommand - CommandCode API Plugin for OpenCode",
5
5
  "main": "./bin/opencode-plugin.js",
6
6
  "module": "./bin/opencode-plugin.js",