Agent skills
Runtype publishes official agent skills that teach Claude Code, Cursor, Codex, Copilot, Windsurf, and 30+ other coding agents how to build on Runtype. A skill is a packaged set of instructions, references, and helper scripts the agent loads on demand — once installed, your coding agent knows Runtype’s product schema, MCP tools, flow step types, and SDK conventions without you re-explaining them in every prompt.
Skills are installed via the open-source skills CLI, which auto-detects which coding agents you have installed and drops the right files in the right place.
Install all Runtype skills
Run this once from any project (or your home directory for global install):
The CLI detects your installed agents and installs every Runtype skill for each of them. That’s it — restart your coding agent and the skills are available.
Install with the Runtype CLI
If you already have the Runtype CLI installed (npm install -g @runtypelabs/cli), you can install skills without a separate tool — it bundles the same agent detection:
Global CLI installations automatically check npm once per hour and stage verified releases under ~/.runtype/cli/versions/ for the next invocation. Use runtype update --check, runtype update, or runtype update --rollback to manage updates manually. Set RUNTYPE_DISABLE_AUTO_UPDATE=true to keep using the package-manager-installed version (including an intentional global version pin), or RUNTYPE_DISABLE_UPDATE_CHECK=true to retain the active managed version without checking for newer releases.
This is the recommended setup path: runtype onboard signs you into Runtype, targets the current coding agent, installs its Runtype skills, configures hosted OAuth MCP, and prints the exact restart or reload step. Run runtype install-mcp instead when you only want the skills and MCP portion without CLI sign-in, and runtype skills install only when you intentionally want skills without MCP. See Connect Runtype to coding agents for the full walkthrough.
To see which agents the skills-only command detects:
To target specific agents, pass their short ids (for example claude, cursor, codex):
Useful flags:
--yes— skip the confirmation prompt (for scripts and CI)--json— structured, non-interactive output--verbose— show install progress
The first time you run any runtype command in an interactive terminal, the CLI also offers this install once automatically.
Install specific skills
To pick a subset interactively:
To install one skill non-interactively:
Available skills
Most users want all of them — install once, and the right skill activates based on what you’re asking.
Target a specific agent
The CLI auto-detects installed agents, but you can scope an install to one with the -a flag (repeatable):
Supported agents include claude-code, cursor, codex, copilot, windsurf, cline, gemini, opencode, and many others. See the skills.sh agent directory for the full list and per-agent install paths.
Connect the MCP server
Skills are most useful alongside the Runtype MCP server, which lets the agent read your live workspace and create resources directly. Run the all-in-one onboarding command rather than choosing a separate manual configuration path:
Complete the sign-in and OAuth actions it reports, then restart or reload the coding agent so it can activate the newly configured tools. If you are already signed into the CLI, runtype install-mcp performs just the skills and MCP steps. See the canonical agent onboarding script for the full first-session sequence.
Updating and removing
Next steps
- Managing Runtype with Claude for the MCP connector setup
- Runtype skills repository for skill source and contribution guide
- skills.sh for the hosted skill catalog