From 8c8757e9a78b38ea5282aab7bf4c8e206827dbb7 Mon Sep 17 00:00:00 2001 From: zhi Date: Sat, 28 Feb 2026 12:11:04 +0000 Subject: [PATCH] fix: add moderatorBotToken to plugin configSchema The plugin's openclaw.plugin.json has additionalProperties:false, so any config field not in the schema causes gateway startup failure. --- plugin/openclaw.plugin.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/openclaw.plugin.json b/plugin/openclaw.plugin.json index d10f3e5..1cb7fab 100644 --- a/plugin/openclaw.plugin.json +++ b/plugin/openclaw.plugin.json @@ -24,7 +24,8 @@ "discordControlApiToken": { "type": "string" }, "discordControlCallerId": { "type": "string" }, "enableDebugLogs": { "type": "boolean", "default": false }, - "debugLogChannelIds": { "type": "array", "items": { "type": "string" }, "default": [] } + "debugLogChannelIds": { "type": "array", "items": { "type": "string" }, "default": [] }, + "moderatorBotToken": { "type": "string" } }, "required": ["noReplyProvider", "noReplyModel"] }