@osovv/vv-opencode 1.4.0 → 1.4.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 +11 -0
- package/README.md +33 -21
- package/dist/commands/patch-provider.d.ts +54 -3
- package/dist/commands/patch-provider.js +59 -5
- package/dist/commands/patch-provider.js.map +1 -1
- package/dist/lib/vvoc-preset-registry.d.ts +25 -37
- package/dist/lib/vvoc-preset-registry.js +26 -36
- package/dist/lib/vvoc-preset-registry.js.map +1 -1
- package/dist/plugins/workflow/delegated.d.ts +26 -2
- package/dist/plugins/workflow/delegated.js +141 -3
- package/dist/plugins/workflow/delegated.js.map +1 -1
- package/dist/plugins/workflow/index.js +321 -7
- package/dist/plugins/workflow/index.js.map +1 -1
- package/dist/plugins/workflow/persistence.js +23 -4
- package/dist/plugins/workflow/persistence.js.map +1 -1
- package/package.json +1 -1
- package/schemas/vvoc/v3.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## <small>1.4.1 (2026-09-11)</small>
|
|
2
|
+
|
|
3
|
+
### Summary
|
|
4
|
+
|
|
5
|
+
Version 1.4.1 corrects the GPT-6 Astra alias limits to the official 1.05M context, 922K input, and 128K output contract, so patched sessions no longer compact roughly 500K tokens earlier than the model actually supports. The built-in preset registry is refreshed with DeepSeek Flash Max and GLM-5.3 Max/Flash Max role assignments, new vv-osovv-ds and vv-osovv-zai presets, and Luna Low in place of the legacy Spark alias, while retired presets, custom presets, and active role or profile settings are preserved across install and sync. Delegated workflow handling now records a confirmed foreground worker launch failure as a distinct failed attempt with bounded evidence, keeping the item retryable against the same two-attempt budget instead of stranding an in-flight attempt until restart. The release also archives the applied delegated-workflow and Astra-presets change bundle and checkpoints foreground failure-recovery work, which remains unfinished pending review fixes.
|
|
6
|
+
|
|
7
|
+
* fix(patch-provider): correct GPT-6 Astra alias limits to official 1.05M/922K/128K contract ([cd2610d](https://github.com/osovv/vv-opencode/commit/cd2610d)), closes [PR#33972](https://github.com/PR/issues/33972)
|
|
8
|
+
* chore(grace): archive C-DELEGATED-WORKFLOW-ASTRA-PRESETS as applied ([5fabfb9](https://github.com/osovv/vv-opencode/commit/5fabfb9))
|
|
9
|
+
* chore(workflow): checkpoint foreground failure recovery ([7a1c29c](https://github.com/osovv/vv-opencode/commit/7a1c29c))
|
|
10
|
+
* feat(presets): refresh role assignments and provider aliases ([2bbfa70](https://github.com/osovv/vv-opencode/commit/2bbfa70))
|
|
11
|
+
|
|
1
12
|
## 1.4.0 (2026-09-11)
|
|
2
13
|
|
|
3
14
|
### Summary
|
package/README.md
CHANGED
|
@@ -227,7 +227,7 @@ Skills are loaded by OpenCode at session start through `config.skills.paths` (re
|
|
|
227
227
|
| `vvoc plugin list` | List OpenCode plugin entries |
|
|
228
228
|
| `vvoc plugin enable\|disable` | Toggle a vvoc-managed plugin on or off |
|
|
229
229
|
| `vvoc orchestration show\|set` | Show or set the vv-controller orchestration profile |
|
|
230
|
-
| `vvoc patch-provider stepfun-ai\|codex\|deepseek\|kimi\|alibaba\|all` | Patch OpenCode providers; `codex` adds subscription-safe OpenAI aliases (also accepts `openai`), `deepseek`/`kimi`/`alibaba` add vv- reasoning-effort aliases, `all` patches every provider at once |
|
|
230
|
+
| `vvoc patch-provider stepfun-ai\|codex\|deepseek\|kimi\|alibaba\|zai\|all` | Patch OpenCode providers; `codex` adds subscription-safe OpenAI aliases (also accepts `openai`), `deepseek`/`kimi`/`alibaba`/`zai` add vv- reasoning-effort aliases, `all` patches every provider at once |
|
|
231
231
|
| `vvoc completion` | Install shell completions |
|
|
232
232
|
| `vvoc upgrade` | Upgrade the global package and run follow-up sync; sync failure is reported as a partial upgrade |
|
|
233
233
|
| `vvoc analytics cache-hit-rate` | Aggregate persisted cache hit rate by day, week, month, session, model, provider, project, vvoc version, or OpenCode version |
|
|
@@ -354,10 +354,10 @@ vvoc role list
|
|
|
354
354
|
vvoc role list --scope effective
|
|
355
355
|
|
|
356
356
|
# Assign models to roles
|
|
357
|
-
vvoc role set default deepseek/deepseek-
|
|
358
|
-
vvoc role set smart
|
|
357
|
+
vvoc role set default deepseek/vv-deepseek-flash-max
|
|
358
|
+
vvoc role set smart zai-coding-plan/vv-glm-5.3-max
|
|
359
359
|
vvoc role set fast openai/vv-codex-gpt-5.6-luna-low
|
|
360
|
-
vvoc role set reviewer zai-coding-plan/glm-5.
|
|
360
|
+
vvoc role set reviewer zai-coding-plan/vv-glm-5.3-max --scope project
|
|
361
361
|
|
|
362
362
|
# Switch provider presets
|
|
363
363
|
vvoc preset vv-codex
|
|
@@ -365,30 +365,39 @@ vvoc preset vv-zai
|
|
|
365
365
|
vvoc preset vv-deepseek
|
|
366
366
|
vvoc preset vv-kimi
|
|
367
367
|
vvoc preset vv-alibaba
|
|
368
|
-
vvoc preset vv-osovv-
|
|
369
|
-
vvoc preset vv-osovv-
|
|
370
|
-
vvoc preset vv-osovv-kimi
|
|
368
|
+
vvoc preset vv-osovv-ds
|
|
369
|
+
vvoc preset vv-osovv-zai
|
|
371
370
|
vvoc preset vv-osovv-qwen
|
|
372
371
|
vvoc preset vv-astra-solo
|
|
373
372
|
vvoc preset vv-astra-workers
|
|
374
373
|
|
|
375
|
-
# Install the explicit-reasoning provider aliases
|
|
376
|
-
vvoc patch-provider codex # vv-codex-gpt-6-astra-max + vv-codex-gpt-5.3-codex-spark-medium
|
|
377
|
-
vvoc patch-provider deepseek # vv-deepseek-flash-
|
|
378
|
-
vvoc patch-provider zai # vv-glm-5.3-high
|
|
374
|
+
# Install the explicit-reasoning provider aliases
|
|
375
|
+
vvoc patch-provider codex # vv-codex-gpt-6-astra-max (+ vv-codex-gpt-5.3-codex-spark-medium legacy alias + existing aliases)
|
|
376
|
+
vvoc patch-provider deepseek # vv-deepseek-flash-max (+ vv-deepseek-v4-flash-max, vv-deepseek-flash-high)
|
|
377
|
+
vvoc patch-provider zai # vv-glm-5.3-max + vv-glm-5.3-flash-max (+ vv-glm-5.3-high)
|
|
379
378
|
vvoc patch-provider all # every patch above in one run
|
|
380
379
|
```
|
|
381
380
|
|
|
382
|
-
Built-in role IDs: `default`, `smart`, `fast`, `reviewer`, plus any custom lowercase-hyphenated IDs. Presets are partial — applying one only changes the roles it defines. Managed built-in presets (`vv-*`) are refreshed
|
|
381
|
+
Built-in role IDs: `default`, `smart`, `fast`, `reviewer`, plus any custom lowercase-hyphenated IDs. Presets are partial — applying one only changes the roles it defines. Managed built-in presets (`vv-*`) are refreshed from the shipped registry as part of the other work `vvoc install` and `vvoc sync` already do; neither command activates a preset or writes the active roles or orchestration profile on its own — that only happens when you run `vvoc preset <name>`.
|
|
383
382
|
|
|
384
|
-
|
|
383
|
+
Every shipped preset declares an explicit role matrix and orchestration profile:
|
|
385
384
|
|
|
386
|
-
| Preset | default |
|
|
385
|
+
| Preset | default | fast | smart | reviewer | Profile |
|
|
387
386
|
|---|---|---|---|---|---|
|
|
388
|
-
| `vv-
|
|
389
|
-
| `vv-
|
|
387
|
+
| `vv-codex` | `openai/vv-codex-gpt-5.6-terra-high` | `openai/vv-codex-gpt-5.6-luna-low` | `openai/vv-codex-gpt-5.6-sol-xhigh` | `openai/vv-codex-gpt-5.6-sol-xhigh` | single-session |
|
|
388
|
+
| `vv-zai` | `zai-coding-plan/vv-glm-5.3-flash-max` | `zai-coding-plan/vv-glm-5.3-flash-max` | `zai-coding-plan/vv-glm-5.3-max` | `zai-coding-plan/vv-glm-5.3-max` | balanced |
|
|
389
|
+
| `vv-deepseek` | `deepseek/vv-deepseek-flash-max` | `deepseek/vv-deepseek-flash-max` | `deepseek/vv-deepseek-flash-max` | `deepseek/vv-deepseek-flash-max` | balanced |
|
|
390
|
+
| `vv-kimi` | `kimi-for-coding/k3` | `kimi-for-coding/kimi-for-coding-highspeed` | `kimi-for-coding/vv-kimi-k3-max` | `kimi-for-coding/kimi-for-coding` | single-session |
|
|
391
|
+
| `vv-alibaba` | `alibaba-token-plan/qwen3.8-max` | `alibaba-token-plan/deepseek-v4-flash` | `alibaba-token-plan/vv-qwen3.8-max-xhigh` | `alibaba-token-plan/glm-5.2` | single-session |
|
|
392
|
+
| `vv-osovv-ds` | `deepseek/vv-deepseek-flash-max` | `openai/vv-codex-gpt-5.6-luna-low` | `deepseek/vv-deepseek-flash-max` | `zai-coding-plan/vv-glm-5.3-max` | single-session |
|
|
393
|
+
| `vv-osovv-zai` | `deepseek/vv-deepseek-flash-max` | `openai/vv-codex-gpt-5.6-luna-low` | `zai-coding-plan/vv-glm-5.3-max` | `zai-coding-plan/vv-glm-5.3-max` | single-session |
|
|
394
|
+
| `vv-osovv-qwen` | `deepseek/vv-deepseek-flash-max` | `openai/vv-codex-gpt-5.6-luna-low` | `alibaba-token-plan/vv-qwen3.8-max-xhigh` | `zai-coding-plan/vv-glm-5.3-max` | delegated |
|
|
395
|
+
| `vv-astra-solo` | `openai/vv-codex-gpt-6-astra-max` | `openai/vv-codex-gpt-5.6-luna-low` | `openai/vv-codex-gpt-6-astra-max` | `zai-coding-plan/vv-glm-5.3-high` | single-session |
|
|
396
|
+
| `vv-astra-workers` | `deepseek/vv-deepseek-flash-high` | `openai/vv-codex-gpt-5.6-luna-low` | `openai/vv-codex-gpt-6-astra-max` | `zai-coding-plan/vv-glm-5.3-high` | delegated |
|
|
390
397
|
|
|
391
|
-
|
|
398
|
+
`vv-osovv-ds` replaces the former `vv-osovv-flash` offering and `vv-osovv-zai` is new; `vv-osovv-sol`, `vv-osovv-flash`, and `vv-osovv-kimi` are no longer shipped. A retired preset definition already present in a saved `vvoc.json` is preserved in place rather than migrated or removed across `vvoc install`/`vvoc sync`; delete it manually if you no longer want it. No automatic provider migration or legacy-name cleanup runs, and applying a preset changes only the roles and profile it declares.
|
|
399
|
+
|
|
400
|
+
The explicit-reasoning aliases bind API model IDs to fixed efforts in the patched OpenCode provider entries. `deepseek-flash` is available as `vv-deepseek-flash-max` (effort `max`, image input) and the older `vv-deepseek-flash-high` (`high`, text-only); `vv-deepseek-v4-flash-max` remains text-only. On `zai-coding-plan`, `glm-5.3` is available as `vv-glm-5.3-high` and `vv-glm-5.3-max` (both text-only) and `glm-5.3-flash` as `vv-glm-5.3-flash-max` (text, image, video, and PDF input). The codex aliases keep the established OpenAI reasoning-summary and encrypted-reasoning options. `vv-codex-gpt-5.3-codex-spark-medium` is retained only for backward compatibility with manual configurations that already reference it: it is legacy/manual compatibility, keeps its disabled inherited effort variants, and is advertised conservatively as text-only, and no shipped preset selects it. The shared `fast` role also serves `explore`, Guardian, and `small_model` — availability for those consumers is not verified until you use it. Real model access, review quality, latency, and Astra-token savings are unmeasured: metadata here describes provider capability and pricing boundaries, not benchmarked behavior, and credentialed smoke runs would require separate authorization.
|
|
392
401
|
|
|
393
402
|
### Orchestration profiles
|
|
394
403
|
|
|
@@ -413,12 +422,11 @@ Built-in presets declare an orchestration mapping:
|
|
|
413
422
|
| `vv-codex` | single-session |
|
|
414
423
|
| `vv-kimi` | single-session |
|
|
415
424
|
| `vv-alibaba` | single-session |
|
|
416
|
-
| `vv-osovv-
|
|
417
|
-
| `vv-osovv-
|
|
418
|
-
| `vv-osovv-kimi` | single-session |
|
|
419
|
-
| `vv-osovv-qwen` | single-session |
|
|
425
|
+
| `vv-osovv-ds` | single-session |
|
|
426
|
+
| `vv-osovv-zai` | single-session |
|
|
420
427
|
| `vv-astra-solo` | single-session |
|
|
421
428
|
| `vv-astra-workers` | delegated |
|
|
429
|
+
| `vv-osovv-qwen` | delegated |
|
|
422
430
|
| `vv-zai` | balanced |
|
|
423
431
|
| `vv-deepseek` | balanced |
|
|
424
432
|
|
|
@@ -455,6 +463,10 @@ Delegated tasks are opened with `"mode": "delegated"`, an explicitly empty `requ
|
|
|
455
463
|
- `request_changes` returns the task to the implementation path. Controller-directed retries are bounded to an initial attempt plus one correction; re-deciding or reopening never resets that budget. `DONE_WITH_CONCERNS` requires an explicit `concernsDisposition`.
|
|
456
464
|
- `rework` reopens an accepted task only when a failed checkpoint from the same registered run covers it, preserving acceptance history and granting exactly one additional attempt.
|
|
457
465
|
|
|
466
|
+
A worker can fail to launch at all: the host task wrapper rejects the call before the worker runs (for example, an unknown provider or model). The host skips the `tool.execute.after` hook on a thrown execution, so the plugin consumes the failure as a distinct **failed attempt** from the live call binding instead of leaving `inFlightAttempt` stranded until a restart. The supported case is deliberately narrow — a fresh ordinary foreground `vv-implementer` task launch (no `background`, no `task_id` resume, no command/subtask path) whose host call errors with the exact `Subagent failed (task_id: <child>): ` wrapper, where the event metadata independently binds the same parent session and child session. When it applies, the attempt is marked `failed` with the bounded host error as evidence and a completion time, the item stays `awaiting_implementer`, and the attempt is charged against the same two-attempt budget. The controller can then explicitly retry with a new call; two failed attempts exhaust the normal budget exactly like two completed ones. A failed attempt never counts as `DONE`, cannot be accepted or decided as a successful completion, and persists across restart. Because a worker may have applied partial edits before failing, inspect the diff before retrying or closing.
|
|
467
|
+
|
|
468
|
+
This is not universal automatic error recovery. Background or promoted launches, resumed/shared/re-prompted children, cancellation or interruption, any task that entered the `tool.execute.after` hook (including a protocol/repair failure there), missing or mismatched parent/child metadata, and unknown or non-wrapper host errors all remain fail-closed: the in-flight block is preserved and no retry is authorized from the event alone. The plugin never hydrates workflow state, infers a work item from error text, or resets a whole session because of an error event, and it does not reclassify legacy-mode or checkpoint-reviewer launches.
|
|
469
|
+
|
|
458
470
|
Independent review happens at checkpoints declared in the plan. An approved delegated plan carries an `<execution><mode>delegated</mode>` section with `<review_checkpoints>` (`CHECKPOINT-R-NNN` identities, each with kind, wave barrier, covered tasks, reviewed scope files, reviewer set, acceptance criteria, and verification commands) and per-task `<write_scope>` lists. `work_checkpoint` handles three actions:
|
|
459
471
|
|
|
460
472
|
- `register` — loads an approved active plan plus its linked approved spec, fully lints them, and binds the run to their content hashes and the canonical workspace root. Re-registering identical inputs is idempotent; changed approved inputs are explicit plan drift, never a progress reset.
|
|
@@ -127,8 +127,8 @@ declare const PATCH_PROVIDER_PRESETS: {
|
|
|
127
127
|
readonly id: "gpt-6-astra";
|
|
128
128
|
readonly variants: {};
|
|
129
129
|
readonly limit: {
|
|
130
|
-
readonly context:
|
|
131
|
-
readonly input:
|
|
130
|
+
readonly context: 1050000;
|
|
131
|
+
readonly input: 922000;
|
|
132
132
|
readonly output: 128000;
|
|
133
133
|
};
|
|
134
134
|
readonly modalities: {
|
|
@@ -201,6 +201,23 @@ declare const PATCH_PROVIDER_PRESETS: {
|
|
|
201
201
|
readonly reasoningEffort: "max";
|
|
202
202
|
};
|
|
203
203
|
};
|
|
204
|
+
readonly "vv-deepseek-flash-max": {
|
|
205
|
+
readonly name: "VV DeepSeek Flash Max";
|
|
206
|
+
readonly id: "deepseek-flash";
|
|
207
|
+
readonly variants: {};
|
|
208
|
+
readonly limit: {
|
|
209
|
+
readonly context: 1000000;
|
|
210
|
+
readonly output: 384000;
|
|
211
|
+
};
|
|
212
|
+
readonly modalities: {
|
|
213
|
+
readonly input: readonly ["text", "image"];
|
|
214
|
+
readonly output: readonly ["text"];
|
|
215
|
+
};
|
|
216
|
+
readonly reasoning: true;
|
|
217
|
+
readonly options: {
|
|
218
|
+
readonly reasoningEffort: "max";
|
|
219
|
+
};
|
|
220
|
+
};
|
|
204
221
|
readonly "vv-deepseek-flash-high": {
|
|
205
222
|
readonly name: "VV DeepSeek Flash High";
|
|
206
223
|
readonly id: "deepseek-flash";
|
|
@@ -296,9 +313,43 @@ declare const PATCH_PROVIDER_PRESETS: {
|
|
|
296
313
|
readonly reasoningEffort: "high";
|
|
297
314
|
};
|
|
298
315
|
};
|
|
316
|
+
readonly "vv-glm-5.3-max": {
|
|
317
|
+
readonly name: "VV GLM-5.3 Max";
|
|
318
|
+
readonly id: "glm-5.3";
|
|
319
|
+
readonly variants: {};
|
|
320
|
+
readonly limit: {
|
|
321
|
+
readonly context: 1000000;
|
|
322
|
+
readonly output: 131072;
|
|
323
|
+
};
|
|
324
|
+
readonly modalities: {
|
|
325
|
+
readonly input: readonly ["text"];
|
|
326
|
+
readonly output: readonly ["text"];
|
|
327
|
+
};
|
|
328
|
+
readonly reasoning: true;
|
|
329
|
+
readonly options: {
|
|
330
|
+
readonly reasoningEffort: "max";
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
readonly "vv-glm-5.3-flash-max": {
|
|
334
|
+
readonly name: "VV GLM-5.3 Flash Max";
|
|
335
|
+
readonly id: "glm-5.3-flash";
|
|
336
|
+
readonly variants: {};
|
|
337
|
+
readonly limit: {
|
|
338
|
+
readonly context: 1000000;
|
|
339
|
+
readonly output: 131072;
|
|
340
|
+
};
|
|
341
|
+
readonly modalities: {
|
|
342
|
+
readonly input: readonly ["text", "image", "video", "pdf"];
|
|
343
|
+
readonly output: readonly ["text"];
|
|
344
|
+
};
|
|
345
|
+
readonly reasoning: true;
|
|
346
|
+
readonly options: {
|
|
347
|
+
readonly reasoningEffort: "max";
|
|
348
|
+
};
|
|
349
|
+
};
|
|
299
350
|
};
|
|
300
351
|
};
|
|
301
|
-
readonly summary: "provider.zai-coding-plan.models
|
|
352
|
+
readonly summary: "provider.zai-coding-plan.models vv-glm-5.3 high/max/flash-max aliases patched";
|
|
302
353
|
};
|
|
303
354
|
};
|
|
304
355
|
/** Special preset name that applies every registered patch preset in sequence. */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// FILE: src/commands/patch-provider.ts
|
|
2
|
-
// VERSION: 0.
|
|
2
|
+
// VERSION: 0.10.0
|
|
3
3
|
// START_MODULE_CONTRACT
|
|
4
4
|
// PURPOSE: Apply OpenCode patch presets to global or project OpenCode config layers.
|
|
5
5
|
// SCOPE: Patch preset validation, scoped OpenCode config path resolution, provider/baseURL patch writes, provider-specific object patch writes under `provider` (codex, deepseek, kimi, alibaba, zai), and CLI output.
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
// END_MODULE_MAP
|
|
20
20
|
//
|
|
21
21
|
// START_CHANGE_SUMMARY
|
|
22
|
-
// LAST_CHANGE: [
|
|
22
|
+
// LAST_CHANGE: [direct fix - Corrected vv-codex-gpt-6-astra-max limits to the official GPT-6 Astra contract (context 1050000, input 922000, output 128000) instead of the GPT-5.6-family 400000/272000 values that only apply post-PR#33972.]
|
|
23
23
|
// END_CHANGE_SUMMARY
|
|
24
24
|
import { defineCommand } from "citty";
|
|
25
25
|
import { describeWriteResult, resolvePaths, writeOpenCodeProviderObject, writeProviderBaseUrl, } from "../lib/opencode.js";
|
|
@@ -128,9 +128,12 @@ const OPENAI_PATCH = {
|
|
|
128
128
|
name: "VV Codex GPT-6 Astra Max",
|
|
129
129
|
id: "gpt-6-astra",
|
|
130
130
|
variants: {},
|
|
131
|
+
// GPT-6 Astra keeps its own official contract (1.05M context / 922K
|
|
132
|
+
// input / 128K output per OpenAI model docs, Sept 2026); only the
|
|
133
|
+
// GPT-5.6 family was capped to 272K input by Codex PR#33972.
|
|
131
134
|
limit: {
|
|
132
|
-
context:
|
|
133
|
-
input:
|
|
135
|
+
context: 1050000,
|
|
136
|
+
input: 922000,
|
|
134
137
|
output: 128000,
|
|
135
138
|
},
|
|
136
139
|
modalities: {
|
|
@@ -235,6 +238,23 @@ const DEEPSEEK_PATCH = {
|
|
|
235
238
|
reasoningEffort: "max",
|
|
236
239
|
},
|
|
237
240
|
},
|
|
241
|
+
"vv-deepseek-flash-max": {
|
|
242
|
+
name: "VV DeepSeek Flash Max",
|
|
243
|
+
id: "deepseek-flash",
|
|
244
|
+
variants: {},
|
|
245
|
+
limit: {
|
|
246
|
+
context: 1000000,
|
|
247
|
+
output: 384000,
|
|
248
|
+
},
|
|
249
|
+
modalities: {
|
|
250
|
+
input: ["text", "image"],
|
|
251
|
+
output: ["text"],
|
|
252
|
+
},
|
|
253
|
+
reasoning: true,
|
|
254
|
+
options: {
|
|
255
|
+
reasoningEffort: "max",
|
|
256
|
+
},
|
|
257
|
+
},
|
|
238
258
|
"vv-deepseek-flash-high": {
|
|
239
259
|
name: "VV DeepSeek Flash High",
|
|
240
260
|
id: "deepseek-flash",
|
|
@@ -273,6 +293,40 @@ const ZAI_PATCH = {
|
|
|
273
293
|
reasoningEffort: "high",
|
|
274
294
|
},
|
|
275
295
|
},
|
|
296
|
+
"vv-glm-5.3-max": {
|
|
297
|
+
name: "VV GLM-5.3 Max",
|
|
298
|
+
id: "glm-5.3",
|
|
299
|
+
variants: {},
|
|
300
|
+
limit: {
|
|
301
|
+
context: 1000000,
|
|
302
|
+
output: 131072,
|
|
303
|
+
},
|
|
304
|
+
modalities: {
|
|
305
|
+
input: ["text"],
|
|
306
|
+
output: ["text"],
|
|
307
|
+
},
|
|
308
|
+
reasoning: true,
|
|
309
|
+
options: {
|
|
310
|
+
reasoningEffort: "max",
|
|
311
|
+
},
|
|
312
|
+
},
|
|
313
|
+
"vv-glm-5.3-flash-max": {
|
|
314
|
+
name: "VV GLM-5.3 Flash Max",
|
|
315
|
+
id: "glm-5.3-flash",
|
|
316
|
+
variants: {},
|
|
317
|
+
limit: {
|
|
318
|
+
context: 1000000,
|
|
319
|
+
output: 131072,
|
|
320
|
+
},
|
|
321
|
+
modalities: {
|
|
322
|
+
input: ["text", "image", "video", "pdf"],
|
|
323
|
+
output: ["text"],
|
|
324
|
+
},
|
|
325
|
+
reasoning: true,
|
|
326
|
+
options: {
|
|
327
|
+
reasoningEffort: "max",
|
|
328
|
+
},
|
|
329
|
+
},
|
|
276
330
|
},
|
|
277
331
|
};
|
|
278
332
|
const PATCH_PROVIDER_PRESETS = {
|
|
@@ -310,7 +364,7 @@ const PATCH_PROVIDER_PRESETS = {
|
|
|
310
364
|
kind: "provider-object",
|
|
311
365
|
providerID: "zai-coding-plan",
|
|
312
366
|
value: ZAI_PATCH,
|
|
313
|
-
summary: "provider.zai-coding-plan.models
|
|
367
|
+
summary: "provider.zai-coding-plan.models vv-glm-5.3 high/max/flash-max aliases patched",
|
|
314
368
|
},
|
|
315
369
|
};
|
|
316
370
|
/** Special preset name that applies every registered patch preset in sequence. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patch-provider.js","sourceRoot":"","sources":["../../src/commands/patch-provider.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,iBAAiB;AACjB,wBAAwB;AACxB,uFAAuF;AACvF,yNAAyN;AACzN,0CAA0C;AAC1C,gEAAgE;AAChE,kBAAkB;AAClB,sBAAsB;AACtB,sBAAsB;AACtB,EAAE;AACF,mBAAmB;AACnB,yDAAyD;AACzD,+FAA+F;AAC/F,8EAA8E;AAC9E,8GAA8G;AAC9G,4FAA4F;AAC5F,gHAAgH;AAChH,iBAAiB;AACjB,EAAE;AACF,uBAAuB;AACvB,mMAAmM;AACnM,qBAAqB;AAErB,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AACtC,OAAO,EACL,mBAAmB,EACnB,YAAY,EACZ,2BAA2B,EAC3B,oBAAoB,GACrB,MAAM,oBAAoB,CAAC;AAmB5B,MAAM,aAAa,GAAG;IACpB,OAAO,EAAE;QACP,OAAO,EAAE,2BAA2B;KACrC;IACD,MAAM,EAAE;QACN,gBAAgB,EAAE;YAChB,IAAI,EAAE,gBAAgB;YACtB,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC;gBACjC,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;SACF;KACF;CACyC,CAAC;AAE7C,MAAM,YAAY,GAAG;IACnB,MAAM,EAAE;QACN,wBAAwB,EAAE;YACxB,IAAI,EAAE,wBAAwB;YAC9B,EAAE,EAAE,SAAS;YACb,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC;gBAC/B,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,OAAO;gBACxB,gBAAgB,EAAE,MAAM;gBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;aACzC;SACF;QACD,6BAA6B,EAAE;YAC7B,IAAI,EAAE,6BAA6B;YACnC,EAAE,EAAE,eAAe;YACnB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC;gBAC/B,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,MAAM;gBACvB,gBAAgB,EAAE,MAAM;gBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;aACzC;SACF;QACD,4BAA4B,EAAE;YAC5B,IAAI,EAAE,4BAA4B;YAClC,EAAE,EAAE,aAAa;YACjB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC;gBAC/B,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,OAAO;gBACxB,gBAAgB,EAAE,MAAM;gBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;aACzC;SACF;QACD,2BAA2B,EAAE;YAC3B,IAAI,EAAE,2BAA2B;YACjC,EAAE,EAAE,cAAc;YAClB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC;gBAC/B,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,KAAK;gBACtB,gBAAgB,EAAE,MAAM;gBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;aACzC;SACF;QACD,0BAA0B,EAAE;YAC1B,IAAI,EAAE,0BAA0B;YAChC,EAAE,EAAE,aAAa;YACjB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC;gBAC/B,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,KAAK;gBACtB,gBAAgB,EAAE,MAAM;gBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;aACzC;SACF;QACD,qCAAqC,EAAE;YACrC,IAAI,EAAE,qCAAqC;YAC3C,EAAE,EAAE,qBAAqB;YACzB,sEAAsE;YACtE,0EAA0E;YAC1E,sEAAsE;YACtE,QAAQ,EAAE;gBACR,IAAI,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBACxB,GAAG,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBACvB,IAAI,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBACxB,GAAG,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;aACxB;YACD,KAAK,EAAE;gBACL,OAAO,EAAE,MAAM;gBACf,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,KAAK;aACd;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,CAAC;gBACf,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,QAAQ;gBACzB,gBAAgB,EAAE,MAAM;gBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;aACzC;SACF;KACF;CACyC,CAAC;AAE7C,MAAM,UAAU,GAAG;IACjB,MAAM,EAAE;QACN,gBAAgB,EAAE;YAChB,IAAI,EAAE,gBAAgB;YACtB,EAAE,EAAE,IAAI;YACR,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC;gBACjC,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,KAAK;aACvB;SACF;KACF;CACyC,CAAC;AAE7C,MAAM,aAAa,GAAG;IACpB,MAAM,EAAE;QACN,sBAAsB,EAAE;YACtB,IAAI,EAAE,sBAAsB;YAC5B,EAAE,EAAE,aAAa;YACjB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC;gBACxC,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,OAAO;aACzB;SACF;KACF;CACyC,CAAC;AAE7C,MAAM,cAAc,GAAG;IACrB,MAAM,EAAE;QACN,0BAA0B,EAAE;YAC1B,IAAI,EAAE,0BAA0B;YAChC,EAAE,EAAE,mBAAmB;YACvB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,CAAC;gBACf,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,KAAK;aACvB;SACF;QACD,wBAAwB,EAAE;YACxB,IAAI,EAAE,wBAAwB;YAC9B,EAAE,EAAE,gBAAgB;YACpB,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,CAAC;gBACf,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,MAAM;aACxB;SACF;KACF;CACyC,CAAC;AAE7C,MAAM,SAAS,GAAG;IAChB,MAAM,EAAE;QACN,iBAAiB,EAAE;YACjB,IAAI,EAAE,iBAAiB;YACvB,EAAE,EAAE,SAAS;YACb,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE;gBACL,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,KAAK,EAAE,CAAC,MAAM,CAAC;gBACf,MAAM,EAAE,CAAC,MAAM,CAAC;aACjB;YACD,SAAS,EAAE,IAAI;YACf,OAAO,EAAE;gBACP,eAAe,EAAE,MAAM;aACxB;SACF;KACF;CACyC,CAAC;AAE7C,MAAM,sBAAsB,GAAG;IAC7B,YAAY,EAAE;QACZ,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,SAAS;QACrB,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,0DAA0D;KACpE;IACD,KAAK,EAAE;QACL,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,QAAQ;QACpB,KAAK,EAAE,YAAY;QACnB,OAAO,EAAE,6DAA6D;KACvE;IACD,QAAQ,EAAE;QACR,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,UAAU;QACtB,KAAK,EAAE,cAAc;QACrB,OAAO,EAAE,4DAA4D;KACtE;IACD,IAAI,EAAE;QACJ,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,iBAAiB;QAC7B,KAAK,EAAE,UAAU;QACjB,OAAO,EAAE,wDAAwD;KAClE;IACD,OAAO,EAAE;QACP,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,oBAAoB;QAChC,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,iEAAiE;KAC3E;IACD,GAAG,EAAE;QACH,IAAI,EAAE,iBAAiB;QACvB,UAAU,EAAE,iBAAiB;QAC7B,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,yDAAyD;KACnE;CAC6C,CAAC;AAEjD,kFAAkF;AAClF,MAAM,CAAC,MAAM,gBAAgB,GAAG,KAAK,CAAC;AAEtC,sFAAsF;AACtF,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAAC,OAIlD;IAMC,MAAM,OAAO,GAGP,EAAE,CAAC;IACT,KAAK,MAAM,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,sBAAsB,CAA8B,EAAE,CAAC;QAC1F,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,wBAAwB,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QACvE,OAAO,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,CAAC,CAAC;IAC/C,CAAC;IACD,OAAO,OAAO,CAAC;AACjB,CAAC;AAID,MAAM,6BAA6B,GAAG;IACpC,MAAM,EAAE,OAAO;CAC2C,CAAC;AAE7D,MAAM,SAAS,GAAG;IAChB,IAAI,EAAE,YAAqB;IAC3B,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE,iCAAiC;CAC/C,CAAC;AAEF,MAAM,YAAY,GAAG;IACnB,IAAI,EAAE,QAAiB;IACvB,WAAW,EAAE,qDAAqD;CACnE,CAAC;AAEF,MAAM,aAAa,GAAG;IACpB,IAAI,EAAE,MAAe;IACrB,OAAO,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;IAC9B,OAAO,EAAE,QAAQ;IACjB,WAAW,EAAE,8CAA8C;CAC5D,CAAC;AAEF,yCAAyC;AACzC,MAAM,UAAU,0BAA0B,CAAC,IAAY;IACrD,MAAM,aAAa,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC;IAClC,MAAM,UAAU,GACd,aAAa,IAAI,6BAA6B;QAC5C,CAAC,CAAC,6BAA6B,CAAC,aAA2D,CAAC;QAC5F,CAAC,CAAE,aAAyC,CAAC;IACjD,IAAI,UAAU,IAAI,sBAAsB,EAAE,CAAC;QACzC,OAAO,sBAAsB,CAAC,UAAU,CAAC,CAAC;IAC5C,CAAC;IAED,MAAM,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACjE,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACtE,MAAM,IAAI,KAAK,CACb,sCAAsC,IAAI,wBAAwB,SAAS,4BAA4B,OAAO,EAAE,CACjH,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,wBAAwB,CAC5C,UAAkB,EAClB,UAA+D,EAAE;IAEjE,MAAM,MAAM,GAAG,0BAA0B,CAAC,UAAU,CAAC,CAAC;IACtD,MAAM,KAAK,GAAG,MAAM,YAAY,CAAC;QAC/B,KAAK,EAAE,OAAO,CAAC,KAAK,IAAI,QAAQ;QAChC,GAAG,EAAE,OAAO,CAAC,GAAG,IAAI,OAAO,CAAC,GAAG,EAAE;QACjC,SAAS,EAAE,OAAO,CAAC,SAAS;KAC7B,CAAC,CAAC;IAEH,MAAM,MAAM,GACV,MAAM,CAAC,IAAI,KAAK,mBAAmB;QACjC,CAAC,CAAC,MAAM,oBAAoB,CAAC,KAAK,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,OAAO,CAAC;QACtE,CAAC,CAAC,MAAM,2BAA2B,CAAC,KAAK,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC;IAEhF,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;AAC5B,CAAC;AACD,uCAAuC;AAEvC,eAAe,aAAa,CAAC;IAC3B,IAAI,EAAE;QACJ,IAAI,EAAE,gBAAgB;QACtB,WAAW,EAAE,uCAAuC;KACrD;IACD,IAAI,EAAE;QACJ,MAAM,EAAE,SAAS;QACjB,KAAK,EAAE,aAAa;QACpB,YAAY,EAAE,YAAY;KAC3B;IACD,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE;QAChB,MAAM,UAAU,GAAG,OAAO,IAAI,CAAC,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC;QACtE,MAAM,SAAS,GAAG,OAAO,IAAI,CAAC,YAAY,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAC1F,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC;QAE9D,IAAI,UAAU,KAAK,gBAAgB,EAAE,CAAC;YACpC,IAAI,MAAM,GAAG,KAAK,CAAC;YACnB,KAAK,MAAM,MAAM,IAAI,MAAM,CAAC,IAAI,CAAC,sBAAsB,CAA8B,EAAE,CAAC;gBACtF,IAAI,CAAC;oBACH,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,wBAAwB,CAAC,MAAM,EAAE;wBACxD,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;wBAClB,SAAS;wBACT,KAAK;qBACN,CAAC,CAAC;oBACH,OAAO,CAAC,GAAG,CAAC,GAAG,mBAAmB,CAAC,MAAM,CAAC,KAAK,sBAAsB,CAAC,MAAM,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC;gBAC5F,CAAC;gBAAC,OAAO,KAAK,EAAE,CAAC;oBACf,MAAM,GAAG,IAAI,CAAC;oBACd,OAAO,CAAC,KAAK,CAAC,GAAG,MAAM,KAAK,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;gBACxF,CAAC;YACH,CAAC;YACD,IAAI,MAAM;gBAAE,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC;YACjC,OAAO;QACT,CAAC;QAED,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,wBAAwB,CAAC,UAAU,EAAE;YACpE,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;YAClB,SAAS;YACT,KAAK;SACN,CAAC,CAAC;QACH,OAAO,CAAC,GAAG,CAAC,GAAG,mBAAmB,CAAC,MAAM,CAAC,KAAK,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC;IACpE,CAAC;CACF,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"patch-provider.js","sourceRoot":"","sources":["../../src/commands/patch-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,10 +14,10 @@ export declare const BUILTIN_VVOC_PRESET_REGISTRY: {
|
|
|
14
14
|
readonly "vv-zai": {
|
|
15
15
|
readonly description: "Starter ZAI role assignments for built-in vvoc roles.";
|
|
16
16
|
readonly agents: {
|
|
17
|
-
readonly default: "zai-coding-plan/glm-5-
|
|
18
|
-
readonly fast: "zai-coding-plan/glm-
|
|
19
|
-
readonly smart: "zai-coding-plan/glm-5.
|
|
20
|
-
readonly reviewer: "zai-coding-plan/glm-5.
|
|
17
|
+
readonly default: "zai-coding-plan/vv-glm-5.3-flash-max";
|
|
18
|
+
readonly fast: "zai-coding-plan/vv-glm-5.3-flash-max";
|
|
19
|
+
readonly smart: "zai-coding-plan/vv-glm-5.3-max";
|
|
20
|
+
readonly reviewer: "zai-coding-plan/vv-glm-5.3-max";
|
|
21
21
|
};
|
|
22
22
|
readonly orchestration: {
|
|
23
23
|
readonly profile: "balanced";
|
|
@@ -26,10 +26,10 @@ export declare const BUILTIN_VVOC_PRESET_REGISTRY: {
|
|
|
26
26
|
readonly "vv-deepseek": {
|
|
27
27
|
readonly description: "Starter DeepSeek role assignments for built-in vvoc roles.";
|
|
28
28
|
readonly agents: {
|
|
29
|
-
readonly default: "deepseek/deepseek-
|
|
30
|
-
readonly fast: "deepseek/deepseek-
|
|
31
|
-
readonly smart: "deepseek/deepseek-
|
|
32
|
-
readonly reviewer: "deepseek/deepseek-
|
|
29
|
+
readonly default: "deepseek/vv-deepseek-flash-max";
|
|
30
|
+
readonly fast: "deepseek/vv-deepseek-flash-max";
|
|
31
|
+
readonly smart: "deepseek/vv-deepseek-flash-max";
|
|
32
|
+
readonly reviewer: "deepseek/vv-deepseek-flash-max";
|
|
33
33
|
};
|
|
34
34
|
readonly orchestration: {
|
|
35
35
|
readonly profile: "balanced";
|
|
@@ -59,37 +59,25 @@ export declare const BUILTIN_VVOC_PRESET_REGISTRY: {
|
|
|
59
59
|
readonly profile: "single-session";
|
|
60
60
|
};
|
|
61
61
|
};
|
|
62
|
-
readonly "vv-osovv-
|
|
63
|
-
readonly description: "Personal osovv stack with
|
|
62
|
+
readonly "vv-osovv-ds": {
|
|
63
|
+
readonly description: "Personal osovv stack with DeepSeek Flash default and smart (deepseek + openai + zai).";
|
|
64
64
|
readonly agents: {
|
|
65
|
-
readonly default: "deepseek/deepseek-
|
|
65
|
+
readonly default: "deepseek/vv-deepseek-flash-max";
|
|
66
66
|
readonly fast: "openai/vv-codex-gpt-5.6-luna-low";
|
|
67
|
-
readonly smart: "
|
|
68
|
-
readonly reviewer: "zai-coding-plan/glm-5.
|
|
67
|
+
readonly smart: "deepseek/vv-deepseek-flash-max";
|
|
68
|
+
readonly reviewer: "zai-coding-plan/vv-glm-5.3-max";
|
|
69
69
|
};
|
|
70
70
|
readonly orchestration: {
|
|
71
71
|
readonly profile: "single-session";
|
|
72
72
|
};
|
|
73
73
|
};
|
|
74
|
-
readonly "vv-osovv-
|
|
75
|
-
readonly description: "Personal osovv stack with
|
|
74
|
+
readonly "vv-osovv-zai": {
|
|
75
|
+
readonly description: "Personal osovv stack with GLM-5.3 smart (deepseek + openai + zai).";
|
|
76
76
|
readonly agents: {
|
|
77
|
-
readonly default: "deepseek/deepseek-
|
|
77
|
+
readonly default: "deepseek/vv-deepseek-flash-max";
|
|
78
78
|
readonly fast: "openai/vv-codex-gpt-5.6-luna-low";
|
|
79
|
-
readonly smart: "
|
|
80
|
-
readonly reviewer: "zai-coding-plan/glm-5.
|
|
81
|
-
};
|
|
82
|
-
readonly orchestration: {
|
|
83
|
-
readonly profile: "single-session";
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
readonly "vv-osovv-kimi": {
|
|
87
|
-
readonly description: "Personal osovv stack with kimi k3 smart (deepseek + openai + kimi + zai).";
|
|
88
|
-
readonly agents: {
|
|
89
|
-
readonly default: "deepseek/deepseek-v4-flash";
|
|
90
|
-
readonly fast: "openai/vv-codex-gpt-5.6-luna-low";
|
|
91
|
-
readonly smart: "kimi-for-coding/vv-kimi-k3-max";
|
|
92
|
-
readonly reviewer: "zai-coding-plan/glm-5.2";
|
|
79
|
+
readonly smart: "zai-coding-plan/vv-glm-5.3-max";
|
|
80
|
+
readonly reviewer: "zai-coding-plan/vv-glm-5.3-max";
|
|
93
81
|
};
|
|
94
82
|
readonly orchestration: {
|
|
95
83
|
readonly profile: "single-session";
|
|
@@ -98,20 +86,20 @@ export declare const BUILTIN_VVOC_PRESET_REGISTRY: {
|
|
|
98
86
|
readonly "vv-osovv-qwen": {
|
|
99
87
|
readonly description: "Personal osovv stack with qwen3.8 smart (deepseek + openai + qwen + zai).";
|
|
100
88
|
readonly agents: {
|
|
101
|
-
readonly default: "deepseek/deepseek-
|
|
89
|
+
readonly default: "deepseek/vv-deepseek-flash-max";
|
|
102
90
|
readonly fast: "openai/vv-codex-gpt-5.6-luna-low";
|
|
103
91
|
readonly smart: "alibaba-token-plan/vv-qwen3.8-max-xhigh";
|
|
104
|
-
readonly reviewer: "zai-coding-plan/glm-5.
|
|
92
|
+
readonly reviewer: "zai-coding-plan/vv-glm-5.3-max";
|
|
105
93
|
};
|
|
106
94
|
readonly orchestration: {
|
|
107
|
-
readonly profile: "
|
|
95
|
+
readonly profile: "delegated";
|
|
108
96
|
};
|
|
109
97
|
};
|
|
110
98
|
readonly "vv-astra-solo": {
|
|
111
|
-
readonly description: "Astra-primary solo stack with
|
|
99
|
+
readonly description: "Astra-primary solo stack with Luna fast and GLM-5.3 review.";
|
|
112
100
|
readonly agents: {
|
|
113
101
|
readonly default: "openai/vv-codex-gpt-6-astra-max";
|
|
114
|
-
readonly fast: "openai/vv-codex-gpt-5.
|
|
102
|
+
readonly fast: "openai/vv-codex-gpt-5.6-luna-low";
|
|
115
103
|
readonly smart: "openai/vv-codex-gpt-6-astra-max";
|
|
116
104
|
readonly reviewer: "zai-coding-plan/vv-glm-5.3-high";
|
|
117
105
|
};
|
|
@@ -123,7 +111,7 @@ export declare const BUILTIN_VVOC_PRESET_REGISTRY: {
|
|
|
123
111
|
readonly description: "Astra-architecture delegated stack with DeepSeek Flash workers and GLM-5.3 review.";
|
|
124
112
|
readonly agents: {
|
|
125
113
|
readonly default: "deepseek/vv-deepseek-flash-high";
|
|
126
|
-
readonly fast: "openai/vv-codex-gpt-5.
|
|
114
|
+
readonly fast: "openai/vv-codex-gpt-5.6-luna-low";
|
|
127
115
|
readonly smart: "openai/vv-codex-gpt-6-astra-max";
|
|
128
116
|
readonly reviewer: "zai-coding-plan/vv-glm-5.3-high";
|
|
129
117
|
};
|
|
@@ -133,5 +121,5 @@ export declare const BUILTIN_VVOC_PRESET_REGISTRY: {
|
|
|
133
121
|
};
|
|
134
122
|
};
|
|
135
123
|
export type BuiltInVvocPresetName = keyof typeof BUILTIN_VVOC_PRESET_REGISTRY;
|
|
136
|
-
export declare const BUILTIN_VVOC_PRESET_NAMES: readonly ("vv-codex" | "vv-zai" | "vv-deepseek" | "vv-kimi" | "vv-alibaba" | "vv-osovv-
|
|
124
|
+
export declare const BUILTIN_VVOC_PRESET_NAMES: readonly ("vv-codex" | "vv-zai" | "vv-deepseek" | "vv-kimi" | "vv-alibaba" | "vv-osovv-ds" | "vv-osovv-zai" | "vv-osovv-qwen" | "vv-astra-solo" | "vv-astra-workers")[];
|
|
137
125
|
export declare function isBuiltinVvocPresetName(name: string): name is BuiltInVvocPresetName;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// FILE: src/lib/vvoc-preset-registry.ts
|
|
2
|
-
// VERSION: 0.
|
|
2
|
+
// VERSION: 0.5.0
|
|
3
3
|
// START_MODULE_CONTRACT
|
|
4
4
|
// PURPOSE: Define the canonical built-in vvoc preset registry from a single internal source of truth.
|
|
5
5
|
// SCOPE: Built-in preset name ordering, role and orchestration definitions, and built-in preset-name detection.
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
// END_MODULE_MAP
|
|
18
18
|
//
|
|
19
19
|
// START_CHANGE_SUMMARY
|
|
20
|
-
// LAST_CHANGE: [
|
|
20
|
+
// LAST_CHANGE: [direct fix - Retired vv-osovv-sol/flash/kimi from the shipped registry, added vv-osovv-ds and vv-osovv-zai, moved vv-zai, vv-deepseek, and vv-osovv-qwen to the approved DeepSeek Flash Max / GLM-5.3 Max / GLM-5.3 Flash Max role matrix, and replaced the Astra fast assignments with Luna Low so no shipped preset selects the legacy Spark alias.]
|
|
21
21
|
// END_CHANGE_SUMMARY
|
|
22
22
|
export const BUILTIN_VVOC_PRESET_REGISTRY = {
|
|
23
23
|
"vv-codex": {
|
|
@@ -33,20 +33,20 @@ export const BUILTIN_VVOC_PRESET_REGISTRY = {
|
|
|
33
33
|
"vv-zai": {
|
|
34
34
|
description: "Starter ZAI role assignments for built-in vvoc roles.",
|
|
35
35
|
agents: {
|
|
36
|
-
default: "zai-coding-plan/glm-5-
|
|
37
|
-
fast: "zai-coding-plan/glm-
|
|
38
|
-
smart: "zai-coding-plan/glm-5.
|
|
39
|
-
reviewer: "zai-coding-plan/glm-5.
|
|
36
|
+
default: "zai-coding-plan/vv-glm-5.3-flash-max",
|
|
37
|
+
fast: "zai-coding-plan/vv-glm-5.3-flash-max",
|
|
38
|
+
smart: "zai-coding-plan/vv-glm-5.3-max",
|
|
39
|
+
reviewer: "zai-coding-plan/vv-glm-5.3-max",
|
|
40
40
|
},
|
|
41
41
|
orchestration: { profile: "balanced" },
|
|
42
42
|
},
|
|
43
43
|
"vv-deepseek": {
|
|
44
44
|
description: "Starter DeepSeek role assignments for built-in vvoc roles.",
|
|
45
45
|
agents: {
|
|
46
|
-
default: "deepseek/deepseek-
|
|
47
|
-
fast: "deepseek/deepseek-
|
|
48
|
-
smart: "deepseek/deepseek-
|
|
49
|
-
reviewer: "deepseek/deepseek-
|
|
46
|
+
default: "deepseek/vv-deepseek-flash-max",
|
|
47
|
+
fast: "deepseek/vv-deepseek-flash-max",
|
|
48
|
+
smart: "deepseek/vv-deepseek-flash-max",
|
|
49
|
+
reviewer: "deepseek/vv-deepseek-flash-max",
|
|
50
50
|
},
|
|
51
51
|
orchestration: { profile: "balanced" },
|
|
52
52
|
},
|
|
@@ -70,51 +70,41 @@ export const BUILTIN_VVOC_PRESET_REGISTRY = {
|
|
|
70
70
|
},
|
|
71
71
|
orchestration: { profile: "single-session" },
|
|
72
72
|
},
|
|
73
|
-
"vv-osovv-
|
|
74
|
-
description: "Personal osovv stack with
|
|
73
|
+
"vv-osovv-ds": {
|
|
74
|
+
description: "Personal osovv stack with DeepSeek Flash default and smart (deepseek + openai + zai).",
|
|
75
75
|
agents: {
|
|
76
|
-
default: "deepseek/deepseek-
|
|
76
|
+
default: "deepseek/vv-deepseek-flash-max",
|
|
77
77
|
fast: "openai/vv-codex-gpt-5.6-luna-low",
|
|
78
|
-
smart: "
|
|
79
|
-
reviewer: "zai-coding-plan/glm-5.
|
|
78
|
+
smart: "deepseek/vv-deepseek-flash-max",
|
|
79
|
+
reviewer: "zai-coding-plan/vv-glm-5.3-max",
|
|
80
80
|
},
|
|
81
81
|
orchestration: { profile: "single-session" },
|
|
82
82
|
},
|
|
83
|
-
"vv-osovv-
|
|
84
|
-
description: "Personal osovv stack with
|
|
83
|
+
"vv-osovv-zai": {
|
|
84
|
+
description: "Personal osovv stack with GLM-5.3 smart (deepseek + openai + zai).",
|
|
85
85
|
agents: {
|
|
86
|
-
default: "deepseek/deepseek-
|
|
86
|
+
default: "deepseek/vv-deepseek-flash-max",
|
|
87
87
|
fast: "openai/vv-codex-gpt-5.6-luna-low",
|
|
88
|
-
smart: "
|
|
89
|
-
reviewer: "zai-coding-plan/glm-5.
|
|
90
|
-
},
|
|
91
|
-
orchestration: { profile: "single-session" },
|
|
92
|
-
},
|
|
93
|
-
"vv-osovv-kimi": {
|
|
94
|
-
description: "Personal osovv stack with kimi k3 smart (deepseek + openai + kimi + zai).",
|
|
95
|
-
agents: {
|
|
96
|
-
default: "deepseek/deepseek-v4-flash",
|
|
97
|
-
fast: "openai/vv-codex-gpt-5.6-luna-low",
|
|
98
|
-
smart: "kimi-for-coding/vv-kimi-k3-max",
|
|
99
|
-
reviewer: "zai-coding-plan/glm-5.2",
|
|
88
|
+
smart: "zai-coding-plan/vv-glm-5.3-max",
|
|
89
|
+
reviewer: "zai-coding-plan/vv-glm-5.3-max",
|
|
100
90
|
},
|
|
101
91
|
orchestration: { profile: "single-session" },
|
|
102
92
|
},
|
|
103
93
|
"vv-osovv-qwen": {
|
|
104
94
|
description: "Personal osovv stack with qwen3.8 smart (deepseek + openai + qwen + zai).",
|
|
105
95
|
agents: {
|
|
106
|
-
default: "deepseek/deepseek-
|
|
96
|
+
default: "deepseek/vv-deepseek-flash-max",
|
|
107
97
|
fast: "openai/vv-codex-gpt-5.6-luna-low",
|
|
108
98
|
smart: "alibaba-token-plan/vv-qwen3.8-max-xhigh",
|
|
109
|
-
reviewer: "zai-coding-plan/glm-5.
|
|
99
|
+
reviewer: "zai-coding-plan/vv-glm-5.3-max",
|
|
110
100
|
},
|
|
111
|
-
orchestration: { profile: "
|
|
101
|
+
orchestration: { profile: "delegated" },
|
|
112
102
|
},
|
|
113
103
|
"vv-astra-solo": {
|
|
114
|
-
description: "Astra-primary solo stack with
|
|
104
|
+
description: "Astra-primary solo stack with Luna fast and GLM-5.3 review.",
|
|
115
105
|
agents: {
|
|
116
106
|
default: "openai/vv-codex-gpt-6-astra-max",
|
|
117
|
-
fast: "openai/vv-codex-gpt-5.
|
|
107
|
+
fast: "openai/vv-codex-gpt-5.6-luna-low",
|
|
118
108
|
smart: "openai/vv-codex-gpt-6-astra-max",
|
|
119
109
|
reviewer: "zai-coding-plan/vv-glm-5.3-high",
|
|
120
110
|
},
|
|
@@ -124,7 +114,7 @@ export const BUILTIN_VVOC_PRESET_REGISTRY = {
|
|
|
124
114
|
description: "Astra-architecture delegated stack with DeepSeek Flash workers and GLM-5.3 review.",
|
|
125
115
|
agents: {
|
|
126
116
|
default: "deepseek/vv-deepseek-flash-high",
|
|
127
|
-
fast: "openai/vv-codex-gpt-5.
|
|
117
|
+
fast: "openai/vv-codex-gpt-5.6-luna-low",
|
|
128
118
|
smart: "openai/vv-codex-gpt-6-astra-max",
|
|
129
119
|
reviewer: "zai-coding-plan/vv-glm-5.3-high",
|
|
130
120
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vvoc-preset-registry.js","sourceRoot":"","sources":["../../src/lib/vvoc-preset-registry.ts"],"names":[],"mappings":"AAAA,wCAAwC;AACxC,iBAAiB;AACjB,wBAAwB;AACxB,wGAAwG;AACxG,kHAAkH;AAClH,wCAAwC;AACxC,0GAA0G;AAC1G,kBAAkB;AAClB,sBAAsB;AACtB,sBAAsB;AACtB,EAAE;AACF,mBAAmB;AACnB,uGAAuG;AACvG,yGAAyG;AACzG,oEAAoE;AACpE,sFAAsF;AACtF,iBAAiB;AACjB,EAAE;AACF,uBAAuB;AACvB
|
|
1
|
+
{"version":3,"file":"vvoc-preset-registry.js","sourceRoot":"","sources":["../../src/lib/vvoc-preset-registry.ts"],"names":[],"mappings":"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"}
|