Agent skill

create-assistant

Create and configure Vapi voice AI assistants with models, voices, transcribers, tools, hooks, and advanced settings. Use when building voice agents, phone bots, customer support assistants, or any conversational AI that handles phone or web calls.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill create-assistant-vapiai-skills --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.0
Declared author: vapi
Requires: Requires internet access and a Vapi API key (VAPI_API_KEY).
Path: skills/agent/create-assistant-vapiai-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Vapi Assistant Creation Create fully configured voice AI assistants using the Vapi API. Assistants combine a language model, voice, and transcriber to handle real-time phone and web conversations. > **Setup:** Ensure `VAPI_API_KEY` is set. See the `setup-api-key` skill if needed. ## Quick Start ### cURL ```bash curl -X POST https://api.vapi.ai/assistant \ -H "Authorization: Bearer $VAPI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Support Assistant", "firstMessage": "Hello! How can I help you today?", "model": { "provider": "openai", "model": "gpt-4.1", "messages": [ { "role": "system", "content": "You are a friendly phone support assistant. Keep responses concise and under 30 words." } ] }, "voice": { "provider": "vapi", "voiceId": "Elliot" }, "transcriber": { "provider": "deepgram", "model": "nova-3", "language": "en" } }' ``` ### TypeScript (Server SDK) ```typescript import { VapiClient } from "@vapi-ai/server-sdk"; const vapi = new VapiClient({ token: process.env.VAPI_API_KEY! }); const assistant = await vapi.assistants.create({ name: "Support Assistant", firstMessage: "Hello! How can I help you today?", model: { provider: "openai", model: "gpt-4.1", messag

What's inside
Steps it walks through
  1. Quick Start
  2. cURL
  3. TypeScript (Server SDK)
  4. Python
  5. Core Configuration
  6. Model (required)
  7. Voice
  8. Transcriber
  9. Behavior Configuration
  10. First Message
  11. Background Sound
  12. Backchanneling
  13. HIPAA Compliance
  14. Adding Tools
Ships with 1 file
  • metadata.json
Commands it runs
curl -X POST https://api.vapi.ai/assistant \
curl https://api.vapi.ai/assistant \
curl https://api.vapi.ai/assistant/{id} \
curl -X PATCH https://api.vapi.ai/assistant/{id} \
curl -X DELETE https://api.vapi.ai/assistant/{id} \
claude mcp add vapi-docs -- npx -y mcp-remote https://docs.vapi.ai/_mcp/server
More from claude-skill-registry
All skills →
About this skill
What does the create-assistant skill do?

Create and configure Vapi voice AI assistants with models, voices, transcribers, tools, hooks, and advanced settings. Use when building voice agents, phone bots, customer support assistants, or any conversational AI that handles phone or web calls.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill create-assistant-vapiai-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going