Call Me banner
ZeframLou ZeframLou

Call Me

Development community intermediate

Description

**Minimal plugin that lets Claude Code call you on the phone.**

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

CallMe

**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.

  • Minimal plugin - Does one thing: call you on the phone. No crazy setups.
  • Multi-turn conversations - Talk through decisions naturally.
  • Works anywhere - Smartphone, smartwatch, or even landline!
  • Tool-use composable - Claude can e.g. do a web search while on a call with you.

Quick Start

1. Get Required Accounts

You'll need:

  • Phone provider: Telnyx or Twilio
  • OpenAI API key: For speech-to-text and text-to-speech
  • ngrok account: Free at ngrok.com (for webhook tunneling)

2. Set Up Phone Provider

Choose **one** of the following:

Option A: Telnyx (Recommended - 50% cheaper)

  1. Create account at portal.telnyx.com and verify your identity
  2. Buy a phone number (~$1/month)
  3. Create a Voice API application:
    • Set webhook URL to https://your-ngrok-url/twiml and API version to v2
      • You can see your ngrok URL on the ngrok dashboard
    • Note your Application ID and API Key
  4. Verify the phone number you want to receive calls at
  5. (Optional but recommended) Get your Public Key from Account Settings > Keys & Credentials for webhook signature verification

**Environment variables for Telnyx:**

CALLME_PHONE_PROVIDER=telnyx
CALLME_PHONE_ACCOUNT_SID=
CALLME_PHONE_AUTH_TOKEN=
CALLME_TELNYX_PUBLIC_KEY=  # Optional: enables webhook security

Option B: Twilio (Not recommended - need to buy $20 of credits just to start and more expensive overall)

  1. Create account at twilio.com/console

...