chore: wave-0 baseline (Tauri2+React shell, platform detect, fake catalog)

This commit is contained in:
AgentDock 施工员
2026-08-25 00:21:13 +08:00
commit 296843215f
137 changed files with 6696 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://agentdock.local/schemas/adapter.schema.json",
"title": "AgentDock Adapter",
"description": "Agent CLI 适配器定义(v1)。Wave 0 仅含占位字段;完整 schema 见架构 §3.1,随 Wave 1 落地。",
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "name_zh", "vendor", "status"],
"properties": {
"id": {
"type": "string",
"description": "稳定 ID,如 codex",
"pattern": "^[a-z0-9][a-z0-9-]*$"
},
"name": {
"type": "string",
"description": "展示名"
},
"name_zh": {
"type": "string",
"description": "中文展示名"
},
"vendor": {
"type": "string",
"description": "厂商"
},
"status": {
"type": "string",
"enum": ["available", "watch"],
"description": "目录状态:available=可安装列表;watch=观察中(第二批)"
}
}
}