Files
openclaw/extensions/raft/openclaw.plugin.json
2026-06-22 14:36:12 +08:00

46 lines
1.2 KiB
JSON

{
"id": "raft",
"name": "Raft",
"description": "OpenClaw Raft channel plugin for secure CLI wake bridges.",
"activation": {
"onStartup": false
},
"channels": ["raft"],
"channelConfigs": {
"raft": {
"label": "Raft",
"description": "Raft External Agent CLI wake bridge.",
"schema": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": { "type": "string" },
"enabled": { "type": "boolean" },
"profile": { "type": "string", "minLength": 1 },
"defaultAccount": { "type": "string" },
"accounts": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": { "type": "string" },
"enabled": { "type": "boolean" },
"profile": { "type": "string", "minLength": 1 }
}
}
}
}
}
}
},
"channelEnvVars": {
"raft": ["RAFT_PROFILE"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}