@brainervirus/opencode-commandcode 0.7.0 → 0.7.2
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/_version.txt +1 -1
- package/manifest.json +9 -9
- package/models.json +43 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.7.2] - 2026-08-31
|
|
11
|
+
|
|
12
|
+
## [0.7.1] - 2026-08-29
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Catalog refresh and post-release manifest PRs auto-merge when required CI is green.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Startup summary test reads the bundled command-code version from the manifest instead of pinning one release.
|
|
21
|
+
|
|
10
22
|
## [0.7.0] - 2026-08-28
|
|
11
23
|
|
|
12
24
|
### Changed
|
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ bun run check # oxlint + oxfmt + bun test + tsc (same stack as workit
|
|
|
84
84
|
bun run sync -- --remote # refresh models.json + manifest.json from command-code@latest
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
-
CI (`.github/workflows/catalog-sync.yml`) opens a PR every 6 hours when Command Code ships a new catalog.
|
|
87
|
+
CI (`.github/workflows/catalog-sync.yml`) opens a PR every 6 hours when Command Code ships a new catalog. That PR, and the post-release `chore/manifest-sync-v*` PR, auto-merge after **check (test)**, **check (typecheck)**, **check (lint)**, **check (format)**, and **check (pack)** are green. `.github/workflows/release.yml` then runs **semantic-release** (npm publish + GitHub Release + tag). Do not push to `main`.
|
|
88
88
|
|
|
89
89
|
The GitHub Actions secret name is `NPMJS` (same as workit). It is mapped to both `NPM_TOKEN` and `NODE_AUTH_TOKEN`. Use an npm **Automation** token (bypasses 2FA). A login token from `~/.npmrc` fails CI with `EOTP`. Catalog PRs get a real CI run when `RELEASE_SYNC_TOKEN` (or `CATALOG_PUSH_TOKEN`) is a PAT; `GITHUB_TOKEN` can open the PR but GitHub will not start workflows from that event.
|
|
90
90
|
|
package/_version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.39.0
|
package/manifest.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-08-
|
|
4
|
-
"pluginVersion": "0.
|
|
5
|
-
"commandCodeVersion": "1.
|
|
6
|
-
"commandCodeTarball": "https://registry.npmjs.org/command-code/-/command-code-1.
|
|
7
|
-
"modelCount":
|
|
8
|
-
"reasoningModelCount":
|
|
3
|
+
"generatedAt": "2026-08-31T18:01:07.465Z",
|
|
4
|
+
"pluginVersion": "0.7.1",
|
|
5
|
+
"commandCodeVersion": "1.39.0",
|
|
6
|
+
"commandCodeTarball": "https://registry.npmjs.org/command-code/-/command-code-1.39.0.tgz",
|
|
7
|
+
"modelCount": 66,
|
|
8
|
+
"reasoningModelCount": 55,
|
|
9
9
|
"extraction": {
|
|
10
10
|
"modelCatalog": "ok",
|
|
11
|
-
"costCatalog": "
|
|
11
|
+
"costCatalog": "cli",
|
|
12
12
|
"costCatalogError": null
|
|
13
13
|
},
|
|
14
14
|
"costSources": {
|
|
15
|
-
"cli":
|
|
16
|
-
"officialDocs":
|
|
15
|
+
"cli": 20,
|
|
16
|
+
"officialDocs": 41,
|
|
17
17
|
"thirdParty": 0,
|
|
18
18
|
"free": 5,
|
|
19
19
|
"fallback": 0,
|
package/models.json
CHANGED
|
@@ -390,6 +390,37 @@
|
|
|
390
390
|
]
|
|
391
391
|
}
|
|
392
392
|
},
|
|
393
|
+
{
|
|
394
|
+
"id": "deepseek/deepseek-v4-flash-fast",
|
|
395
|
+
"name": "DeepSeek V4 Flash Fast",
|
|
396
|
+
"tier": "open-source",
|
|
397
|
+
"reasoning": true,
|
|
398
|
+
"reasoningEfforts": [
|
|
399
|
+
"low",
|
|
400
|
+
"medium",
|
|
401
|
+
"high",
|
|
402
|
+
"max"
|
|
403
|
+
],
|
|
404
|
+
"tool_call": true,
|
|
405
|
+
"cost": {
|
|
406
|
+
"input": 0.28,
|
|
407
|
+
"output": 0.56,
|
|
408
|
+
"cache_read": 0.07
|
|
409
|
+
},
|
|
410
|
+
"limit": {
|
|
411
|
+
"context": 1000000,
|
|
412
|
+
"output": 65536
|
|
413
|
+
},
|
|
414
|
+
"attachment": false,
|
|
415
|
+
"modalities": {
|
|
416
|
+
"input": [
|
|
417
|
+
"text"
|
|
418
|
+
],
|
|
419
|
+
"output": [
|
|
420
|
+
"text"
|
|
421
|
+
]
|
|
422
|
+
}
|
|
423
|
+
},
|
|
393
424
|
{
|
|
394
425
|
"id": "deepseek/deepseek-v4-flash-vision-exp",
|
|
395
426
|
"name": "DeepSeek V4 Flash Vision (exp)",
|
|
@@ -627,10 +658,10 @@
|
|
|
627
658
|
],
|
|
628
659
|
"tool_call": true,
|
|
629
660
|
"cost": {
|
|
630
|
-
"input":
|
|
631
|
-
"output":
|
|
632
|
-
"cache_read": 0.
|
|
633
|
-
"cache_write": 0.
|
|
661
|
+
"input": 1.5,
|
|
662
|
+
"output": 7.5,
|
|
663
|
+
"cache_read": 0.15,
|
|
664
|
+
"cache_write": 0.08334
|
|
634
665
|
},
|
|
635
666
|
"limit": {
|
|
636
667
|
"context": 1048576,
|
|
@@ -657,9 +688,8 @@
|
|
|
657
688
|
"reasoning": false,
|
|
658
689
|
"tool_call": true,
|
|
659
690
|
"cost": {
|
|
660
|
-
"input":
|
|
661
|
-
"output": 3.
|
|
662
|
-
"cache_read": 0.2
|
|
691
|
+
"input": 0.95,
|
|
692
|
+
"output": 3.15
|
|
663
693
|
},
|
|
664
694
|
"limit": {
|
|
665
695
|
"context": 200000,
|
|
@@ -1042,8 +1072,7 @@
|
|
|
1042
1072
|
"tool_call": true,
|
|
1043
1073
|
"cost": {
|
|
1044
1074
|
"input": 0.6,
|
|
1045
|
-
"output": 3
|
|
1046
|
-
"cache_read": 0.1
|
|
1075
|
+
"output": 3
|
|
1047
1076
|
},
|
|
1048
1077
|
"limit": {
|
|
1049
1078
|
"context": 256000,
|
|
@@ -1276,9 +1305,8 @@
|
|
|
1276
1305
|
"reasoning": false,
|
|
1277
1306
|
"tool_call": true,
|
|
1278
1307
|
"cost": {
|
|
1279
|
-
"input": 0.
|
|
1280
|
-
"output":
|
|
1281
|
-
"cache_read": 0.03
|
|
1308
|
+
"input": 0.5,
|
|
1309
|
+
"output": 2
|
|
1282
1310
|
},
|
|
1283
1311
|
"limit": {
|
|
1284
1312
|
"context": 200000,
|
|
@@ -1692,7 +1720,9 @@
|
|
|
1692
1720
|
"modalities": {
|
|
1693
1721
|
"input": [
|
|
1694
1722
|
"text",
|
|
1695
|
-
"image"
|
|
1723
|
+
"image",
|
|
1724
|
+
"video",
|
|
1725
|
+
"pdf"
|
|
1696
1726
|
],
|
|
1697
1727
|
"output": [
|
|
1698
1728
|
"text"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brainervirus/opencode-commandcode",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Command Code API provider for opencode — use Claude, GPT, Gemini, DeepSeek, Qwen, Kimi, GLM, MiniMax, and Step models via Command Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|