From callme
Initiates phone calls for real-time voice input, progress reports, and task discussions when text is insufficient.
npx claudepluginhub zeframlou/call-me --plugin callmeThis skill uses the workspace's default tool permissions.
Call the user on the phone for real-time voice conversations. Use this when you need input, want to report on completed work, or need to discuss next steps.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
Call the user on the phone for real-time voice conversations. Use this when you need input, want to report on completed work, or need to discuss next steps.
Use when:
Do NOT use for:
initiate_callStart a phone call with the user.
Parameters:
message (string): What you want to say. Be natural and conversational.Returns:
continue_callContinue an active call with a follow-up message.
Parameters:
call_id (string): The call ID from initiate_callmessage (string): Your follow-up messageReturns:
speak_to_userSpeak a message on an active call without waiting for a response. Use this to acknowledge requests or provide status updates before starting time-consuming operations.
Parameters:
call_id (string): The call ID from initiate_callmessage (string): What to say to the userReturns:
When to use:
end_callEnd an active call with a closing message.
Parameters:
call_id (string): The call ID from initiate_callmessage (string): Your closing message (say goodbye!)Returns:
Simple conversation:
1. initiate_call: "Hey! I finished the auth system. Should I move on to the API endpoints?"
2. User responds: "Yes, go ahead"
3. end_call: "Perfect! I'll start on the API endpoints. Talk soon!"
Multi-turn conversation:
1. initiate_call: "I'm working on payments. Should I use Stripe or PayPal?"
2. User: "Use Stripe"
3. continue_call: "Got it. Do you want the full checkout flow or just a simple button?"
4. User: "Full checkout flow"
5. end_call: "Awesome, I'll build the full Stripe checkout. I'll let you know when it's ready!"
Using speak_to_user for long operations:
1. initiate_call: "Hey! I finished the database migration. What should I work on next?"
2. User: "Can you look up the latest API documentation for Stripe?"
3. speak_to_user: "Sure! Let me search for that. Give me a moment..."
4. [Perform web search and gather information]
5. continue_call: "I found the latest Stripe API docs. They released v2024.1 with new payment methods..."
6. User: "Great, implement that"
7. end_call: "Perfect! I'll implement the new payment methods. Talk soon!"
speak_to_user to acknowledge the request so the user isn't left wondering what's happening