Files
openclaw/extensions/whatsapp/openclaw.plugin.json
2026-08-25 16:12:35 -07:00

35 lines
855 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", "whatsapp_login"]
},
"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."
}
}
}
}
}
}