Files
Yonexus.Client/plugin/openclaw.plugin.json
hzhang 12a0b8f5e6 feat: make notifyBotToken/adminUserId optional
The client never sends pairing notifications (the server does); these
Discord fields were required but unused. Make them optional + drop from
the config schema's required list. Back-compat: still accepted if set.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 15:59:08 +01:00

20 lines
508 B
JSON

{
"id": "yonexus-client",
"name": "Yonexus.Client",
"description": "Yonexus client plugin for cross-instance OpenClaw communication",
"activation": {
"onStartup": true
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"mainHost": { "type": "string" },
"identifier": { "type": "string" },
"notifyBotToken": { "type": "string" },
"adminUserId": { "type": "string" }
},
"required": ["mainHost", "identifier"]
}
}