@brainervirus/opencode-commandcode 0.7.0 → 0.7.1
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 +10 -0
- package/README.md +1 -1
- package/_version.txt +1 -1
- package/manifest.json +7 -7
- package/models.json +9 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.7.1] - 2026-08-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Catalog refresh and post-release manifest PRs auto-merge when required CI is green.
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Startup summary test reads the bundled command-code version from the manifest instead of pinning one release.
|
|
19
|
+
|
|
10
20
|
## [0.7.0] - 2026-08-28
|
|
11
21
|
|
|
12
22
|
### 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.38.
|
|
1
|
+
1.38.2
|
package/manifest.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-08-
|
|
4
|
-
"pluginVersion": "0.
|
|
5
|
-
"commandCodeVersion": "1.38.
|
|
6
|
-
"commandCodeTarball": "https://registry.npmjs.org/command-code/-/command-code-1.38.
|
|
3
|
+
"generatedAt": "2026-08-29T17:07:34.207Z",
|
|
4
|
+
"pluginVersion": "0.7.0",
|
|
5
|
+
"commandCodeVersion": "1.38.2",
|
|
6
|
+
"commandCodeTarball": "https://registry.npmjs.org/command-code/-/command-code-1.38.2.tgz",
|
|
7
7
|
"modelCount": 65,
|
|
8
8
|
"reasoningModelCount": 54,
|
|
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": 40,
|
|
17
17
|
"thirdParty": 0,
|
|
18
18
|
"free": 5,
|
|
19
19
|
"fallback": 0,
|
package/models.json
CHANGED
|
@@ -627,10 +627,10 @@
|
|
|
627
627
|
],
|
|
628
628
|
"tool_call": true,
|
|
629
629
|
"cost": {
|
|
630
|
-
"input":
|
|
631
|
-
"output":
|
|
632
|
-
"cache_read": 0.
|
|
633
|
-
"cache_write": 0.
|
|
630
|
+
"input": 1.5,
|
|
631
|
+
"output": 7.5,
|
|
632
|
+
"cache_read": 0.15,
|
|
633
|
+
"cache_write": 0.08334
|
|
634
634
|
},
|
|
635
635
|
"limit": {
|
|
636
636
|
"context": 1048576,
|
|
@@ -657,9 +657,8 @@
|
|
|
657
657
|
"reasoning": false,
|
|
658
658
|
"tool_call": true,
|
|
659
659
|
"cost": {
|
|
660
|
-
"input":
|
|
661
|
-
"output": 3.
|
|
662
|
-
"cache_read": 0.2
|
|
660
|
+
"input": 0.95,
|
|
661
|
+
"output": 3.15
|
|
663
662
|
},
|
|
664
663
|
"limit": {
|
|
665
664
|
"context": 200000,
|
|
@@ -1042,8 +1041,7 @@
|
|
|
1042
1041
|
"tool_call": true,
|
|
1043
1042
|
"cost": {
|
|
1044
1043
|
"input": 0.6,
|
|
1045
|
-
"output": 3
|
|
1046
|
-
"cache_read": 0.1
|
|
1044
|
+
"output": 3
|
|
1047
1045
|
},
|
|
1048
1046
|
"limit": {
|
|
1049
1047
|
"context": 256000,
|
|
@@ -1276,9 +1274,8 @@
|
|
|
1276
1274
|
"reasoning": false,
|
|
1277
1275
|
"tool_call": true,
|
|
1278
1276
|
"cost": {
|
|
1279
|
-
"input": 0.
|
|
1280
|
-
"output":
|
|
1281
|
-
"cache_read": 0.03
|
|
1277
|
+
"input": 0.5,
|
|
1278
|
+
"output": 2
|
|
1282
1279
|
},
|
|
1283
1280
|
"limit": {
|
|
1284
1281
|
"context": 200000,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brainervirus/opencode-commandcode",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
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",
|