create-assistant — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited create-assistant (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Create 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.
POST https://api.vapi.ai/assistant with VAPI_API_KEY.VAPI_API_KEY is available?"name, firstMessage, model, voice, and transcriber.model.messages[0].content.{ "provider": "openai", "model": "gpt-4.1" }{ "provider": "vapi", "voiceId": "Elliot", "version": 2 }{ "provider": "deepgram", "model": "flux-general-en", "language": "en" }{ "provider": "deepgram", "model": "nova-3", "language": "multi" }model.toolIds only when the user provides real Vapi tool IDs. Inline tools require a real server URL or an explicit draft-only request.compliancePlan.hipaaEnabled only when explicitly requested, and verify provider constraints.version: 2.version: 2, and any API validation errors have been resolved.{
"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",
"version": 2
},
"transcriber": {
"provider": "deepgram",
"model": "flux-general-en",
"language": "en"
}
}Use this only when the user clearly asked to create the assistant in Vapi and VAPI_API_KEY is set:
curl -X POST https://api.vapi.ai/assistant \
-H "Authorization: Bearer $VAPI_API_KEY" \
-H "Content-Type: application/json" \
-d @assistant-payload.jsonAfter 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.
CreateAssistantDTO and Create Assistant API docs.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.