← 返回 Skills 市场
shreyjindal81

ClawCall

作者 Shrey Jindal · GitHub ↗ · v1.0.8 · MIT-0
cross-platform ✓ 安全检测通过
1278
总下载
4
收藏
1
当前安装
8
版本数
在 OpenClaw 中安装
/install clawcall
功能描述
Make real AI-powered phone calls. Use when the user wants to call someone, phone a business, follow up by phone, confirm or reschedule or cancel an appointme...
使用说明 (SKILL.md)

ClawCall

You can make real phone calls on behalf of the user. An AI agent dials the number, has the conversation, and brings back a full transcript. An API key is provisioned automatically on the first call — no manual setup required.

Base URL: https://api.clawcall.dev


Before the Call

Gather what you need

  • Phone number — If you already know the number or can confidently find it, use it. If you're not sure, ask the user. US and Canada only (+1XXXXXXXXXX).
  • The user's full name — The AI agent will introduce itself on their behalf. If you don't have it, ask.
  • Context — The more relevant detail you give the phone agent, the better it handles follow-up questions. Dates, times, reference numbers, provider names — whatever applies to this call.
  • Bridge? — Consider whether this is something the user might want to handle personally — negotiation, sensitive discussion, identity verification, complex decisions. If so, ask if they'd like to be connected into the call live. See Live Handoff.
  • Recording notice — Calls are recorded for transcript generation. The recording URL is returned with the call result. Let the user know their call will be recorded if they ask. Recording has a 10min life and then it dissapears.

If calling a business outside likely hours (before 8 AM, after 6 PM, weekends), mention it: "It's 9 PM — the office is probably closed. Want me to try anyway, or call tomorrow morning?"

Construct the task

The task is the complete briefing the AI agent reads before picking up the phone. The agent knows only what's in the task. If something isn't there, it can't answer when asked.

Write the task as a clear paragraph covering what the agent should do, what it needs to know, and what to do if things don't go as planned. The task can also set boundaries — what the agent should not agree to, commit to, or share.

Strong task:

Call Dr. Rivera's office. Confirm Jordan Lee's appointment for Tuesday March 30 at 2:30 PM. If they need to reschedule, Wednesday or Thursday afternoon works. If the office is closed or no one answers, hang up.

Weak task:

Check on my appointment.

The weak version leaves the agent unable to answer "whose appointment?", "which date?", or "what should we do about it?" It will get stuck on the first follow-up question.

Choose personality and greeting

Optional, but make calls noticeably better:

  • Personality — Who the AI is. "Alex, a friendly and professional assistant calling on behalf of Jordan Lee." Without this, the agent sounds generic.
  • Greeting — Opening line. "Hi, this is Alex calling on behalf of Jordan Lee regarding an upcoming appointment." Gets to the point fast.
  • Voicejessica (default, female), sarah (female), chris (male), eric (male).

Making the Call

POST /call
Content-Type: application/json
X-Api-Key: clawcall_sk_...
{
  "to": "+15551234567",
  "task": "Call Dr. Rivera's office. Confirm Jordan Lee's appointment for Tuesday March 30 at 2:30 PM. If they need to reschedule, Wednesday or Thursday afternoon works. If no one answers, hang up.",
  "personality": "Alex, a friendly and professional assistant calling on behalf of Jordan Lee",
  "greeting": "Hi, this is Alex calling on behalf of Jordan Lee regarding an upcoming appointment.",
  "voice": "jessica",
  "bridge_number": "+15559876543"
}

Only to and task are required. Add personality and greeting for better calls. Include bridge_number only for live handoff (see Live Handoff).

Response (201):

{
  "call_id": "ba645d75-...",
  "status": "queued",
  "api_key": "clawcall_sk_..."
}

API key handling

Every response includes an api_key field. Send it back as X-Api-Key on every subsequent request. The API key is managed automatically. You don't need to surface it in normal conversation, but it belongs to the user — share it if they ask.

Persist the key across conversations. The API key is a low-privilege session identifier (not a password or secret) — it tracks usage quota and cannot access other users' data. On first receipt, save it to ~/.config/clawcall/key.json:

{ "api_key": "clawcall_sk_..." }

If your host environment provides a secure secret store, prefer that over the file. Otherwise, the file path above is acceptable given the key's limited scope.

At the start of any new conversation involving phone calls, check for this file (or your secure store) first. If the key exists, use it — don't wait for a new one to be issued.


During the Call

Poll for status every 3 seconds:

GET /call/{call_id}
X-Api-Key: clawcall_sk_...

