53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"id": "vocechat",
|
|
"name": "vocechat",
|
|
"version": "1.0.0",
|
|
"description": "VoceChat channel plugin for OpenClaw",
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"serverUrl": {
|
|
"type": "string"
|
|
},
|
|
"botApiToken": {
|
|
"type": "string"
|
|
},
|
|
"wsServerUrl": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"uiHints": {
|
|
"serverUrl": {
|
|
"label": "VoceChat Server URL",
|
|
"placeholder": "https://your-vocechat-server.com"
|
|
},
|
|
"botApiToken": {
|
|
"sensitive": true,
|
|
"label": "Bot API Token",
|
|
"placeholder": "Your VoceChat Bot API token"
|
|
},
|
|
"wsServerUrl": {
|
|
"label": "VoceChat WebSocket Server URL",
|
|
"placeholder": "wss://your-vocechat-server.com/ws"
|
|
}
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": ["./src/index.ts"],
|
|
"channel": {
|
|
"id": "vocechat",
|
|
"label": "VoceChat",
|
|
"selectionLabel": "VoceChat (self-hosted)",
|
|
"docsPath": "/channels/vocechat",
|
|
"docsLabel": "vocechat",
|
|
"blurb": "Self-hosted chat via VoceChat API.",
|
|
"order": 70,
|
|
"aliases": ["voce"]
|
|
},
|
|
"install": {
|
|
"localPath": "extensions/vocechat",
|
|
"defaultChoice": "local"
|
|
}
|
|
}
|
|
} |