Files
openclaw/extensions/whatsapp/openclaw.plugin.json
Peter Steinberger 82610d3b15 feat(whatsapp): add requester-bound MeowCaller calls (#99635)
* feat(whatsapp): add requester-bound MeowCaller calls

* fix(whatsapp): align MeowCaller CLI contract

* test(whatsapp): narrow MeowCaller audio path

* fix(whatsapp): budget MeowCaller setup phases

* feat(whatsapp): gate experimental calls

* fix(whatsapp): use managed call temp storage

* fix(whatsapp): preserve channel entry boundary
2026-07-04 02:19:28 -07:00

31 lines
756 B
JSON

{
"id": "whatsapp",
"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."
}
}
}
}
}
}