Skip to main content

Skills Setup

Install Volr skills into your AI coding assistant.

Automatic Installation

The Volr CLI detects your IDE and installs the correct skill format:

npm install -g create-volr
volr auth login
volr skill install

Manual Installation

Claude Code

Create skill files in your project's .claude/skills/ directory:

mkdir -p .claude/skills
# Copy volr-checkout.md from https://github.com/volr/volr-skills/tree/main/claude-code

Cursor

Add rule files to .cursor/rules/:

mkdir -p .cursor/rules
# Copy volr-checkout.mdc from https://github.com/volr/volr-skills/tree/main/cursor

Codex

Add an AGENTS.md file to your project root:

# Copy from https://github.com/volr/volr-skills/tree/main/codex/AGENTS.md

Windsurf

Add a .windsurfrules file to your project root:

# Copy from https://github.com/volr/volr-skills/tree/main/windsurf/.windsurfrules

Verifying Installation

After installation, ask your AI assistant:

"How do I create a Volr checkout?"

It should respond with SDK code using VolrCheckout.create() and explain the webhook flow.

Next Steps