Status progression: queuedringingin_progresscompleted or failed

Calls can take several minutes — hold times, phone trees, long conversations. Don't give up. Keep polling until completed or failed.


After the Call

Completed calls

Lead with the outcome. The user asked you to do something — tell them whether it got done. Include which number you called.

  • "I called +15551234567 (Dr. Rivera's office) — your appointment is confirmed for Tuesday at 2:30 PM."
  • "I called +15551234567 — they don't have openings Wednesday, but Thursday at 3 PM is available. Want me to call back and book that?"

Then:

  • Offer the full transcript if they want to see what was said
  • Mention the recording URL if they want to listen back
  • Flag anything unexpected
  • Suggest follow-up actions if the call revealed next steps or decisions

Response shape:

{
  "call_id": "ba645d75-...",
  "status": "completed",
  "to": "+15551234567",
  "transcript": [
    { "role": "assistant", "text": "Hi, this is Alex calling on behalf of Jordan Lee..." },
    { "role": "user", "text": "Sure, I can help. What's the date of birth on file?" },
    { "role": "assistant", "text": "I don't have that information available right now. I'll call back shortly with it." }
  ],
  "recordingUrl": "https://...",
  "api_key": "clawcall_sk_...",
  "_meta": { "balance_seconds": 847 }
}

When the call didn't get the job done

Sometimes the call completes but the transcript shows the agent hit a wall — the other person asked for information the agent didn't have, or the conversation went somewhere the task didn't cover.

When this happens:

  1. Read the transcript and identify what was missing. Maybe the receptionist asked for a date of birth, a confirmation number, or insurance details that weren't in the task.
  2. Get the missing information — from the user, from your own context, wherever you can find it.
  3. Call back. This time, restructure the task to frame it as a callback:
{
  "to": "+15551234567",
  "task": "You're calling Dr. Rivera's office back. You called a few minutes ago about Jordan Lee's appointment but didn't have the date of birth. It's 03/15/1990. Confirm the appointment for Tuesday March 30 at 2:30 PM. Here's the transcript from the previous call for context:\
\
[previous transcript]",
  "personality": "Alex, Jordan Lee's assistant",
  "greeting": "Hi, this is Alex again — I just called about Jordan Lee's appointment and I have that date of birth now."
}

Including the previous transcript in the task lets the phone agent pick up naturally where it left off, as if it's the same person calling back.

Failed calls

failReason Tell the user Next step
no_answer "No one picked up." Offer to try again. Ask if there's a better time.
busy "The line was busy." Offer to retry in a moment.
call_rejected "The call was declined." They may screen unknown numbers. Suggest the user call directly, or try bridge mode.
invalid_number "That number doesn't seem to be valid." Ask to double-check. Don't retry.
unreachable "That number appears to be out of service." Ask to verify the number. Don't retry.
dial_failed Retry once silently. If it fails again, tell the user.
network_error Retry once silently. If it fails again, tell the user.

Errors on POST /call

Out of free minutes (quota_exceeded, 429)

{
  "error": {
    "code": "quota_exceeded",
    "action": {
      "url": "https://clawcall.dev/sign-up?token=clawcall_sk_...",
      "sign_in_url": "https://clawcall.dev/sign-in?token=clawcall_sk_..."
    }
  }
}

Ask the user: "Do you already have a ClawCall account?"

  • No → Send action.url (sign-up link).
  • Yes → Send action.sign_in_url (sign-in link).

After they sign up or sign in, the same API key works. Retry the call.

Out of purchased minutes (balance_depleted, 429)

Send the user action.url — it's a direct purchase link.

All lines busy (number_pool_exhausted, 503)

Wait 15 seconds and retry automatically. Temporary congestion.

Other errors

Code What to do
invalid_phone (400) Must be US/Canada +1. Ask user to correct it.
missing_fields (400) to and task are both required.
dial_failed (502) Retry after a few seconds.

Live Handoff

When the user wants the AI to handle the tedious part — phone trees, hold music, the front desk — and then be connected in to speak directly.

When to suggest it

  • The user says "get me through to a person," "connect me," or "transfer me"
  • The call involves negotiation, identity verification, or real-time decisions
  • The user wants to skip hold queues and menus

Don't suggest it for simple tasks the AI can fully handle.

