mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-24 10:29:33 +00:00
46 lines
1.2 KiB
JSON
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": {}
|
|
}
|
|
}
|