Skills give your AI coding agent specialized instructions for Bolt integrations. Install them into your project so the agent verifies API calls against OpenAPI specs instead of guessing.

Available skills

SkillWhat it does
bolt-api-verifyCross-check endpoints, auth headers, env vars, and request bodies against OpenAPI specs
bolt-gaming-docsGaming payment links, Unity and JavaScript SDKs, webhooks, and interactive ads
Skill files are hosted on Bolt Help. Fetch them by URL or discover them through the Bolt MCP server.

Install in Cursor

Download a skill into .cursor/skills/:
mkdir -p .cursor/skills/bolt-api-verify
curl -fsSL https://help.bolt.com/skills/bolt-api-verify/SKILL.md \
  -o .cursor/skills/bolt-api-verify/SKILL.md
Repeat for bolt-gaming-docs:
mkdir -p .cursor/skills/bolt-gaming-docs
curl -fsSL https://help.bolt.com/skills/bolt-gaming-docs/SKILL.md \
  -o .cursor/skills/bolt-gaming-docs/SKILL.md
Restart Cursor or start a new chat so the agent picks up the skill.

Other agents

Copy the same SKILL.md file into your agent’s skills directory (for example .claude/skills/ for Claude Code). The skill content is plain markdown with YAML frontmatter.

When to use each skill

bolt-api-verify: Before writing or reviewing Bolt API code. Confirms paths and payloads against https://assets.bolt.com/external-api-references/bolt.yml. Marks unknown behavior as BLOCKED instead of inventing fields. bolt-gaming-docs: When integrating in-game checkout links, Unity or JavaScript SDKs, or gaming webhooks. Points to canonical guides under Gaming and verifies gaming endpoints in the OpenAPI spec.