An empty followerIdentifiers array caused a fatal validation error during plugin registration, which prevented all openclaw CLI commands from running.
25 lines
732 B
JSON
25 lines
732 B
JSON
{
|
|
"id": "yonexus-server",
|
|
"name": "Yonexus.Server",
|
|
"version": "0.1.0",
|
|
"description": "Yonexus central hub plugin for cross-instance OpenClaw communication",
|
|
"entry": "./dist/Yonexus.Server/plugin/index.js",
|
|
"permissions": [],
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"followerIdentifiers": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"notifyBotToken": { "type": "string" },
|
|
"adminUserId": { "type": "string" },
|
|
"listenHost": { "type": "string" },
|
|
"listenPort": { "type": "number" },
|
|
"publicWsUrl": { "type": "string" }
|
|
},
|
|
"required": ["notifyBotToken", "adminUserId", "listenPort"]
|
|
}
|
|
}
|