{ "$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=观察中(第二批)" } } }