Make a Call requests, valid <Gather> XML, and correct KYC flows straight away.
Skills vs. the MCP server. Skills are static know-how that lives in your agent’s context - how to use Vobiz. The MCP server is a live connection that searches and fetches the docs on demand. They’re complementary: install the skills for reliable, offline-capable patterns, add the MCP server for always-current page lookups. Use both.
Install with one command
The skills are hosted on this docs site. Theskills CLI installs them into whichever agents it detects on your machine:
Skills source
- What you get: the Vobiz skill set listed below, one folder per skill.
- What it is not: skills are instructions, not credentials. You still authenticate every API call with your
X-Auth-ID/X-Auth-Token- see the API Reference.
Prerequisites
- A supported coding agent installed (Claude Code, Codex, Cursor, etc.).
- Node.js 18+ for
npx. Runnode --version; if it printsv18or higher, you’re set. - An internet connection - the skills are fetched from this docs site.
Claude Code
Claude Code loads skills from.claude/skills/ (per-project) or ~/.claude/skills/ (global).
1
Install the skills
From your project directory, install into Claude Code specifically:Add Omit
--global to make them available in every project instead of just the current repo:--agents to let the CLI auto-detect and offer Claude Code (and anything else) in an interactive checklist.2
Confirm they landed
vobiz-* skills with the directory each was written to - .claude/skills/ for a project install or ~/.claude/skills/ for a global one.3
Use them in a session
Skills load automatically by relevance. Just ask for the task:
Write a curl that places an outbound Vobiz call and the minimal answer XML it should return.Claude Code pulls in the
vobiz-voice-calls and vobiz-voice-xml skills and produces a request with the correct /Account/{auth_id}/Call/ path casing and a valid <Response>.Codex
The same command installs into OpenAI Codex. Codex stores its config underCODEX_HOME (default ~/.codex), and the CLI writes the skills into Codex’s skills directory there.
1
Install the skills
CODEX_HOME first:2
Confirm they landed
vobiz-* skill and the exact Codex directory it was installed to on your machine.3
Use them in a session
Start Codex in your project and describe the task - for example:
Build a Vobiz IVR: a <Gather> menu that routes to two departments.
Codex applies the vobiz-voice-xml skill and uses executionTimeout (not timeout) on <Gather>, the kind of detail the skill encodes.Other agents
The same source works with every agent the CLI supports - Cursor, Windsurf, Gemini CLI, GitHub Copilot, Cline, Goose, and more. Target one explicitly with--agents <name>, install everywhere with --all, or run the bare command and pick from the checklist:
The Vobiz skill set
Each skill is scoped to one domain so your agent loads only what’s relevant to the task.Update or remove
- Update: re-run
npx skills add https://vobiz.ai/docsto pull the latest versions. Add--copyif you prefer copies over symlinks. - Inspect:
npx skills listshows every installed skill and its location. - Remove: delete the
vobiz-*folders from your agent’s skills directory (.claude/skills/,~/.claude/skills/, or the Codex skills directory).
Related
- MCP Server - connect your AI client to live, searchable Vobiz docs.
- skills CLI - full command reference and the list of supported agents.
- Quick Start - make your first call once your agent is set up.