TopRank Skills

Home / Claw Skills / API 集成 / clawcall
Official OpenClaw rules 36%

clawcall

Give this agent a real phone number. Receive calls from the user, call user back when tasks complete, run scheduled calls, or call third parties on the user's behalf. All phone infrastructure is handled automatically via the ClawCall service.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 clawcall 技能。 若已安装,则直接安装 clawcall 技能。

Overview

Skill Key
clawcall/clawcall-phone
Author
clawcall
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/clawcall/clawcall-phone
Latest Commit SHA
d160f50982068fdf451e18e8e79f2b3c6379609b

Extracted Content

SKILL.md excerpt

# ClawCall — Phone Calls for Your Agent

ClawCall gives you a real phone number connected directly to this agent.
Users can call you, you can call them back when tasks finish, run scheduled
briefings, and place calls to third parties on the user's behalf.

---

## Setup (First Time Only)

If `CLAWCALL_API_KEY` is not set, run registration:

1. Ask the user: "What email should I use for your ClawCall account?"
2. Ask the user: "What's your personal phone number? (I'll call you on this)"
3. Call:

```
POST https://api.clawcall.online/api/v1/register
Content-Type: application/json

{
  "email": "<user email>",
  "agent_webhook_url": "<your public URL>",
  "agent_name": "<optional name>",
  "phone_number": "<user's E.164 phone, e.g. +14155550100>"
}
```

4. Store the returned `api_key` as `CLAWCALL_API_KEY`.
5. Tell the user their agent number and that setup is complete.

**Example success response:**
```json
{
  "ok": true,
  "api_key": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "phone_number": "+14155550192",
  "tier": "free",
  "message": "Setup complete! Your agent number is +14155550192."
}
```

---

## Receiving an Inbound Call

ClawCall will forward the caller's speech to your webhook as:

```
POST {your_webhook_url}/clawcall/message
{
  "call_sid": "CAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "message": "What's the weather like today?"
}
```

Your webhook must respond with:

```json
{
  "response": "It's currently 72°F and sunny.",
  "end_call": false
}
```

Set `"end_call": true` to hang up after speaking your response.

**Important:** Respond within 25 seconds. For tasks taking longer,
respond quickly with an intermediate message like:
`"On it, give me a second."` — ClawCall will keep the line active.

---

## Calling the User Back (Task Completion)

When you finish a background task the user asked you to report on:

```
POST https://api.clawcall.online/api/v1/calls/outbound/callback
Authorization: Bearer {CLAWCALL_API_KEY}
Content-Type: application/json

{
  "messa...

Related Claw Skills