Make AI phone calls instantly. No lag, no setup, unlimited scale.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install pamela-call或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install pamela-call⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/pamela-call/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: pamela-call description: Make AI phone calls instantly. No lag, no setup, unlimited scale. homepage: https://docs.thisispamela.com metadata: {"openclaw":{"requires":{"env":["PAMELA_API_KEY"]},"primaryEnv":"PAMELA_API_KEY","homepage":"https://docs.thisispamela.com"}} ---
Make AI phone calls instantly. No lag, no setup, unlimited scale. ThisIsPamela is a voice AI platform for outbound calls, phone tree navigation, and integration via SDKs, webhooks, and MCP.
Jump to: Installation · Quick Start · Examples · SDK Reference
ClawHub skill release: v1.1.12
JavaScript/TypeScript: (npm, yarn, or bun)
npm install @thisispamela/sdk
# or: yarn add @thisispamela/sdk
# or: bun add @thisispamela/sdk
Python:
pip install thisispamela
React: (npm, yarn, or bun)
npm install @thisispamela/react @thisispamela/sdk
# or: bun add @thisispamela/react @thisispamela/sdk
CLI:
npm install -g @thisispamela/cli
MCP (for MCP-based agents):
npm install @thisispamela/mcp
Widget (embeddable, no framework):
npm install @thisispamela/widget
Latest versions: SDK / CLI / Widget / MCP / Python / React 1.2.0.
pk_live_) is only shown oncepk_live_...) in public configs or logs.X-Pamela-Signature header and secure your endpoint; see SDK docs for verification.Note: Phone numbers must be in E.164 format (e.g., +1234567890).
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);
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"])
export PAMELA_API_KEY="pk_live_..."
thisispamela create-call \
--to "+1234567890" \
--task "Call the pharmacy and check if my prescription is ready"
| Scenario | Example 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" |
For detailed SDK documentation:
Pamela sends webhooks for call lifecycle events:
call.queued - Call created and queuedcall.started - Call connectedcall.completed - Call finished successfullycall.failed - Call failedcall.transcript_update - New transcript entriesOnly credential required is your API key. For webhooks, always verify the X-Pamela-Signature header; see SDK docs for verification.
"Invalid API key"
pk_live_"403 Forbidden"
"Invalid phone number"
+1234567890安装 Pamela Calls 后,可以对 AI 说这些话来触发它
Help me get started with Pamela Calls
Explains what Pamela Calls does, walks through the setup, and runs a quick demo based on your current project
Use Pamela Calls to make AI phone calls instantly
Invokes Pamela Calls with the right parameters and returns the result directly in the conversation
What can I do with Pamela Calls in my general tools workflow?
Lists the top use cases for Pamela Calls, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/pamela-call/ 目录(个人级,所有项目可用),或 .claude/skills/pamela-call/(项目级)。重启 AI 客户端后,用 /pamela-call 主动调用,或让 AI 根据上下文自动发现并使用。
Pamela Calls 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Pamela Calls 可免费安装使用。请查阅仓库了解许可证信息。
Make AI phone calls instantly. No lag, no setup, unlimited scale.
Pamela Calls 属于「General Tools」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my general tools tasks using Pamela Calls
Identifies repetitive steps in your workflow and sets up Pamela Calls to handle them automatically