skills$openclaw/pamela-calls
eypam1.6k

by eypam

pamela-calls – OpenClaw Skill

pamela-calls is an OpenClaw Skills integration for coding workflows. Make AI-powered phone calls with Pamela's voice API. Create outbound calls, register custom tools for mid-call actions, handle webhooks, and build React UIs. Use when the user wants to make phone calls, integrate voice AI, build IVR systems, navigate phone menus, or automate phone tasks.

1.6k stars2.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namepamela-calls
descriptionMake AI-powered phone calls with Pamela's voice API. Create outbound calls, register custom tools for mid-call actions, handle webhooks, and build React UIs. Use when the user wants to make phone calls, integrate voice AI, build IVR systems, navigate phone menus, or automate phone tasks. OpenClaw Skills integration.
ownereypam
repositoryeypam/pamela-calls
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @eypam/pamela-calls
last updatedFeb 7, 2026

Maintainer

eypam

eypam

Maintains pamela-calls in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
454 B
SKILL.md
4.3 KB
SKILL.md

name: pamela-calls description: Make AI-powered phone calls with Pamela's voice API. Create outbound calls, register custom tools for mid-call actions, handle webhooks, and build React UIs. Use when the user wants to make phone calls, integrate voice AI, build IVR systems, navigate phone menus, or automate phone tasks.

Pamela Voice API Skill

Make AI-powered phone calls with native phone tree navigation.

Jump to: Installation · Quick Start · Use Cases · SDK Reference

Prerequisites

  • API subscription (required for API access)
  • API key from your developer account
  • Node.js 18+ (for JS/React) or Python 3.8+ (for Python)

Installation

JavaScript/TypeScript:

npm install @thisispamela/sdk

Python:

pip install thisispamela

React:

npm install @thisispamela/react @thisispamela/sdk

CLI:

npm install -g @thisispamela/cli

Getting Your API Key

  1. Sign up for an API subscription at developer.thisispamela.com
  2. Navigate to the API settings panel
  3. Set up billing through Stripe
  4. Click "Create API Key"
  5. Save immediately - the full key (starts with pk_live_) is only shown once

Quick Start

Note: Phone numbers must be in E.164 format (e.g., +1234567890).

JavaScript

import { PamelaClient } from '@thisispamela/sdk';

const client = new PamelaClient({ apiKey: 'pk_live_...' });

const call = await client.createCall({
  to: '+1234567890',
  task: 'Call the pharmacy and check if my prescription is ready',
  voice: 'female',
  agent_name: 'Pamela',
});

const status = await client.getCall(call.id);
console.log(status.transcript);

Python

from pamela import PamelaClient

client = PamelaClient(api_key="pk_live_...")

call = client.create_call(
    to="+1234567890",
    task="Call the pharmacy and check if my prescription is ready",
    voice="female",
    agent_name="Pamela",
)

status = client.get_call(call["id"])
print(status["transcript"])

CLI

export PAMELA_API_KEY="pk_live_..."

thisispamela create-call \
  --to "+1234567890" \
  --task "Call the pharmacy and check if my prescription is ready"

Use Cases

Use CaseExample Task
Appointment Scheduling"Call the dentist and schedule a cleaning for next week"
Order Status"Call the pharmacy and check if my prescription is ready"
Customer Support"Navigate the IVR menu to reach billing department"
Information Gathering"Call the restaurant and ask about vegetarian options"
Follow-ups"Call to confirm the appointment for tomorrow at 2pm"
IVR Navigation"Navigate the phone menu to reach a human representative"

Key Features

  • Phone tree navigation - Automatically navigates IVR menus, handles holds and transfers
  • Custom tools - Register tools the AI can call mid-conversation
  • Real-time transcripts - Webhook updates as the call progresses
  • React components - Pre-built UI for call status and transcripts

SDK Reference

For detailed SDK documentation:

Webhooks

Pamela sends webhooks for call lifecycle events:

  • call.queued - Call created and queued
  • call.started - Call connected
  • call.completed - Call finished successfully
  • call.failed - Call failed
  • call.transcript_update - New transcript entries

Verify webhook signatures with the X-Pamela-Signature header.

Billing

  • $0.10/minute for API usage
  • Minimum 1 minute per call
  • Only connected calls are billed
  • API subscription required

Troubleshooting

"Invalid API key"

  • Verify key starts with pk_live_
  • Check key is active in the API settings panel

"403 Forbidden"

  • API subscription required
  • Check subscription status at developer.thisispamela.com

"Invalid phone number"

  • Use E.164 format with country code: +1234567890

Resources

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- API subscription (required for API access) - API key from your developer account - Node.js 18+ (for JS/React) or Python 3.8+ (for Python)

FAQ

How do I install pamela-calls?

Run openclaw add @eypam/pamela-calls in your terminal. This installs pamela-calls into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/eypam/pamela-calls. Review commits and README documentation before installing.