Interact with WhatsApp via GOWA (Go WhatsApp Web Multi-Device) REST API for personal automation. Supports sending messages with ghost mentions (@everyone), images, documents, group management, and more. Always use REST mode (http://localhost:3000) for production.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install gowa或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install gowa⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/gowa/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: gowa description: Interact with WhatsApp via GOWA (Go WhatsApp Web Multi-Device) REST API for personal automation. Supports sending messages with ghost mentions (@everyone), images, documents, group management, and more. Always use REST mode (http://localhost:3000) for production. user-invocable: true command-dispatch: model ---
Interact with WhatsApp through GOWA (Go WhatsApp Web Multi-Device) REST API for personal automation tasks.
GOWA is available at: https://github.com/aldinokemal/go-whatsapp-web-multidevice
Go to the releases page and download the zip matching your OS and architecture.
Release files are named: whatsapp_VERSION_OS_ARCH.zip
Available platforms: linux (amd64/arm64/386), darwin (amd64/arm64), windows (amd64/386)
./gowa rest
The server starts on http://localhost:3000 by default.
Open http://localhost:3000 in a browser, scan the QR code with WhatsApp on your phone to link the device.
GOWA runs in REST mode:
http://localhost:3000X-Device-Id header needed for single-device setups.⚠️ Important: Use REST API (port 3000) only. Do NOT use MCP mode - all schedulers and automation depend on REST.
curl -X POST http://localhost:3000/send/message \
-H "Content-Type: application/json" \
-d '{
"phone": "[email protected]",
"message": "Important announcement",
"mentions": ["@everyone"]
}'
curl -X POST http://localhost:3000/send/message \
-H "Content-Type: application/json" \
-d '{"phone": "628123456789", "message": "Hello!"}'
curl -X POST http://localhost:3000/send/image \
-F "phone=628xxx" \
-F "caption=Photo" \
-F "image=@/path/to/image.jpg"
curl http://localhost:3000/app/status | jq .
Send Text with Ghost Mention:
POST /send/message{"phone": "[email protected]", "message": "text", "mentions": ["@everyone"]}Reply to Message:
{"phone": "...", "message": "...", "reply_message_id": "msg_id"}Disappearing Message:
{"phone": "...", "message": "...", "duration": 86400} (seconds)Forward Message:
{"phone": "...", "message": "...", "is_forwarded": true}Send Image:
POST /send/imagephone, caption, image (file), compress (bool)Send Document:
POST /send/filephone, caption, fileSend Video:
POST /send/videophone, caption, video, compress (bool)Send Audio:
POST /send/audiophone, audioSend Sticker:
POST /send/stickerphone, sticker (auto-converts to WebP)Send Contact:
POST /send/contact{"phone": "...", "contact_name": "...", "contact_phone": "..."}Send Location:
POST /send/location{"phone": "...", "latitude": 0.0, "longitude": 0.0}Send Link:
POST /send/link{"phone": "...", "link": "...", "caption": "..."}Send Poll:
POST /send/poll{"phone": "...", "question": "...", "options": ["A", "B"]}Get Status:
GET /app/status{"is_connected": true, "is_logged_in": true}Reconnect:
GET /app/reconnectLogout:
GET /app/logoutGet QR Code (for login):
GET /app/loginLogin with Pairing Code:
GET /app/login-with-code?phone=628xxxList My Groups:
GET /user/my/groups{results: {data: [...]}} - groups array is at .results.datacurl ... | jq '.results.data[] | {Name, JID, Members: .Participants | length}'Get Group Info:
GET /group/[email protected]Create Group:
POST /group{"name": "Group Name", "participants": ["[email protected]"]}Get Group Participants:
GET /group/[email protected]Add Participant:
POST /group/participants{"group_jid": "...", "participants": ["[email protected]"]}Remove Participant:
POST /group/participants/remove{"group_jid": "...", "participants": ["[email protected]"]}Promote to Admin:
POST /group/participants/promote{"group_jid": "...", "participants": ["[email protected]"]}Demote from Admin:
POST /group/participants/demote{"group_jid": "...", "participants": ["[email protected]"]}Leave Group:
POST /group/leave{"group_jid": "..."}Set Group Photo:
POST /group/photogroup_jid, photoSet Group Name:
POST /group/name{"group_jid": "...", "name": "..."}Set Group Description:
POST /group/topic{"group_jid": "...", "topic": "..."}Get Invite Link:
GET /group/[email protected]Join via Link:
POST /group/join-with-link{"link": "https://chat.whatsapp.com/..."}List Contacts:
GET /user/my/contactsGet Chats:
GET /chatsGet User Info:
GET /user/info?phone=628xxxCheck if User Exists:
GET /user/check?phone=628xxxRevoke/Delete Message:
POST /message/{message_id}/revokeReact to Message:
POST /message/{message_id}/reaction{"emoji": "👍"}Edit Message:
POST /message/{message_id}/update{"message": "edited text"}Mark as Read:
POST /message/{message_id}/readStar Message:
POST /message/{message_id}/starDownload Media:
GET /message/{message_id}/download[email protected][email protected]628123456789 (without +)How it works:
"mentions": ["@everyone"] in /send/messageExample for schedulers:
curl -s -X POST http://localhost:3000/send/message \
-H 'Content-Type: application/json' \
-d '{"phone": "[email protected]", "message": "Reminder text", "mentions": ["@everyone"]}' | jq .
Full OpenAPI 3.0 spec available at:
X-Device-Id header when running multiple devices安装 GOWA - WhatsApp Automation 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/gowa/ 目录(个人级,所有项目可用),或 .claude/skills/gowa/(项目级)。重启 AI 客户端后,用 /gowa 主动调用,或让 AI 根据上下文自动发现并使用。
GOWA - WhatsApp Automation 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
GOWA - WhatsApp Automation 可免费安装使用。请查阅仓库了解许可证信息。
Interact with WhatsApp via GOWA (Go WhatsApp Web Multi-Device) REST API for personal automation. Supports sending messages with ghost mentions (@everyone), images, documents, group management, and more. Always use REST mode (http://localhost:3000) for production.
GOWA - WhatsApp Automation 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。