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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Quick Start
- cURL
- TypeScript (Server SDK)
- Python
- Core Configuration
- Model (required)
- Voice
- Transcriber
- Behavior Configuration
- First Message
- Background Sound
- Backchanneling
- HIPAA Compliance
- Adding Tools
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/serverWhat 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.
