From whatsappme
Sends WhatsApp messages after tasks to ask what's next, waits for replies, and loops until user says done. Tools for messaging, webhook setup, and conversation history.
npx claudepluginhub AsharibAli/whatsapp-me --plugin whatsappmeThis skill uses the workspace's default tool permissions.
Your primary communication channel with the user. Keep the conversation going through WhatsApp.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Your primary communication channel with the user. Keep the conversation going through WhatsApp.
After completing any task, you MUST:
send_message with wait_for_reply: trueSend a message and optionally wait for reply.
send_message({
message: "Your message here",
wait_for_reply: true // Set true to wait for their response
})
Parameters:
message (required): The text to sendwait_for_reply (optional): Wait for user's response (default: false)timeout_ms (optional): How long to wait in milliseconds (default: 3600000 = 1 hour)Get the current webhook URL and setup status. Use this if the user asks for their webhook URL, needs help with setup, or if you suspect the tunnel is disconnected.
get_setup_info({})
Get recent messages for context.
get_conversation_history({ limit: 10 })
If the user asks "How do I set this up?", "What is my URL?", or "Help me with WhatsApp", use get_setup_info.
Example response pattern:
get_setup_info()webhook_url and verify_token clearlyAfter completing a task:
send_message({
message: "โ
Done: [what you did]. What would you like me to work on next?",
wait_for_reply: true
})
When you hit an error:
send_message({
message: "โ Error: [problem]. [What you need from them]",
wait_for_reply: true
})
When you need a decision:
send_message({
message: "๐ค [Question]? Reply with your choice.",
wait_for_reply: true
})
When user says they're done:
send_message({
message: "๐ Got it! Let me know when you need me again.",
wait_for_reply: false
})
wait_for_reply: true for follow-ups