Wave 3: 补齐九个适配器(Qwen/CodeBuddy/Cline/Copilot/Crush/Goose/Aider/Cursor/Warp)
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
@@ -214,7 +214,24 @@
|
||||
"type": { "type": "string", "enum": ["string", "url", "enum", "bool"] },
|
||||
"storage": { "type": "string", "enum": ["file", "env", "keyring"], "description": "keyring 永不进普通备份" },
|
||||
"platforms": { "type": "array", "items": { "type": "string", "enum": ["windows", "linux"] } },
|
||||
"docs_url": { "type": "string", "format": "uri" }
|
||||
"docs_url": { "type": "string", "format": "uri" },
|
||||
"options": {
|
||||
"type": "array",
|
||||
"description": "enum 类型的可选值(value + 中文名)",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["value", "label_zh"],
|
||||
"properties": {
|
||||
"value": { "type": "string" },
|
||||
"label_zh": { "type": "string" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"type": "string",
|
||||
"description": "表单分组:auth(授权/登录)| common(常用配置)| advanced(高级配置,默认折叠)"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -236,6 +253,8 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"quickstart_zh": { "type": "string" },
|
||||
"install_zh": { "type": "string", "description": "安装说明(中文)" },
|
||||
"auth_zh": { "type": "string", "description": "授权说明(中文)" },
|
||||
"commands": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -247,6 +266,18 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"params": {
|
||||
"type": "array",
|
||||
"description": "常用参数(中文)",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"param": { "type": "string" },
|
||||
"desc_zh": { "type": "string" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"updated_at": { "type": "string", "format": "date" },
|
||||
"risks_zh": { "type": "array", "items": { "type": "string" } }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user