# Send Vapi AI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vapi",
    "name": "Vapi AI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/colygon/vapi",
    "canonicalUrl": "https://clawhub.ai/colygon/vapi",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vapi",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vapi",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "bin/vapi-api.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vapi",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T13:19:25.188Z",
      "expiresAt": "2026-05-17T13:19:25.188Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vapi",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vapi",
        "contentDisposition": "attachment; filename=\"vapi-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vapi"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vapi"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vapi",
    "downloadUrl": "https://openagent3.xyz/downloads/vapi",
    "agentUrl": "https://openagent3.xyz/skills/vapi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vapi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vapi/agent.md"
  }
}
```
## Documentation

### Vapi (vapi.ai) — OpenClaw Skill

Use this skill when you need to manage Vapi voice agents (assistants), calls, phone numbers, tools, and webhooks from an OpenClaw agent.

This skill is API-first (Vapi REST) and optionally integrates with the Vapi CLI for MCP docs / local workflows.

### What you can do

Create/update/list assistants
Start/inspect/end calls
Manage phone numbers
Create/manage tools (function calling)
Configure webhooks and inspect events

### Required secrets

Set one of:

VAPI_API_KEY (recommended) — Vapi dashboard API key.

### How to provide the key (recommended)

Store as a Gateway secret/env var (preferred), or
Export in your shell before running helper scripts.

Never paste the key into public logs.

### Endpoints

Base URL:

https://api.vapi.ai

Auth:

Authorization: Bearer $VAPI_API_KEY

API reference:

https://api.vapi.ai/api (Swagger)

### Tooling options

This skill supports both approaches; you can decide later per deployment.

Set VAPI_MODE=api to prefer REST (default)
Set VAPI_MODE=cli to prefer the Vapi CLI (interactive)

### Option A — REST via helper script (works everywhere)

This repo includes a tiny Node helper:

skills/vapi/bin/vapi-api.mjs

Examples:

# list assistants
VAPI_API_KEY=... node skills/vapi/bin/vapi-api.mjs assistants:list

# create assistant
VAPI_API_KEY=... node skills/vapi/bin/vapi-api.mjs assistants:create \\
  --name "Claw Con Concierge" \\
  --modelProvider openai --model gpt-4o-mini \\
  --voiceProvider 11labs --voiceId rachel

# start an outbound call (example shape; see swagger for required fields)
VAPI_API_KEY=... node skills/vapi/bin/vapi-api.mjs calls:create \\
  --assistantId asst_xxx \\
  --to "+14155551234" \\
  --from "+14155559876"

### Option B — Vapi CLI (good for interactive ops)

If VAPI_MODE=cli, prefer using the CLI for management tasks and fall back to REST if the CLI isn’t installed.

Docs:

https://docs.vapi.ai/cli
https://github.com/VapiAI/cli

Install:

curl -sSL https://vapi.ai/install.sh | bash
vapi login

### Option C — MCP docs server for your IDE

This improves IDE assistance (Cursor/Windsurf/VSCode):

https://docs.vapi.ai/cli/mcp

vapi mcp setup

### Agent usage guidance

When the user asks for Vapi changes:

Clarify scope: assistants vs phone numbers vs webhooks vs tool calls.
Prefer read-only queries first (list/get) before destructive changes.
When creating an assistant, ask for:

assistant name
model provider/model
voice provider/voice id
tools/function calling needs
webhook URL (if using server events)


When initiating calls, confirm:

to/from numbers
assistantId
compliance constraints (recording, consent)

### Files in this skill

skills/vapi/SKILL.md — this file
skills/vapi/bin/vapi-api.mjs — minimal REST helper

### Sources

Vapi docs intro: https://docs.vapi.ai/quickstart/introduction
Vapi CLI: https://github.com/VapiAI/cli
Vapi MCP: https://docs.vapi.ai/cli/mcp
Vapi API (Swagger): https://api.vapi.ai/api
Example server (Node): https://github.com/VapiAI/example-server-javascript-node
OpenClaw: https://github.com/openclaw/openclaw
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: colygon
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T13:19:25.188Z
- Expires at: 2026-05-17T13:19:25.188Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vapi)
- [Send to Agent page](https://openagent3.xyz/skills/vapi/agent)
- [JSON manifest](https://openagent3.xyz/skills/vapi/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vapi/agent.md)
- [Download page](https://openagent3.xyz/downloads/vapi)