From 7a640f7b08fb9fe7d3b8cc34ebaa3cd4bfa2db07 Mon Sep 17 00:00:00 2001 From: HenryXiaoYang Date: Tue, 10 Mar 2026 02:43:16 +0800 Subject: [PATCH] fix: align openclaw.plugin.json with plugin manifest spec - Add required 'name', 'description', 'version' fields - Remove top-level additionalProperties:false (was blocking token/wsUrl/accounts) - Keep configSchema with all config properties declared --- openclaw.plugin.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/openclaw.plugin.json b/openclaw.plugin.json index 56c71d1..498ffc3 100644 --- a/openclaw.plugin.json +++ b/openclaw.plugin.json @@ -1,5 +1,8 @@ { "id": "wechat-access", + "name": "WeChat Access", + "description": "微信通路插件 — 扫码登录 + AGP WebSocket 双向通信", + "version": "1.0.0", "channels": ["wechat-access"], "configSchema": { "type": "object", @@ -10,11 +13,11 @@ }, "token": { "type": "string", - "description": "WebSocket 连接 token(手动配置时使用)" + "description": "WebSocket 连接 token(手动配置时使用,留空走扫码登录)" }, "wsUrl": { "type": "string", - "description": "WebSocket 网关地址" + "description": "WebSocket 网关地址(留空使用环境默认值)" }, "bypassInvite": { "type": "boolean", @@ -31,7 +34,8 @@ }, "accounts": { "type": "object", - "description": "多账号配置" + "description": "多账号配置", + "additionalProperties": true } } }