Platform Setup¶
Claude Skills works with 10 AI coding assistants. Each platform has a different configuration file where you reference skills.
Supported Platforms¶
| Platform | Config File | Status |
|---|---|---|
| Claude Code | CLAUDE.md |
Full support (skills + agents + subagents) |
| OpenAI Codex | AGENTS.md |
Full support (skills + agents) |
| Cursor | .cursorrules |
Full support |
| GitHub Copilot | .github/copilot-instructions.md |
Full support |
| Google Gemini | GEMINI.md |
Full support |
| Windsurf | .windsurfrules |
Full support |
| Cline | .clinerules |
Full support |
| Aider | .aider.conf.yml |
Full support |
| Goose | .goosehints |
Full support |
| RooCode | .roo/rules |
Full support |
Platform-Specific Setup¶
Claude Code has the deepest integration. It supports SKILL.md references, subagents, slash commands, and hooks.
<!-- CLAUDE.md -->
## Skills
When reviewing code, load engineering/code-reviewer/SKILL.md
When optimizing SEO, load marketing/seo-specialist/SKILL.md
Subagents live in .claude/agents/ and run autonomously:
Slash commands live in .claude/commands/:
Add skill references to .cursorrules at your project root:
Reference skills in .github/copilot-instructions.md:
Configure in AGENTS.md at your project root:
## Skills
- engineering/senior-fullstack/SKILL.md - Fullstack development
- marketing/seo-specialist/SKILL.md - SEO optimization
See engineering/codex-cli-specialist/SKILL.md for the full Codex integration guide.
Add to .windsurfrules:
Cross-Platform Skills¶
Every SKILL.md file is platform-agnostic. The same skill works in Claude Code, Cursor, Copilot, and all other supported assistants. Only the configuration file differs.
Python tools are universal
The scripts/ folder in each skill contains standard Python CLI tools. They run identically regardless of which AI platform you use.