- Add ruleRegistry and onClientAuthenticated options to YonexusServerRuntime - Dispatch rewritten rule messages (rule::sender::content) to rule registry - Guard onClientAuthenticated behind promoteToAuthenticated return value - Fix transport message handler: use tempConn directly when ws is in temp state, preventing stale _connections entry from causing promoteToAuthenticated to fail - Close competing temp connections with same identifier on promotion - Expose __yonexusServer on globalThis for cross-plugin communication - Remove auto-failure on admin notification miss; pairing stays pending Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
755 B
JSON
25 lines
755 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": ["followerIdentifiers", "notifyBotToken", "adminUserId", "listenPort"]
|
|
}
|
|
}
|