@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 +7 -5
- package/package.json +1 -1
- package/schemas/vvoc/v2.json +1 -1
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
|
-
-
|
|
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
|
-
-
|
|
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
package/schemas/vvoc/v2.json
CHANGED
|
@@ -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.
|
|
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",
|