mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-15 15:13:48 -06:00
75dbe52e3e
* refactor(doctor): prefer manifest route-state owners * refactor(doctor): unify config repair declarations * refactor(doctor): unify legacy state migrations * fix(doctor): satisfy migration pipeline guards * fix(plugin-sdk): keep doctor adapter inside boundary
35 lines
837 B
JSON
35 lines
837 B
JSON
{
|
|
"id": "whatsapp",
|
|
"doctorContract": {
|
|
"configRepair": true,
|
|
"stateMigrations": true
|
|
},
|
|
"name": "WhatsApp",
|
|
"description": "OpenClaw WhatsApp channel plugin for WhatsApp Web chats.",
|
|
"icon": "https://cdn.simpleicons.org/whatsapp",
|
|
"skills": ["./skills"],
|
|
"activation": {
|
|
"onStartup": false
|
|
},
|
|
"contracts": {
|
|
"tools": ["whatsapp_call"]
|
|
},
|
|
"channels": ["whatsapp"],
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"pluginHooks": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"messageReceived": {
|
|
"type": "boolean",
|
|
"description": "Opt in to broadcasting inbound WhatsApp message_received hook payloads to loaded plugins."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|