@osovv/vv-opencode 0.17.4 → 0.18.0

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
@@ -42,7 +42,7 @@ vvoc install --scope project
42
42
  - ensure OpenCode has a pinned `@osovv/vv-opencode@<version>` package entry
43
43
  - register managed agents and scaffold their prompt files
44
44
  - create or refresh canonical `vvoc.json`
45
- - seed starter presets: `openai`, `zai`, `minimax`
45
+ - refresh managed built-in presets: `vv-openai`, `vv-zai`, `vv-minimax`
46
46
 
47
47
  That package entry exports four plugins:
48
48
 
@@ -163,14 +163,16 @@ Presets are stored in canonical `vvoc.json` and are useful when you want to swit
163
163
 
164
164
  ```bash
165
165
  vvoc preset list
166
- vvoc preset show openai
167
- vvoc preset openai
168
- vvoc preset zai --scope project
166
+ vvoc preset show vv-openai
167
+ vvoc preset vv-openai
168
+ vvoc preset vv-zai --scope project
169
169
  ```
170
170
 
171
171
  Preset rules:
172
172
 
173
- - starter presets are `openai`, `zai`, and `minimax`
173
+ - managed built-in presets are `vv-openai`, `vv-zai`, and `vv-minimax`
174
+ - `vvoc install` and `vvoc sync` always refresh those managed `vv-*` presets back to vvoc defaults
175
+ - user-defined presets with other names are preserved as-is, including legacy names such as `openai`, `zai`, and `minimax`
174
176
  - presets may be partial
175
177
  - applying a preset only changes the targets listed in that preset
176
178
  - OpenCode-side targets respect `--scope`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osovv/vv-opencode",
3
- "version": "0.17.4",
3
+ "version": "0.18.0",
4
4
  "description": "Portable OpenCode workflow plugins, explicit memory, and CLI tooling.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "https://cdn.jsdelivr.net/npm/@osovv/vv-opencode@0.17.4/schemas/vvoc/v2.json",
3
+ "$id": "https://cdn.jsdelivr.net/npm/@osovv/vv-opencode@0.18.0/schemas/vvoc/v2.json",
4
4
  "title": "vvoc config",
5
5
  "description": "Canonical vvoc configuration document.",
6
6
  "type": "object",