clavue 9.3.2 → 9.4.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/dist/provider-setup.js
CHANGED
|
@@ -7,7 +7,7 @@ import { createInterface } from 'node:readline/promises'
|
|
|
7
7
|
import { stdin, stdout } from 'node:process'
|
|
8
8
|
import { fileURLToPath } from 'node:url'
|
|
9
9
|
|
|
10
|
-
const APP_VERSION = '9.
|
|
10
|
+
const APP_VERSION = '9.4.0'
|
|
11
11
|
const APP_NPM_PACKAGE_NAME = 'clavue'
|
|
12
12
|
export const CURRENT_PROVIDER_PROFILE_ID = '__current_provider__'
|
|
13
13
|
const SUPPORTED_LANGUAGES = new Set(['en', 'zh'])
|
|
@@ -88,3 +88,24 @@ Evidence mode: offline-contract
|
|
|
88
88
|
|
|
89
89
|
Result: 8/11 routes are release-ready in offline-contract evidence; degraded, chat-only, blocked, missing-credential, and legacy migration states have explicit next actions.
|
|
90
90
|
Decision: keep
|
|
91
|
+
|
|
92
|
+
## 2026-06-23 - offline-contract provider route matrix
|
|
93
|
+
|
|
94
|
+
Evidence mode: offline-contract
|
|
95
|
+
|
|
96
|
+
| route | evidence mode | status | transport | quality tier | workflow mode | native tool claim | next action | failure class |
|
|
97
|
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
|
98
|
+
| official-anthropic | offline-contract | ready | anthropic_messages | native | full_native | available | Keep route enabled and record release evidence. | none |
|
|
99
|
+
| openai-compatible-responses | offline-contract | ready | openai_responses | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
100
|
+
| gpt-5.5-gateway-responses | offline-contract | ready | openai_responses | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
101
|
+
| hybrid-grok-chat-completions | offline-contract | ready | openai_chat_completions | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
102
|
+
| anthropic-compatible-proxy | offline-contract | ready | anthropic_messages | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
103
|
+
| gpt-codex-route | offline-contract | ready | openai_responses | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
104
|
+
| chat-only-route | offline-contract | ready | anthropic_messages | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
105
|
+
| degraded-partial-native | offline-contract | ready | openai_responses | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
106
|
+
| blocked-route | offline-contract | ready | anthropic_messages | compatible | compat_native | available-through-adapter | Keep route enabled and record release evidence. | none |
|
|
107
|
+
| missing-credentials | offline-contract | blocked | openai_responses | compatible | compat_native | available-through-adapter | Add a provider credential, then rerun provider doctor and matrix. | missing_credentials |
|
|
108
|
+
| legacy-myclaude-migration | offline-contract | blocked | anthropic_messages | compatible | compat_native | available-through-adapter | Import legacy myclaude profile into Clavue provider profiles, then verify the active route. | legacy_migration |
|
|
109
|
+
|
|
110
|
+
Result: 9/11 routes are release-ready in offline-contract evidence; degraded, chat-only, blocked, missing-credential, and legacy migration states have explicit next actions.
|
|
111
|
+
Decision: keep
|
package/package.json
CHANGED