mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 22:23:56 +00:00
* 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
31 lines
756 B
JSON
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."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|