Files
openclaw/extensions/workboard/openclaw.plugin.json
Peter Steinberger ed46e62bcc feat(workboard): add worker dispatch CLI
* feat(workboard): add worker dispatch CLI

* fix(workboard): avoid new unsafe assertions

* fix(workboard): keep remote dispatch failures remote
2026-05-31 10:31:56 +01:00

165 lines
3.5 KiB
JSON

{
"id": "workboard",
"enabledByDefault": false,
"activation": {
"onStartup": true,
"onCommands": ["workboard"]
},
"name": "Workboard",
"description": "Dashboard workboard for agent-owned issues and sessions.",
"contracts": {
"tools": [
"workboard_list",
"workboard_create",
"workboard_link",
"workboard_read",
"workboard_claim",
"workboard_heartbeat",
"workboard_complete",
"workboard_attachment_add",
"workboard_attachment_read",
"workboard_attachment_delete",
"workboard_block",
"workboard_boards",
"workboard_board_create",
"workboard_board_archive",
"workboard_board_delete",
"workboard_stats",
"workboard_runs",
"workboard_specify",
"workboard_decompose",
"workboard_notify_subscribe",
"workboard_notify_list",
"workboard_notify_events",
"workboard_notify_advance",
"workboard_notify_unsubscribe",
"workboard_promote",
"workboard_reassign",
"workboard_reclaim",
"workboard_dispatch",
"workboard_release",
"workboard_comment",
"workboard_proof",
"workboard_worker_log",
"workboard_protocol_violation",
"workboard_unblock"
]
},
"commandAliases": [
{
"name": "workboard",
"kind": "runtime-slash",
"cliCommand": "workboard"
}
],
"toolMetadata": {
"workboard_list": {
"optional": true
},
"workboard_create": {
"optional": true
},
"workboard_link": {
"optional": true
},
"workboard_read": {
"optional": true
},
"workboard_claim": {
"optional": true
},
"workboard_heartbeat": {
"optional": true
},
"workboard_complete": {
"optional": true
},
"workboard_attachment_add": {
"optional": true
},
"workboard_attachment_read": {
"optional": true
},
"workboard_attachment_delete": {
"optional": true
},
"workboard_block": {
"optional": true
},
"workboard_boards": {
"optional": true
},
"workboard_board_create": {
"optional": true
},
"workboard_board_archive": {
"optional": true
},
"workboard_board_delete": {
"optional": true
},
"workboard_stats": {
"optional": true
},
"workboard_runs": {
"optional": true
},
"workboard_specify": {
"optional": true
},
"workboard_decompose": {
"optional": true
},
"workboard_notify_subscribe": {
"optional": true
},
"workboard_notify_list": {
"optional": true
},
"workboard_notify_events": {
"optional": true
},
"workboard_notify_advance": {
"optional": true
},
"workboard_notify_unsubscribe": {
"optional": true
},
"workboard_promote": {
"optional": true
},
"workboard_reassign": {
"optional": true
},
"workboard_reclaim": {
"optional": true
},
"workboard_dispatch": {
"optional": true
},
"workboard_release": {
"optional": true
},
"workboard_comment": {
"optional": true
},
"workboard_proof": {
"optional": true
},
"workboard_worker_log": {
"optional": true
},
"workboard_protocol_violation": {
"optional": true
},
"workboard_unblock": {
"optional": true
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}