Files
openclaw/extensions/thread-ownership/openclaw.plugin.json
2026-04-28 04:33:47 +01:00

32 lines
827 B
JSON

{
"id": "thread-ownership",
"activation": {
"onStartup": true
},
"name": "Thread Ownership",
"description": "Prevents multiple agents from responding in the same Slack thread. Uses HTTP calls to the slack-forwarder ownership API.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"forwarderUrl": {
"type": "string"
},
"abTestChannels": {
"type": "array",
"items": { "type": "string" }
}
}
},
"uiHints": {
"forwarderUrl": {
"label": "Forwarder URL",
"help": "Base URL of the slack-forwarder ownership API (default: http://slack-forwarder:8750)"
},
"abTestChannels": {
"label": "A/B Test Channels",
"help": "Slack channel IDs where thread ownership is enforced"
}
}
}