feat(sync): add Claude home sync parity across providers

This commit is contained in:
Kieran Klaassen
2026-03-02 21:02:21 -08:00
parent 1a0ddb9de1
commit 168c946033
38 changed files with 2323 additions and 307 deletions

View File

@@ -30,9 +30,11 @@ export type KiroSteeringFile = {
}
export type KiroMcpServer = {
command: string
command?: string
args?: string[]
env?: Record<string, string>
url?: string
headers?: Record<string, string>
}
export type KiroBundle = {

View File

@@ -14,6 +14,9 @@ export type QwenMcpServer = {
args?: string[]
env?: Record<string, string>
cwd?: string
httpUrl?: string
url?: string
headers?: Record<string, string>
}
export type QwenSetting = {

View File

@@ -19,6 +19,7 @@ export type WindsurfMcpServerEntry = {
args?: string[]
env?: Record<string, string>
serverUrl?: string
url?: string
headers?: Record<string, string>
}