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>
20 lines
508 B
JSON
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"]
|
|
}
|
|
}
|