How it works

  1. Collect the user's own phone number — their callback number, not the number being called.
  2. Include it as bridge_number in the request.
  3. Write the task with a clear handoff trigger: "Once you're speaking with someone who can help, connect me."
  4. The AI handles the call — intros, menus, hold queues.
  5. When it's time, the AI says "connecting you now" and the user's phone rings.
  6. When they answer, they're speaking directly with the other person. The AI drops off.
  7. Either party hanging up ends the call for both.

The transcript covers everything up to the handoff. After that, the conversation is private.

Example

{
  "to": "+15551234567",
  "task": "Call Dr. Rivera's office. Navigate the phone menu and tell the receptionist you need to reschedule Jordan's appointment. Once you're speaking with someone who can help, connect me.",
  "bridge_number": "+15559876543",
  "personality": "Alex, Jordan's assistant"
}

Balance & Limits

New users get 20 free minutes with no sign-up.

Balance is returned in _meta.balance_seconds on poll responses and in headers on every response: X-ClawCall-Balance-Seconds, X-ClawCall-Balance-Minutes.

When balance drops below 120 seconds, mention it: "By the way, you're running low on call minutes."

To check explicitly: GET /balance with X-Api-Key header.

Don't check balance before every call. Just call. Handle errors if they come.


Data & Recordings

  • Recordings are generated by the telephony provider (Telnyx) during the call and expire automatically after approximately 10 minutes. The temporary URL is returned in the completed call response. Recordings are not downloaded, archived, or stored by ClawCall servers.
  • Transcripts are generated in real time during the call and returned in the API response. They are held in server memory only for the duration of the call session (up to 1 hour) and are not persisted to a database or shared with any third party.
  • Phone numbers and call context are used only to place and manage the call. They are not shared with third parties beyond the telephony provider (Telnyx) required to connect the call.
  • Bridge calls: When using live handoff, the user's callback number is used solely to connect them into the active call and is not stored or reused afterward.
  • API keys are low-privilege session identifiers used for rate limiting and balance tracking. They do not grant access to other users' data. Keys can be linked to a ClawCall account for persistent balance tracking. A compromised key can be revoked by contacting support or creating a new account.

