[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vapi-create-assistant":3,"mdc--w8k9v6-key":40,"related-org-vapi-create-assistant":1218,"related-repo-vapi-create-assistant":1350},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":35,"sourceUrl":38,"mdContent":39},"create-assistant","create Vapi voice AI assistants","Create Vapi voice AI assistant payloads or assistants through the Vapi API. Use when building phone or web call agents, generating assistant JSON, choosing safe default model\u002Fvoice\u002Ftranscriber settings, attaching existing Vapi tool IDs, adding assistant hooks, configuring HIPAA\u002Fcompliance only when explicitly requested, or fixing Vapi assistant API validation errors.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"vapi","Vapi","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvapi.png","VapiAI",[13,17,20],{"name":14,"slug":15,"type":16},"Agents","agents","tag",{"name":18,"slug":19,"type":16},"API Development","api-development",{"name":21,"slug":22,"type":16},"Voice","voice",53,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills","2026-07-20T05:57:28.680409","MIT",7,[29,30,31,32,33,8,34],"agent-skills","claude-code","codex-skills","openclaw-skills","skills","vapi-ai",{"repoUrl":24,"stars":23,"forks":27,"topics":36,"description":37},[29,30,31,32,33,8,34],"A set of skills and MCP connector to allow agents to build Vapi AI agents, from creating tools and assistants to a phone call","https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills\u002Ftree\u002FHEAD\u002Fcreate-assistant","---\nname: create-assistant\ndescription: Create Vapi voice AI assistant payloads or assistants through the Vapi API. Use when building phone or web call agents, generating assistant JSON, choosing safe default model\u002Fvoice\u002Ftranscriber settings, attaching existing Vapi tool IDs, adding assistant hooks, configuring HIPAA\u002Fcompliance only when explicitly requested, or fixing Vapi assistant API validation errors.\nlicense: MIT\ncompatibility: Requires internet access and a Vapi API key (VAPI_API_KEY).\nmetadata:\n  author: vapi\n  version: \"2.0\"\n---\n\n# Vapi Assistant Creation\n\nCreate a valid Vapi assistant payload first. Call the Vapi API only when the user clearly asks to create the assistant in Vapi and `VAPI_API_KEY` is available.\n\n## Reliability Rules\n\n- Do not invent model names, voice IDs, tool IDs, credential IDs, assistant IDs, phone numbers, or server URLs.\n- Use the known-good defaults below when the user does not specify provider choices.\n- Verify any user-requested specific or latest model, voice, transcriber, hook, or provider shape in official Vapi docs, Vapi API responses, or the user's Vapi dashboard\u002FAPI value before using it.\n- Treat Vapi API validation errors as the source of truth. Correct the payload and retry rather than guessing.\n- Do not enable HIPAA or other paid\u002Fcompliance behavior unless the user explicitly asks for HIPAA, compliance mode, no recording, or no transcript storage.\n\n## Creation Workflow\n\n1. Determine the output mode.\n   - If the user asks for a payload, JSON, config, draft, or says not to call the API, return assistant JSON only.\n   - If the user asks to create in Vapi, add it to their Vapi account, make it live, or call the API, use `POST https:\u002F\u002Fapi.vapi.ai\u002Fassistant` with `VAPI_API_KEY`.\n   - If the user only says to create, build, or make an assistant and does not specify payload-only or live creation, ask: \"Do you want the assistant JSON only, or should I create it in your Vapi account if `VAPI_API_KEY` is available?\"\n   - Completion: the mode is clear before any live API request is sent.\n\n2. Build the smallest valid assistant.\n   - Include `name`, `firstMessage`, `model`, `voice`, and `transcriber`.\n   - Keep `name` at 40 characters or fewer, as enforced by the Vapi API.\n   - Put behavior in `model.messages[0].content`.\n   - Keep voice-agent prompts concise and spoken-response oriented.\n   - Completion: the payload can stand alone with a name of 40 characters or fewer and without placeholder IDs, URLs, phone numbers, or provider names.\n\n3. Apply safe defaults.\n   - Model: `{ \"provider\": \"openai\", \"model\": \"gpt-4.1\" }`\n   - Voice: `{ \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 }`\n   - English transcriber: `{ \"provider\": \"deepgram\", \"model\": \"flux-general-en\", \"language\": \"en\" }`\n   - Multilingual transcriber: `{ \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"multi\" }`\n   - Completion: defaults are used only where the user did not request a different provider.\n\n4. Add optional features only with enough exact information.\n   - Tools: include saved `model.toolIds` only when the user provides real Vapi tool IDs. Inline tools require a real server URL or an explicit draft-only request.\n   - Hooks: read [hooks reference](references\u002Fhooks.md) before adding hooks. Transfer, function, and notification hooks require exact destination numbers, server URLs, or tool definitions from the user.\n   - Non-default providers: read [provider policy](references\u002Fproviders.md) before using non-default model, voice, or transcriber shapes.\n   - Compliance: add `compliancePlan.hipaaEnabled` only when explicitly requested, and verify provider constraints.\n   - Completion: every optional field is backed by a user request or verified source.\n\n5. Validate before finalizing.\n   - Prefer Vapi's current OpenAPI schema and the API response as the final authority.\n   - Review the payload for placeholders, invented IDs, accidental paid compliance defaults, and Vapi voice configs missing `version: 2`.\n   - If creating the assistant, use the Vapi API response to resolve validation errors. Correct clear errors and retry only when the fix is supported by docs, API output, or exact user-provided values.\n   - Completion: the final payload has no placeholders, no accidental paid compliance defaults, Vapi voices use `version: 2`, and any API validation errors have been resolved.\n\n## Minimal Default Payload\n\n```json\n{\n  \"name\": \"Support Assistant\",\n  \"firstMessage\": \"Hello! How can I help you today?\",\n  \"model\": {\n    \"provider\": \"openai\",\n    \"model\": \"gpt-4.1\",\n    \"messages\": [\n      {\n        \"role\": \"system\",\n        \"content\": \"You are a friendly phone support assistant. Keep responses concise and under 30 words.\"\n      }\n    ]\n  },\n  \"voice\": {\n    \"provider\": \"vapi\",\n    \"voiceId\": \"Elliot\",\n    \"version\": 2\n  },\n  \"transcriber\": {\n    \"provider\": \"deepgram\",\n    \"model\": \"flux-general-en\",\n    \"language\": \"en\"\n  }\n}\n```\n\n## Create Through API\n\nUse this only when the user clearly asked to create the assistant in Vapi and `VAPI_API_KEY` is set:\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fassistant \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d @assistant-payload.json\n```\n\nAfter creation, return the assistant ID and any Vapi warnings or validation notes. If creation fails, summarize the API error, fix the payload when possible, and retry only when the fix is clear.\n\n## Source Hierarchy\n\n- Payload shape: Vapi OpenAPI `CreateAssistantDTO` and Create Assistant API docs.\n- Current selectable values: Vapi dashboard\u002FAPI responses and official Vapi provider docs.\n- Provider-specific IDs: exact values selected or supplied by the user.\n- Runtime correctness: Vapi API validation response.\n",{"data":41,"body":45},{"name":4,"description":6,"license":26,"compatibility":42,"metadata":43},"Requires internet access and a Vapi API key (VAPI_API_KEY).",{"author":8,"version":44},"2.0",{"type":46,"children":47},"root",[48,57,72,79,109,115,417,423,1047,1053,1065,1170,1175,1181,1212],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"vapi-assistant-creation",[54],{"type":55,"value":56},"text","Vapi Assistant Creation",{"type":49,"tag":58,"props":59,"children":60},"p",{},[61,63,70],{"type":55,"value":62},"Create a valid Vapi assistant payload first. Call the Vapi API only when the user clearly asks to create the assistant in Vapi and ",{"type":49,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":55,"value":69},"VAPI_API_KEY",{"type":55,"value":71}," is available.",{"type":49,"tag":73,"props":74,"children":76},"h2",{"id":75},"reliability-rules",[77],{"type":55,"value":78},"Reliability Rules",{"type":49,"tag":80,"props":81,"children":82},"ul",{},[83,89,94,99,104],{"type":49,"tag":84,"props":85,"children":86},"li",{},[87],{"type":55,"value":88},"Do not invent model names, voice IDs, tool IDs, credential IDs, assistant IDs, phone numbers, or server URLs.",{"type":49,"tag":84,"props":90,"children":91},{},[92],{"type":55,"value":93},"Use the known-good defaults below when the user does not specify provider choices.",{"type":49,"tag":84,"props":95,"children":96},{},[97],{"type":55,"value":98},"Verify any user-requested specific or latest model, voice, transcriber, hook, or provider shape in official Vapi docs, Vapi API responses, or the user's Vapi dashboard\u002FAPI value before using it.",{"type":49,"tag":84,"props":100,"children":101},{},[102],{"type":55,"value":103},"Treat Vapi API validation errors as the source of truth. Correct the payload and retry rather than guessing.",{"type":49,"tag":84,"props":105,"children":106},{},[107],{"type":55,"value":108},"Do not enable HIPAA or other paid\u002Fcompliance behavior unless the user explicitly asks for HIPAA, compliance mode, no recording, or no transcript storage.",{"type":49,"tag":73,"props":110,"children":112},{"id":111},"creation-workflow",[113],{"type":55,"value":114},"Creation Workflow",{"type":49,"tag":116,"props":117,"children":118},"ol",{},[119,169,252,309,375],{"type":49,"tag":84,"props":120,"children":121},{},[122,124],{"type":55,"value":123},"Determine the output mode.",{"type":49,"tag":80,"props":125,"children":126},{},[127,132,152,164],{"type":49,"tag":84,"props":128,"children":129},{},[130],{"type":55,"value":131},"If the user asks for a payload, JSON, config, draft, or says not to call the API, return assistant JSON only.",{"type":49,"tag":84,"props":133,"children":134},{},[135,137,143,145,150],{"type":55,"value":136},"If the user asks to create in Vapi, add it to their Vapi account, make it live, or call the API, use ",{"type":49,"tag":64,"props":138,"children":140},{"className":139},[],[141],{"type":55,"value":142},"POST https:\u002F\u002Fapi.vapi.ai\u002Fassistant",{"type":55,"value":144}," with ",{"type":49,"tag":64,"props":146,"children":148},{"className":147},[],[149],{"type":55,"value":69},{"type":55,"value":151},".",{"type":49,"tag":84,"props":153,"children":154},{},[155,157,162],{"type":55,"value":156},"If the user only says to create, build, or make an assistant and does not specify payload-only or live creation, ask: \"Do you want the assistant JSON only, or should I create it in your Vapi account if ",{"type":49,"tag":64,"props":158,"children":160},{"className":159},[],[161],{"type":55,"value":69},{"type":55,"value":163}," is available?\"",{"type":49,"tag":84,"props":165,"children":166},{},[167],{"type":55,"value":168},"Completion: the mode is clear before any live API request is sent.",{"type":49,"tag":84,"props":170,"children":171},{},[172,174],{"type":55,"value":173},"Build the smallest valid assistant.",{"type":49,"tag":80,"props":175,"children":176},{},[177,218,230,242,247],{"type":49,"tag":84,"props":178,"children":179},{},[180,182,188,190,196,197,203,204,209,211,217],{"type":55,"value":181},"Include ",{"type":49,"tag":64,"props":183,"children":185},{"className":184},[],[186],{"type":55,"value":187},"name",{"type":55,"value":189},", ",{"type":49,"tag":64,"props":191,"children":193},{"className":192},[],[194],{"type":55,"value":195},"firstMessage",{"type":55,"value":189},{"type":49,"tag":64,"props":198,"children":200},{"className":199},[],[201],{"type":55,"value":202},"model",{"type":55,"value":189},{"type":49,"tag":64,"props":205,"children":207},{"className":206},[],[208],{"type":55,"value":22},{"type":55,"value":210},", and ",{"type":49,"tag":64,"props":212,"children":214},{"className":213},[],[215],{"type":55,"value":216},"transcriber",{"type":55,"value":151},{"type":49,"tag":84,"props":219,"children":220},{},[221,223,228],{"type":55,"value":222},"Keep ",{"type":49,"tag":64,"props":224,"children":226},{"className":225},[],[227],{"type":55,"value":187},{"type":55,"value":229}," at 40 characters or fewer, as enforced by the Vapi API.",{"type":49,"tag":84,"props":231,"children":232},{},[233,235,241],{"type":55,"value":234},"Put behavior in ",{"type":49,"tag":64,"props":236,"children":238},{"className":237},[],[239],{"type":55,"value":240},"model.messages[0].content",{"type":55,"value":151},{"type":49,"tag":84,"props":243,"children":244},{},[245],{"type":55,"value":246},"Keep voice-agent prompts concise and spoken-response oriented.",{"type":49,"tag":84,"props":248,"children":249},{},[250],{"type":55,"value":251},"Completion: the payload can stand alone with a name of 40 characters or fewer and without placeholder IDs, URLs, phone numbers, or provider names.",{"type":49,"tag":84,"props":253,"children":254},{},[255,257],{"type":55,"value":256},"Apply safe defaults.",{"type":49,"tag":80,"props":258,"children":259},{},[260,271,282,293,304],{"type":49,"tag":84,"props":261,"children":262},{},[263,265],{"type":55,"value":264},"Model: ",{"type":49,"tag":64,"props":266,"children":268},{"className":267},[],[269],{"type":55,"value":270},"{ \"provider\": \"openai\", \"model\": \"gpt-4.1\" }",{"type":49,"tag":84,"props":272,"children":273},{},[274,276],{"type":55,"value":275},"Voice: ",{"type":49,"tag":64,"props":277,"children":279},{"className":278},[],[280],{"type":55,"value":281},"{ \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 }",{"type":49,"tag":84,"props":283,"children":284},{},[285,287],{"type":55,"value":286},"English transcriber: ",{"type":49,"tag":64,"props":288,"children":290},{"className":289},[],[291],{"type":55,"value":292},"{ \"provider\": \"deepgram\", \"model\": \"flux-general-en\", \"language\": \"en\" }",{"type":49,"tag":84,"props":294,"children":295},{},[296,298],{"type":55,"value":297},"Multilingual transcriber: ",{"type":49,"tag":64,"props":299,"children":301},{"className":300},[],[302],{"type":55,"value":303},"{ \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"multi\" }",{"type":49,"tag":84,"props":305,"children":306},{},[307],{"type":55,"value":308},"Completion: defaults are used only where the user did not request a different provider.",{"type":49,"tag":84,"props":310,"children":311},{},[312,314],{"type":55,"value":313},"Add optional features only with enough exact information.",{"type":49,"tag":80,"props":315,"children":316},{},[317,330,344,357,370],{"type":49,"tag":84,"props":318,"children":319},{},[320,322,328],{"type":55,"value":321},"Tools: include saved ",{"type":49,"tag":64,"props":323,"children":325},{"className":324},[],[326],{"type":55,"value":327},"model.toolIds",{"type":55,"value":329}," only when the user provides real Vapi tool IDs. Inline tools require a real server URL or an explicit draft-only request.",{"type":49,"tag":84,"props":331,"children":332},{},[333,335,342],{"type":55,"value":334},"Hooks: read ",{"type":49,"tag":336,"props":337,"children":339},"a",{"href":338},"references\u002Fhooks.md",[340],{"type":55,"value":341},"hooks reference",{"type":55,"value":343}," before adding hooks. Transfer, function, and notification hooks require exact destination numbers, server URLs, or tool definitions from the user.",{"type":49,"tag":84,"props":345,"children":346},{},[347,349,355],{"type":55,"value":348},"Non-default providers: read ",{"type":49,"tag":336,"props":350,"children":352},{"href":351},"references\u002Fproviders.md",[353],{"type":55,"value":354},"provider policy",{"type":55,"value":356}," before using non-default model, voice, or transcriber shapes.",{"type":49,"tag":84,"props":358,"children":359},{},[360,362,368],{"type":55,"value":361},"Compliance: add ",{"type":49,"tag":64,"props":363,"children":365},{"className":364},[],[366],{"type":55,"value":367},"compliancePlan.hipaaEnabled",{"type":55,"value":369}," only when explicitly requested, and verify provider constraints.",{"type":49,"tag":84,"props":371,"children":372},{},[373],{"type":55,"value":374},"Completion: every optional field is backed by a user request or verified source.",{"type":49,"tag":84,"props":376,"children":377},{},[378,380],{"type":55,"value":379},"Validate before finalizing.",{"type":49,"tag":80,"props":381,"children":382},{},[383,388,400,405],{"type":49,"tag":84,"props":384,"children":385},{},[386],{"type":55,"value":387},"Prefer Vapi's current OpenAPI schema and the API response as the final authority.",{"type":49,"tag":84,"props":389,"children":390},{},[391,393,399],{"type":55,"value":392},"Review the payload for placeholders, invented IDs, accidental paid compliance defaults, and Vapi voice configs missing ",{"type":49,"tag":64,"props":394,"children":396},{"className":395},[],[397],{"type":55,"value":398},"version: 2",{"type":55,"value":151},{"type":49,"tag":84,"props":401,"children":402},{},[403],{"type":55,"value":404},"If creating the assistant, use the Vapi API response to resolve validation errors. Correct clear errors and retry only when the fix is supported by docs, API output, or exact user-provided values.",{"type":49,"tag":84,"props":406,"children":407},{},[408,410,415],{"type":55,"value":409},"Completion: the final payload has no placeholders, no accidental paid compliance defaults, Vapi voices use ",{"type":49,"tag":64,"props":411,"children":413},{"className":412},[],[414],{"type":55,"value":398},{"type":55,"value":416},", and any API validation errors have been resolved.",{"type":49,"tag":73,"props":418,"children":420},{"id":419},"minimal-default-payload",[421],{"type":55,"value":422},"Minimal Default Payload",{"type":49,"tag":424,"props":425,"children":430},"pre",{"className":426,"code":427,"language":428,"meta":429,"style":429},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"Support Assistant\",\n  \"firstMessage\": \"Hello! How can I help you today?\",\n  \"model\": {\n    \"provider\": \"openai\",\n    \"model\": \"gpt-4.1\",\n    \"messages\": [\n      {\n        \"role\": \"system\",\n        \"content\": \"You are a friendly phone support assistant. Keep responses concise and under 30 words.\"\n      }\n    ]\n  },\n  \"voice\": {\n    \"provider\": \"vapi\",\n    \"voiceId\": \"Elliot\",\n    \"version\": 2\n  },\n  \"transcriber\": {\n    \"provider\": \"deepgram\",\n    \"model\": \"flux-general-en\",\n    \"language\": \"en\"\n  }\n}\n","json","",[431],{"type":49,"tag":64,"props":432,"children":433},{"__ignoreMap":429},[434,446,490,527,552,592,629,654,663,703,738,747,756,765,789,825,863,889,897,921,958,995,1029,1038],{"type":49,"tag":435,"props":436,"children":439},"span",{"class":437,"line":438},"line",1,[440],{"type":49,"tag":435,"props":441,"children":443},{"style":442},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[444],{"type":55,"value":445},"{\n",{"type":49,"tag":435,"props":447,"children":449},{"class":437,"line":448},2,[450,455,460,465,470,475,481,485],{"type":49,"tag":435,"props":451,"children":452},{"style":442},[453],{"type":55,"value":454},"  \"",{"type":49,"tag":435,"props":456,"children":458},{"style":457},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[459],{"type":55,"value":187},{"type":49,"tag":435,"props":461,"children":462},{"style":442},[463],{"type":55,"value":464},"\"",{"type":49,"tag":435,"props":466,"children":467},{"style":442},[468],{"type":55,"value":469},":",{"type":49,"tag":435,"props":471,"children":472},{"style":442},[473],{"type":55,"value":474}," \"",{"type":49,"tag":435,"props":476,"children":478},{"style":477},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[479],{"type":55,"value":480},"Support Assistant",{"type":49,"tag":435,"props":482,"children":483},{"style":442},[484],{"type":55,"value":464},{"type":49,"tag":435,"props":486,"children":487},{"style":442},[488],{"type":55,"value":489},",\n",{"type":49,"tag":435,"props":491,"children":493},{"class":437,"line":492},3,[494,498,502,506,510,514,519,523],{"type":49,"tag":435,"props":495,"children":496},{"style":442},[497],{"type":55,"value":454},{"type":49,"tag":435,"props":499,"children":500},{"style":457},[501],{"type":55,"value":195},{"type":49,"tag":435,"props":503,"children":504},{"style":442},[505],{"type":55,"value":464},{"type":49,"tag":435,"props":507,"children":508},{"style":442},[509],{"type":55,"value":469},{"type":49,"tag":435,"props":511,"children":512},{"style":442},[513],{"type":55,"value":474},{"type":49,"tag":435,"props":515,"children":516},{"style":477},[517],{"type":55,"value":518},"Hello! How can I help you today?",{"type":49,"tag":435,"props":520,"children":521},{"style":442},[522],{"type":55,"value":464},{"type":49,"tag":435,"props":524,"children":525},{"style":442},[526],{"type":55,"value":489},{"type":49,"tag":435,"props":528,"children":530},{"class":437,"line":529},4,[531,535,539,543,547],{"type":49,"tag":435,"props":532,"children":533},{"style":442},[534],{"type":55,"value":454},{"type":49,"tag":435,"props":536,"children":537},{"style":457},[538],{"type":55,"value":202},{"type":49,"tag":435,"props":540,"children":541},{"style":442},[542],{"type":55,"value":464},{"type":49,"tag":435,"props":544,"children":545},{"style":442},[546],{"type":55,"value":469},{"type":49,"tag":435,"props":548,"children":549},{"style":442},[550],{"type":55,"value":551}," {\n",{"type":49,"tag":435,"props":553,"children":555},{"class":437,"line":554},5,[556,561,567,571,575,579,584,588],{"type":49,"tag":435,"props":557,"children":558},{"style":442},[559],{"type":55,"value":560},"    \"",{"type":49,"tag":435,"props":562,"children":564},{"style":563},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[565],{"type":55,"value":566},"provider",{"type":49,"tag":435,"props":568,"children":569},{"style":442},[570],{"type":55,"value":464},{"type":49,"tag":435,"props":572,"children":573},{"style":442},[574],{"type":55,"value":469},{"type":49,"tag":435,"props":576,"children":577},{"style":442},[578],{"type":55,"value":474},{"type":49,"tag":435,"props":580,"children":581},{"style":477},[582],{"type":55,"value":583},"openai",{"type":49,"tag":435,"props":585,"children":586},{"style":442},[587],{"type":55,"value":464},{"type":49,"tag":435,"props":589,"children":590},{"style":442},[591],{"type":55,"value":489},{"type":49,"tag":435,"props":593,"children":595},{"class":437,"line":594},6,[596,600,604,608,612,616,621,625],{"type":49,"tag":435,"props":597,"children":598},{"style":442},[599],{"type":55,"value":560},{"type":49,"tag":435,"props":601,"children":602},{"style":563},[603],{"type":55,"value":202},{"type":49,"tag":435,"props":605,"children":606},{"style":442},[607],{"type":55,"value":464},{"type":49,"tag":435,"props":609,"children":610},{"style":442},[611],{"type":55,"value":469},{"type":49,"tag":435,"props":613,"children":614},{"style":442},[615],{"type":55,"value":474},{"type":49,"tag":435,"props":617,"children":618},{"style":477},[619],{"type":55,"value":620},"gpt-4.1",{"type":49,"tag":435,"props":622,"children":623},{"style":442},[624],{"type":55,"value":464},{"type":49,"tag":435,"props":626,"children":627},{"style":442},[628],{"type":55,"value":489},{"type":49,"tag":435,"props":630,"children":631},{"class":437,"line":27},[632,636,641,645,649],{"type":49,"tag":435,"props":633,"children":634},{"style":442},[635],{"type":55,"value":560},{"type":49,"tag":435,"props":637,"children":638},{"style":563},[639],{"type":55,"value":640},"messages",{"type":49,"tag":435,"props":642,"children":643},{"style":442},[644],{"type":55,"value":464},{"type":49,"tag":435,"props":646,"children":647},{"style":442},[648],{"type":55,"value":469},{"type":49,"tag":435,"props":650,"children":651},{"style":442},[652],{"type":55,"value":653}," [\n",{"type":49,"tag":435,"props":655,"children":657},{"class":437,"line":656},8,[658],{"type":49,"tag":435,"props":659,"children":660},{"style":442},[661],{"type":55,"value":662},"      {\n",{"type":49,"tag":435,"props":664,"children":666},{"class":437,"line":665},9,[667,672,678,682,686,690,695,699],{"type":49,"tag":435,"props":668,"children":669},{"style":442},[670],{"type":55,"value":671},"        \"",{"type":49,"tag":435,"props":673,"children":675},{"style":674},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[676],{"type":55,"value":677},"role",{"type":49,"tag":435,"props":679,"children":680},{"style":442},[681],{"type":55,"value":464},{"type":49,"tag":435,"props":683,"children":684},{"style":442},[685],{"type":55,"value":469},{"type":49,"tag":435,"props":687,"children":688},{"style":442},[689],{"type":55,"value":474},{"type":49,"tag":435,"props":691,"children":692},{"style":477},[693],{"type":55,"value":694},"system",{"type":49,"tag":435,"props":696,"children":697},{"style":442},[698],{"type":55,"value":464},{"type":49,"tag":435,"props":700,"children":701},{"style":442},[702],{"type":55,"value":489},{"type":49,"tag":435,"props":704,"children":706},{"class":437,"line":705},10,[707,711,716,720,724,728,733],{"type":49,"tag":435,"props":708,"children":709},{"style":442},[710],{"type":55,"value":671},{"type":49,"tag":435,"props":712,"children":713},{"style":674},[714],{"type":55,"value":715},"content",{"type":49,"tag":435,"props":717,"children":718},{"style":442},[719],{"type":55,"value":464},{"type":49,"tag":435,"props":721,"children":722},{"style":442},[723],{"type":55,"value":469},{"type":49,"tag":435,"props":725,"children":726},{"style":442},[727],{"type":55,"value":474},{"type":49,"tag":435,"props":729,"children":730},{"style":477},[731],{"type":55,"value":732},"You are a friendly phone support assistant. Keep responses concise and under 30 words.",{"type":49,"tag":435,"props":734,"children":735},{"style":442},[736],{"type":55,"value":737},"\"\n",{"type":49,"tag":435,"props":739,"children":741},{"class":437,"line":740},11,[742],{"type":49,"tag":435,"props":743,"children":744},{"style":442},[745],{"type":55,"value":746},"      }\n",{"type":49,"tag":435,"props":748,"children":750},{"class":437,"line":749},12,[751],{"type":49,"tag":435,"props":752,"children":753},{"style":442},[754],{"type":55,"value":755},"    ]\n",{"type":49,"tag":435,"props":757,"children":759},{"class":437,"line":758},13,[760],{"type":49,"tag":435,"props":761,"children":762},{"style":442},[763],{"type":55,"value":764},"  },\n",{"type":49,"tag":435,"props":766,"children":768},{"class":437,"line":767},14,[769,773,777,781,785],{"type":49,"tag":435,"props":770,"children":771},{"style":442},[772],{"type":55,"value":454},{"type":49,"tag":435,"props":774,"children":775},{"style":457},[776],{"type":55,"value":22},{"type":49,"tag":435,"props":778,"children":779},{"style":442},[780],{"type":55,"value":464},{"type":49,"tag":435,"props":782,"children":783},{"style":442},[784],{"type":55,"value":469},{"type":49,"tag":435,"props":786,"children":787},{"style":442},[788],{"type":55,"value":551},{"type":49,"tag":435,"props":790,"children":792},{"class":437,"line":791},15,[793,797,801,805,809,813,817,821],{"type":49,"tag":435,"props":794,"children":795},{"style":442},[796],{"type":55,"value":560},{"type":49,"tag":435,"props":798,"children":799},{"style":563},[800],{"type":55,"value":566},{"type":49,"tag":435,"props":802,"children":803},{"style":442},[804],{"type":55,"value":464},{"type":49,"tag":435,"props":806,"children":807},{"style":442},[808],{"type":55,"value":469},{"type":49,"tag":435,"props":810,"children":811},{"style":442},[812],{"type":55,"value":474},{"type":49,"tag":435,"props":814,"children":815},{"style":477},[816],{"type":55,"value":8},{"type":49,"tag":435,"props":818,"children":819},{"style":442},[820],{"type":55,"value":464},{"type":49,"tag":435,"props":822,"children":823},{"style":442},[824],{"type":55,"value":489},{"type":49,"tag":435,"props":826,"children":828},{"class":437,"line":827},16,[829,833,838,842,846,850,855,859],{"type":49,"tag":435,"props":830,"children":831},{"style":442},[832],{"type":55,"value":560},{"type":49,"tag":435,"props":834,"children":835},{"style":563},[836],{"type":55,"value":837},"voiceId",{"type":49,"tag":435,"props":839,"children":840},{"style":442},[841],{"type":55,"value":464},{"type":49,"tag":435,"props":843,"children":844},{"style":442},[845],{"type":55,"value":469},{"type":49,"tag":435,"props":847,"children":848},{"style":442},[849],{"type":55,"value":474},{"type":49,"tag":435,"props":851,"children":852},{"style":477},[853],{"type":55,"value":854},"Elliot",{"type":49,"tag":435,"props":856,"children":857},{"style":442},[858],{"type":55,"value":464},{"type":49,"tag":435,"props":860,"children":861},{"style":442},[862],{"type":55,"value":489},{"type":49,"tag":435,"props":864,"children":866},{"class":437,"line":865},17,[867,871,876,880,884],{"type":49,"tag":435,"props":868,"children":869},{"style":442},[870],{"type":55,"value":560},{"type":49,"tag":435,"props":872,"children":873},{"style":563},[874],{"type":55,"value":875},"version",{"type":49,"tag":435,"props":877,"children":878},{"style":442},[879],{"type":55,"value":464},{"type":49,"tag":435,"props":881,"children":882},{"style":442},[883],{"type":55,"value":469},{"type":49,"tag":435,"props":885,"children":886},{"style":674},[887],{"type":55,"value":888}," 2\n",{"type":49,"tag":435,"props":890,"children":892},{"class":437,"line":891},18,[893],{"type":49,"tag":435,"props":894,"children":895},{"style":442},[896],{"type":55,"value":764},{"type":49,"tag":435,"props":898,"children":900},{"class":437,"line":899},19,[901,905,909,913,917],{"type":49,"tag":435,"props":902,"children":903},{"style":442},[904],{"type":55,"value":454},{"type":49,"tag":435,"props":906,"children":907},{"style":457},[908],{"type":55,"value":216},{"type":49,"tag":435,"props":910,"children":911},{"style":442},[912],{"type":55,"value":464},{"type":49,"tag":435,"props":914,"children":915},{"style":442},[916],{"type":55,"value":469},{"type":49,"tag":435,"props":918,"children":919},{"style":442},[920],{"type":55,"value":551},{"type":49,"tag":435,"props":922,"children":924},{"class":437,"line":923},20,[925,929,933,937,941,945,950,954],{"type":49,"tag":435,"props":926,"children":927},{"style":442},[928],{"type":55,"value":560},{"type":49,"tag":435,"props":930,"children":931},{"style":563},[932],{"type":55,"value":566},{"type":49,"tag":435,"props":934,"children":935},{"style":442},[936],{"type":55,"value":464},{"type":49,"tag":435,"props":938,"children":939},{"style":442},[940],{"type":55,"value":469},{"type":49,"tag":435,"props":942,"children":943},{"style":442},[944],{"type":55,"value":474},{"type":49,"tag":435,"props":946,"children":947},{"style":477},[948],{"type":55,"value":949},"deepgram",{"type":49,"tag":435,"props":951,"children":952},{"style":442},[953],{"type":55,"value":464},{"type":49,"tag":435,"props":955,"children":956},{"style":442},[957],{"type":55,"value":489},{"type":49,"tag":435,"props":959,"children":961},{"class":437,"line":960},21,[962,966,970,974,978,982,987,991],{"type":49,"tag":435,"props":963,"children":964},{"style":442},[965],{"type":55,"value":560},{"type":49,"tag":435,"props":967,"children":968},{"style":563},[969],{"type":55,"value":202},{"type":49,"tag":435,"props":971,"children":972},{"style":442},[973],{"type":55,"value":464},{"type":49,"tag":435,"props":975,"children":976},{"style":442},[977],{"type":55,"value":469},{"type":49,"tag":435,"props":979,"children":980},{"style":442},[981],{"type":55,"value":474},{"type":49,"tag":435,"props":983,"children":984},{"style":477},[985],{"type":55,"value":986},"flux-general-en",{"type":49,"tag":435,"props":988,"children":989},{"style":442},[990],{"type":55,"value":464},{"type":49,"tag":435,"props":992,"children":993},{"style":442},[994],{"type":55,"value":489},{"type":49,"tag":435,"props":996,"children":998},{"class":437,"line":997},22,[999,1003,1008,1012,1016,1020,1025],{"type":49,"tag":435,"props":1000,"children":1001},{"style":442},[1002],{"type":55,"value":560},{"type":49,"tag":435,"props":1004,"children":1005},{"style":563},[1006],{"type":55,"value":1007},"language",{"type":49,"tag":435,"props":1009,"children":1010},{"style":442},[1011],{"type":55,"value":464},{"type":49,"tag":435,"props":1013,"children":1014},{"style":442},[1015],{"type":55,"value":469},{"type":49,"tag":435,"props":1017,"children":1018},{"style":442},[1019],{"type":55,"value":474},{"type":49,"tag":435,"props":1021,"children":1022},{"style":477},[1023],{"type":55,"value":1024},"en",{"type":49,"tag":435,"props":1026,"children":1027},{"style":442},[1028],{"type":55,"value":737},{"type":49,"tag":435,"props":1030,"children":1032},{"class":437,"line":1031},23,[1033],{"type":49,"tag":435,"props":1034,"children":1035},{"style":442},[1036],{"type":55,"value":1037},"  }\n",{"type":49,"tag":435,"props":1039,"children":1041},{"class":437,"line":1040},24,[1042],{"type":49,"tag":435,"props":1043,"children":1044},{"style":442},[1045],{"type":55,"value":1046},"}\n",{"type":49,"tag":73,"props":1048,"children":1050},{"id":1049},"create-through-api",[1051],{"type":55,"value":1052},"Create Through API",{"type":49,"tag":58,"props":1054,"children":1055},{},[1056,1058,1063],{"type":55,"value":1057},"Use this only when the user clearly asked to create the assistant in Vapi and ",{"type":49,"tag":64,"props":1059,"children":1061},{"className":1060},[],[1062],{"type":55,"value":69},{"type":55,"value":1064}," is set:",{"type":49,"tag":424,"props":1066,"children":1070},{"className":1067,"code":1068,"language":1069,"meta":429,"style":429},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fassistant \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d @assistant-payload.json\n","bash",[1071],{"type":49,"tag":64,"props":1072,"children":1073},{"__ignoreMap":429},[1074,1103,1133,1157],{"type":49,"tag":435,"props":1075,"children":1076},{"class":437,"line":438},[1077,1082,1087,1092,1097],{"type":49,"tag":435,"props":1078,"children":1079},{"style":563},[1080],{"type":55,"value":1081},"curl",{"type":49,"tag":435,"props":1083,"children":1084},{"style":477},[1085],{"type":55,"value":1086}," -X",{"type":49,"tag":435,"props":1088,"children":1089},{"style":477},[1090],{"type":55,"value":1091}," POST",{"type":49,"tag":435,"props":1093,"children":1094},{"style":477},[1095],{"type":55,"value":1096}," https:\u002F\u002Fapi.vapi.ai\u002Fassistant",{"type":49,"tag":435,"props":1098,"children":1100},{"style":1099},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1101],{"type":55,"value":1102}," \\\n",{"type":49,"tag":435,"props":1104,"children":1105},{"class":437,"line":448},[1106,1111,1115,1120,1125,1129],{"type":49,"tag":435,"props":1107,"children":1108},{"style":477},[1109],{"type":55,"value":1110},"  -H",{"type":49,"tag":435,"props":1112,"children":1113},{"style":442},[1114],{"type":55,"value":474},{"type":49,"tag":435,"props":1116,"children":1117},{"style":477},[1118],{"type":55,"value":1119},"Authorization: Bearer ",{"type":49,"tag":435,"props":1121,"children":1122},{"style":1099},[1123],{"type":55,"value":1124},"$VAPI_API_KEY",{"type":49,"tag":435,"props":1126,"children":1127},{"style":442},[1128],{"type":55,"value":464},{"type":49,"tag":435,"props":1130,"children":1131},{"style":1099},[1132],{"type":55,"value":1102},{"type":49,"tag":435,"props":1134,"children":1135},{"class":437,"line":492},[1136,1140,1144,1149,1153],{"type":49,"tag":435,"props":1137,"children":1138},{"style":477},[1139],{"type":55,"value":1110},{"type":49,"tag":435,"props":1141,"children":1142},{"style":442},[1143],{"type":55,"value":474},{"type":49,"tag":435,"props":1145,"children":1146},{"style":477},[1147],{"type":55,"value":1148},"Content-Type: application\u002Fjson",{"type":49,"tag":435,"props":1150,"children":1151},{"style":442},[1152],{"type":55,"value":464},{"type":49,"tag":435,"props":1154,"children":1155},{"style":1099},[1156],{"type":55,"value":1102},{"type":49,"tag":435,"props":1158,"children":1159},{"class":437,"line":529},[1160,1165],{"type":49,"tag":435,"props":1161,"children":1162},{"style":477},[1163],{"type":55,"value":1164},"  -d",{"type":49,"tag":435,"props":1166,"children":1167},{"style":477},[1168],{"type":55,"value":1169}," @assistant-payload.json\n",{"type":49,"tag":58,"props":1171,"children":1172},{},[1173],{"type":55,"value":1174},"After creation, return the assistant ID and any Vapi warnings or validation notes. If creation fails, summarize the API error, fix the payload when possible, and retry only when the fix is clear.",{"type":49,"tag":73,"props":1176,"children":1178},{"id":1177},"source-hierarchy",[1179],{"type":55,"value":1180},"Source Hierarchy",{"type":49,"tag":80,"props":1182,"children":1183},{},[1184,1197,1202,1207],{"type":49,"tag":84,"props":1185,"children":1186},{},[1187,1189,1195],{"type":55,"value":1188},"Payload shape: Vapi OpenAPI ",{"type":49,"tag":64,"props":1190,"children":1192},{"className":1191},[],[1193],{"type":55,"value":1194},"CreateAssistantDTO",{"type":55,"value":1196}," and Create Assistant API docs.",{"type":49,"tag":84,"props":1198,"children":1199},{},[1200],{"type":55,"value":1201},"Current selectable values: Vapi dashboard\u002FAPI responses and official Vapi provider docs.",{"type":49,"tag":84,"props":1203,"children":1204},{},[1205],{"type":55,"value":1206},"Provider-specific IDs: exact values selected or supplied by the user.",{"type":49,"tag":84,"props":1208,"children":1209},{},[1210],{"type":55,"value":1211},"Runtime correctness: Vapi API validation response.",{"type":49,"tag":1213,"props":1214,"children":1215},"style",{},[1216],{"type":55,"value":1217},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1219,"total":705},[1220,1239,1245,1256,1270,1282,1295,1309,1322,1337],{"slug":8,"name":8,"fn":1221,"description":1222,"org":1223,"tags":1224,"stars":1236,"repoUrl":1237,"updatedAt":1238},"build AI voice assistants with Vapi","Build AI voice assistants and phone agents with Vapi. Use this skill when users want to create voice agents, phone bots, IVR systems, outbound calling campaigns, or any voice-based AI application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1225,1226,1229,1232,1235],{"name":14,"slug":15,"type":16},{"name":1227,"slug":1228,"type":16},"Automation","automation",{"name":1230,"slug":1231,"type":16},"Speech","speech",{"name":1233,"slug":1234,"type":16},"Text-to-Speech","text-to-speech",{"name":21,"slug":22,"type":16},56,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fmcp-server","2026-07-17T06:06:13.535114",{"slug":4,"name":4,"fn":5,"description":6,"org":1240,"tags":1241,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1242,1243,1244],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"slug":1246,"name":1246,"fn":1247,"description":1248,"org":1249,"tags":1250,"stars":23,"repoUrl":24,"updatedAt":1255},"create-call","create automated phone calls with Vapi","Create outbound phone calls, web calls, and batch calls using the Vapi API. Use when making automated calls, testing voice assistants, scheduling call campaigns, or initiating conversations programmatically.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1251,1252,1253,1254],{"name":14,"slug":15,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1230,"slug":1231,"type":16},{"name":21,"slug":22,"type":16},"2026-07-20T05:57:32.68652",{"slug":1257,"name":1257,"fn":1258,"description":1259,"org":1260,"tags":1261,"stars":23,"repoUrl":24,"updatedAt":1269},"create-phone-number","manage Vapi phone numbers","Set up and manage phone numbers in Vapi for inbound and outbound voice AI calls. Use when importing Twilio, Vonage, or Telnyx numbers, buying Vapi numbers, or configuring phone numbers for assistants.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1262,1265,1268],{"name":1263,"slug":1264,"type":16},"Operations","operations",{"name":1266,"slug":1267,"type":16},"Twilio","twilio",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:29.699227",{"slug":1271,"name":1271,"fn":1272,"description":1273,"org":1274,"tags":1275,"stars":23,"repoUrl":24,"updatedAt":1281},"create-squad","create multi-assistant voice agent squads","Create multi-assistant squads in Vapi with handoffs between specialized voice agents. Use when building complex voice workflows that need multiple assistants with different roles, like triage-to-booking or sales-to-support handoffs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1276,1277,1280],{"name":14,"slug":15,"type":16},{"name":1278,"slug":1279,"type":16},"Multi-Agent","multi-agent",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:30.690452",{"slug":1283,"name":1283,"fn":1284,"description":1285,"org":1286,"tags":1287,"stars":23,"repoUrl":24,"updatedAt":1294},"create-tool","create custom tools for Vapi assistants","Create custom tools for Vapi voice assistants including function tools, API request tools, transfer call tools, end call tools, and integrations with Google Calendar, Sheets, Slack, and more. Use when adding capabilities to voice agents, building tool servers, or integrating external APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1288,1289,1290,1291],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1292,"slug":1293,"type":16},"Integrations","integrations","2026-07-20T05:57:27.69122",{"slug":1296,"name":1296,"fn":1297,"description":1298,"org":1299,"tags":1300,"stars":23,"repoUrl":24,"updatedAt":1308},"setup-api-key","configure Vapi API authentication","Guide users through obtaining and configuring a Vapi API key. Use when the user needs to set up Vapi, when API calls fail due to missing keys, or when the user mentions needing access to Vapi's voice AI platform.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1301,1302,1305],{"name":18,"slug":19,"type":16},{"name":1303,"slug":1304,"type":16},"Auth","auth",{"name":1306,"slug":1307,"type":16},"Configuration","configuration","2026-07-20T05:57:25.717229",{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":23,"repoUrl":24,"updatedAt":1321},"setup-webhook","configure Vapi webhooks for call events","Configure Vapi server URLs and webhooks to receive real-time call events, transcripts, tool calls, and end-of-call reports. Use when setting up webhook endpoints, building tool servers, or integrating Vapi events into your application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1315,1316,1317,1318],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1319,"slug":1320,"type":16},"Webhooks","webhooks","2026-07-20T05:57:31.703006",{"slug":1323,"name":1323,"fn":1324,"description":1325,"org":1326,"tags":1327,"stars":23,"repoUrl":24,"updatedAt":1336},"vapi-bootstrap-framework","scaffold Vapi voice agent projects","Scaffold a complete Vapi voice-agent project from a ROUGH_DRAFT.md spec. Generates package.json, tsconfig.json, .env.example, .gitignore, and the full TypeScript framework — scenario registry, per-language voice\u002Ftranscriber stack, prompt composer, assistant builder, and an idempotent bootstrap script — plus one rough first-draft body.md per scenario. Drop this skill in any project's .cursor\u002Fskills\u002F folder (or ~\u002F.cursor\u002Fskills\u002F for global use), write a ROUGH_DRAFT.md at the project root, name the skill, and `bun run bootstrap` puts the entire fleet live in dashboard.vapi.ai. Use when the user asks to scaffold or bootstrap Vapi voice agents from a rough draft, build a Vapi assistant fleet, or invokes this skill by name. Targets Bun + TypeScript + @vapi-ai\u002Fserver-sdk.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1328,1329,1332,1335],{"name":14,"slug":15,"type":16},{"name":1330,"slug":1331,"type":16},"Engineering","engineering",{"name":1333,"slug":1334,"type":16},"TypeScript","typescript",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:26.732699",{"slug":1338,"name":1338,"fn":1339,"description":1340,"org":1341,"tags":1342,"stars":23,"repoUrl":24,"updatedAt":1349},"vapi-prompt-builder","design and audit Vapi voice agent prompts","Create, improve, or audit Vapi voice agent and Squad system prompts for production phone and web based voice agents. Use when the user wants help designing a Vapi assistant prompt, multi-assistant Squad prompt set, refining an existing prompt, creating prompt sections, building an intake or handoff workflow, improving tool-use instructions, adding guardrails, or optimizing voice-agent behavior for brevity, turn-taking, error handling, caller data collection, escalation, handoffs, and spoken formatting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1343,1344,1347,1348],{"name":14,"slug":15,"type":16},{"name":1345,"slug":1346,"type":16},"Prompt Engineering","prompt-engineering",{"name":1230,"slug":1231,"type":16},{"name":21,"slug":22,"type":16},"2026-07-17T06:08:21.647767",{"items":1351,"total":665},[1352,1358,1365,1371,1377,1384,1390],{"slug":4,"name":4,"fn":5,"description":6,"org":1353,"tags":1354,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1355,1356,1357],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"slug":1246,"name":1246,"fn":1247,"description":1248,"org":1359,"tags":1360,"stars":23,"repoUrl":24,"updatedAt":1255},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1361,1362,1363,1364],{"name":14,"slug":15,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1230,"slug":1231,"type":16},{"name":21,"slug":22,"type":16},{"slug":1257,"name":1257,"fn":1258,"description":1259,"org":1366,"tags":1367,"stars":23,"repoUrl":24,"updatedAt":1269},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1368,1369,1370],{"name":1263,"slug":1264,"type":16},{"name":1266,"slug":1267,"type":16},{"name":21,"slug":22,"type":16},{"slug":1271,"name":1271,"fn":1272,"description":1273,"org":1372,"tags":1373,"stars":23,"repoUrl":24,"updatedAt":1281},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1374,1375,1376],{"name":14,"slug":15,"type":16},{"name":1278,"slug":1279,"type":16},{"name":21,"slug":22,"type":16},{"slug":1283,"name":1283,"fn":1284,"description":1285,"org":1378,"tags":1379,"stars":23,"repoUrl":24,"updatedAt":1294},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1380,1381,1382,1383],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1292,"slug":1293,"type":16},{"slug":1296,"name":1296,"fn":1297,"description":1298,"org":1385,"tags":1386,"stars":23,"repoUrl":24,"updatedAt":1308},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1387,1388,1389],{"name":18,"slug":19,"type":16},{"name":1303,"slug":1304,"type":16},{"name":1306,"slug":1307,"type":16},{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1391,"tags":1392,"stars":23,"repoUrl":24,"updatedAt":1321},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1393,1394,1395,1396],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1319,"slug":1320,"type":16}]