Back to skills
SkillHub ClubShip Full StackFull Stack

phone-calls

Make and manage real phone calls through Twilio. Handles outbound calls with a stated objective, monitors call progress, and returns transcripts and summaries. Use when the user wants to call someone, check on a call, or review call history.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3,110
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
A88.4

Install command

npx @skill-hub/cli install openclaw-skills-phone-calls

Repository

openclaw/skills

Skill path: skills/batthis/amber-voice-assistant/packaging/cowork/skills/phone-calls

Make and manage real phone calls through Twilio. Handles outbound calls with a stated objective, monitors call progress, and returns transcripts and summaries. Use when the user wants to call someone, check on a call, or review call history.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install phone-calls into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding phone-calls to shared team environments
  • Use phone-calls for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: phone-calls
description: >
  Make and manage real phone calls through Twilio. Handles outbound calls
  with a stated objective, monitors call progress, and returns transcripts
  and summaries. Use when the user wants to call someone, check on a call,
  or review call history.
---

# Phone Calls

Amber can make and receive real phone calls via Twilio. This skill covers
the core telephony capabilities.

## MCP Tools

### make_call
Initiate an outbound phone call.
- `to` (string, required): Phone number in E.164 format (e.g., +14165551234)
- `objective` (string, required): What to accomplish on the call
- `mode` (string): "conversation" (default) or "message" (one-way delivery)

### get_call_status
Check the status of an active or recent call.
- `callId` (string, required): The call ID returned by make_call

### end_call
Terminate an active call.
- `callId` (string, required): The call ID to end

### get_call_history
Retrieve recent call logs with transcripts.
- `filter` (string): "all", "inbound", "outbound", "missed"
- `limit` (number): Number of calls to return (default: 10)

## Guidelines

- Always confirm the recipient number and call objective with the user before dialing
- If the objective involves payment, deposits, or financial commitments, explicitly ask the user for approval first
- After each call, provide a summary including: who was called, outcome, key information exchanged, and caller sentiment
- For outbound calls, Amber pursues the stated objective autonomously — she's not just reading a script
- Calls have real-world consequences. Treat every call as if you're representing the user professionally
phone-calls | SkillHub