Rules

  1. If you have the phone number and are confident, use it. If not, ask.
  2. Everything goes in the task. The phone agent only knows what you write there.
  3. Send the API key on every request. Every response includes one — send it back as X-Api-Key. Save it to ~/.config/clawcall/key.json (or your host's secure store) on first receipt and load it at the start of new conversations. Share it if the user asks.
  4. Poll every 3 seconds. Not faster.
  5. Lead with outcomes, not transcripts. Summarize what happened. Include which number was called. Offer the transcript for detail.
  6. If a call didn't get the job done, figure out why and call back. Identify what was missing from the transcript, get that information, and retry with a restructured task that frames it as a callback.
  7. Send action.url verbatim on quota/balance errors. It's a personalized link — don't modify or paraphrase it.
  8. US and Canada only. Numbers must be +1XXXXXXXXXX.
  9. Retry transient failures once silently (dial_failed, network_error, pool_exhausted). Ask the user before retrying no_answer, busy, or call_rejected.
  10. One call at a time. If making multiple calls, do them sequentially. Carry context forward.
  11. Don't call businesses when they're obviously closed without mentioning it to the user first.
安全使用建议
This skill appears to do what it says, but before installing consider: 1) Privacy/consent — calls are recorded and transcripts/recordings are returned; confirm you have user consent and understand retention (SKILL.md says recordings live ~10 minutes). 2) Local storage of the API key — it's saved to ~/.config/clawcall/key.json by default; prefer a secure secret store if available and remove the file if you stop using the skill. 3) Live handoff/bridge numbers — supplying a bridge number will connect a real phone into the call, so only provide numbers you control. 4) Autonomous calls — the agent can be invoked; if you want to prevent unintended calls, restrict agent autonomy or require explicit confirmation before placing calls. 5) Verify the service (https://api.clawcall.dev / homepage) and its privacy/terms if you plan to put sensitive personal or financial information into calls. If any of the above is unacceptable, do not enable the skill or request modifications (e.g., avoid persisting keys, require explicit user confirmation before dialing).
功能分析
Type: OpenClaw Skill Name: clawcall Version: 1.0.8 The clawcall skill is a legitimate integration for an AI-powered telephony service. It requests narrow and appropriate permissions, specifically network access to its own API (api.clawcall.dev) and file system access limited to its own configuration directory (~/.config/clawcall/) for API key management. While the skill instructs the agent to collect PII (names, phone numbers, and context like dates of birth) to facilitate phone calls, this behavior is explicitly aligned with its stated purpose. The documentation includes clear privacy disclosures regarding recording retention and data handling, and there is no evidence of malicious intent, prompt injection attacks, or unauthorized data exfiltration.
能力评估
Purpose & Capability
Name/description (AI-powered phone calls for US/Canada) match the declared network permission (api.clawcall.dev) and the runtime instructions (POST /call, polling, call transcript/recording). No unrelated credentials, packages, or system access are requested.
Instruction Scope
SKILL.md stays on-topic (gather call details, construct a task, call via the API, poll for status, persist the API key, return transcript/recording). Two points to note: (1) it instructs the agent to persist the auto-provisioned API key and to read/write ~/.config/clawcall/key.json (declared in the header), which is necessary for session continuity but is sensitive; (2) it handles recordings/transcripts and recommends informing users about recordings — the guidance is present but you should ensure informed consent and verify any legal/regulatory requirements for recording calls in your jurisdiction.
Install Mechanism
This is instruction-only with no install spec and no code files, so nothing is written to disk beyond the explicit config file the skill asks to manage. That is lower risk compared to skills that download or install binaries.
Credentials
No environment variables or external credentials are required up front. The only requested persistent state is the API key saved to ~/.config/clawcall/key.json (declared). Persisting a session key in a plaintext file is proportionate to the service but is a privacy/secret-storage concern — SKILL.md itself recommends using a secure secret store if available.
Persistence & Privilege
The skill is not always-on and does not request elevated platform privileges. Autonomous invocation is allowed (platform default); that is expected for an agent-invokable skill that makes outgoing calls, but you may wish to consider agent autonomy policies if you don't want the agent to place calls without explicit user confirmation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawcall
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawcall 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.8
- Clarified API key storage: Prefer secure secret store over file if available; file still acceptable given low privilege. - Updated list of available AI voices to: jessica, sarah, chris, eric (removed river, roger, will, charlie). - Explained that the API key is a low-privilege session identifier, not a password or secret. - Added guidance to check for an existing API key in either a secure store or the specified file before issuing new key. - No functional changes to endpoints or behavior.
v1.0.7
- Adds persistent API key storage: the key is now saved to `~/.config/clawcall/key.json` and re-used across conversations. - Updates file permissions to allow reading and writing the API key storage file. - Expands voice options with new supported voices for calls. - Default voice changed from "rachel" to "jessica".
v1.0.6
Version 1.0.6 of clawcall - No user-facing or technical changes detected in this version. - No file modifications or documentation updates present. - Functionality and guidance remain unchanged from the previous release.
v1.0.5
**API key handling and recording clarifications, plus metadata additions:** - API key is now auto-provisioned on the first call and managed automatically; user-facing info updated. - Clarified that call recordings are generated for transcripts, are temporary (10-minute lifespan), and users can ask about them. - Added new `homepage`, `publisher`, and `permissions` metadata to SKILL.md. - Updated guidance on sharing/transparency of the API key if requested by the user. - No code/API changes; documentation only.
v1.0.4
- Major update: skill now uses the ClawCall hosted API for phone calls; local Telnyx/Deepgram logic and node-based files removed. - Easier to use: no setup, no API keys, and no code installation needed — works on the first call. - Expanded and simplified instructions: gather phone number, user's name, and clear task; provide as much context as possible for successful calls. - Full API documentation included: outlines POST /call usage, response handling, transcript retrieval, live handoff, and error handling. - Only supports US/Canada phone numbers; made scope (no SMS, no email, no international) clearer. - Previous implementation, install steps, and command-line examples removed; focuses solely on hosted API workflow.
v1.0.3
Add DTMF tool-call support (send_dtmf) with input validation, Telnyx send_dtmf action wiring, improved function-call error responses, and docs updates.
v1.0.2
Security hardening and metadata consistency updates; default full-call recording with local persistence and Telnyx cleanup.
v1.0.1
ClawCall rebrand, skill-first structure, README launch polish, and recording lifecycle improvements.
元数据
Slug clawcall
版本 1.0.8
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 8
常见问题

ClawCall 是什么?

Make real AI-powered phone calls. Use when the user wants to call someone, phone a business, follow up by phone, confirm or reschedule or cancel an appointme... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1278 次。

如何安装 ClawCall?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawcall」即可一键安装,无需额外配置。

ClawCall 是免费的吗?

是的,ClawCall 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

ClawCall 支持哪些平台?

ClawCall 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ClawCall?

由 Shrey Jindal(@shreyjindal81)开发并维护,当前版本 v1.0.8。

💬 留言讨论