npx claudepluginhub zeframlou/call-meClaude calls you on the phone when it needs your input or wants to report progress
Minimal plugin that lets Claude Code call you on the phone.
Start a task, walk away. Your phone/watch rings when Claude is done, stuck, or needs a decision.
You'll need:
Choose one of the following:
https://your-ngrok-url/twiml and API version to v2
Environment variables for Telnyx:
CALLME_PHONE_PROVIDER=telnyx
CALLME_PHONE_ACCOUNT_SID=<Application ID>
CALLME_PHONE_AUTH_TOKEN=<API Key>
CALLME_TELNYX_PUBLIC_KEY=<Public Key> # Optional: enables webhook security
Environment variables for Twilio:
CALLME_PHONE_PROVIDER=twilio
CALLME_PHONE_ACCOUNT_SID=<Account SID>
CALLME_PHONE_AUTH_TOKEN=<Auth Token>
Add these to ~/.claude/settings.json (recommended) or export them in your shell:
{
"env": {
"CALLME_PHONE_PROVIDER": "telnyx",
"CALLME_PHONE_ACCOUNT_SID": "your-connection-id-or-account-sid",
"CALLME_PHONE_AUTH_TOKEN": "your-api-key-or-auth-token",
"CALLME_PHONE_NUMBER": "+15551234567",
"CALLME_USER_PHONE_NUMBER": "+15559876543",
"CALLME_OPENAI_API_KEY": "sk-...",
"CALLME_NGROK_AUTHTOKEN": "your-ngrok-token"
}
}
| Variable | Description |
|---|---|
CALLME_PHONE_PROVIDER | telnyx (default) or twilio |
CALLME_PHONE_ACCOUNT_SID | Telnyx Connection ID or Twilio Account SID |
CALLME_PHONE_AUTH_TOKEN | Telnyx API Key or Twilio Auth Token |
CALLME_PHONE_NUMBER | Phone number Claude calls from (E.164 format) |
CALLME_USER_PHONE_NUMBER | Your phone number to receive calls |
CALLME_OPENAI_API_KEY | OpenAI API key (for TTS and realtime STT) |
CALLME_NGROK_AUTHTOKEN | ngrok auth token for webhook tunneling |
| Variable | Default | Description |
|---|---|---|
CALLME_TTS_VOICE | onyx | OpenAI voice: alloy, echo, fable, onyx, nova, shimmer |
CALLME_PORT | 3333 | Local HTTP server port |
CALLME_NGROK_DOMAIN | - | Custom ngrok domain (paid feature) |
CALLME_TRANSCRIPT_TIMEOUT_MS | 180000 | Timeout for user speech (3 minutes) |
CALLME_STT_SILENCE_DURATION_MS | 800 | Silence duration to detect end of speech |
CALLME_TELNYX_PUBLIC_KEY | - | Telnyx public key for webhook signature verification (recommended) |
/plugin marketplace add ZeframLou/call-me
/plugin install callme@callme
Restart Claude Code. Done!