AI Agent Skill
Teach your AI coding assistant to drive this platform through the v1 API.
What this is
A skill is a markdown instruction file that AI assistants (Claude Code, Cursor, Codex CLI — anything that reads markdown context) load to learn a capability. This one teaches your assistant the full v1 REST API: authenticating with a cwk_… key, every endpoint, the writable agent-config contract, tool JSON Schemas, and a verification playbook built on the simulate endpoint.
Once installed, you can say things like "lower the temperature on my support agent and re-run its behavior checks" — the assistant knows the endpoints, the field names, and the audit pattern to do it safely.
Download SKILL.mdInstall
Claude Code
mkdir -p ~/.claude/skills/customweb-agents-api curl -o ~/.claude/skills/customweb-agents-api/SKILL.md \ https://customweb-agents.vercel.app/skills/customweb-agents-api/SKILL.md
Or keep it per-project under .claude/skills/customweb-agents-api/SKILL.md inside your repo.
Cursor and other agents
Drop the file anywhere in your repo (for example docs/customweb-api.md) and reference it from your rules file, or paste its contents into the assistant's context.
What your assistant can do with it
- Create and configure agents — prompt, persona, models, voices, fallback providers.
- Create webhook tools with JSON-Schema parameters and attach them to agents.
- Run simulated conversations to verify tool routing and guardrails before going live.
- Audit a deployed agent's config and roll back to a version snapshot if a change regressed.
- Manage knowledge documents, workflows, and phone-number routing.
- Read usage and billing — the API can never move money or expose secrets.