mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-08-03 11:01:22 +08:00
feat(claude-desktop): add 3P provider switching with proxy gateway
Adds a new ClaudeDesktop AppType that writes Claude Desktop's third-party
inference profile under configLibrary/, sharing _meta.json with other
launchers (Ollama-compatible) so cc-switch can coexist with them.
Two switch modes:
- direct: provider already exposes claude-* / anthropic/claude-* model
ids on Anthropic Messages, Claude Desktop connects to it directly.
- proxy: cc-switch's local proxy acts as the inference gateway,
presenting only claude-* route names to Claude Desktop and mapping
them to real upstream models. Required after Anthropic restricted
Claude Desktop to claude-family ids.
Backend:
- New module claude_desktop_config with snapshot/rollback, official seed
bypass, /claude-desktop/v1/{models,messages} routes, and a single
source of truth for default proxy routes.
- Gateway token persisted in SQLite, validated on every proxied request.
- get_claude_desktop_status surfaces drift signals (stale models,
missing routes, proxy stopped, base URL mismatch, missing token).
Frontend:
- Slim ClaudeDesktopProviderForm independent from ProviderForm,
controlled by a top-level appId guard.
- ProviderList banner consumes the status query (5s polling) and
renders actionable diagnostics.
- ClaudeDesktopRouteToggle in the header to start/stop the local
gateway without touching takeover state.
- Three-locale i18n synchronised.
This commit is contained in:
@@ -31,6 +31,7 @@ const createDefaultProviders = (): ProvidersByApp => ({
|
||||
createdAt: Date.now() + 1,
|
||||
},
|
||||
},
|
||||
"claude-desktop": {},
|
||||
codex: {
|
||||
"codex-1": {
|
||||
id: "codex-1",
|
||||
@@ -71,6 +72,7 @@ const createDefaultProviders = (): ProvidersByApp => ({
|
||||
|
||||
const createDefaultCurrent = (): CurrentProviderState => ({
|
||||
claude: "claude-1",
|
||||
"claude-desktop": "",
|
||||
codex: "codex-1",
|
||||
gemini: "gemini-1",
|
||||
opencode: "",
|
||||
@@ -164,6 +166,7 @@ let mcpConfigs: McpConfigState = {
|
||||
},
|
||||
},
|
||||
},
|
||||
"claude-desktop": {},
|
||||
codex: {
|
||||
httpServer: {
|
||||
id: "httpServer",
|
||||
@@ -231,6 +234,7 @@ export const resetProviderState = () => {
|
||||
},
|
||||
},
|
||||
},
|
||||
"claude-desktop": {},
|
||||
codex: {
|
||||
httpServer: {
|
||||
id: "httpServer",
|
||||
|
||||
Reference in New Issue
Block a user