Export & Convert
Export skills to different AI agent formats and convert between them
exportconvertbootstrap
export#
Export skills to different AI agent formats. Supports all 42+ agents.
Note
Note: Every export follows the Agent Skills specification: .agentname/skills/skillname/SKILL.md
skills export [options]
| Option | Description |
|---|---|
-t, --target <agent> | Target agent(s): any agent name, comma-separated, or all (default: all) |
-d, --directory <dir> | Project directory (default: .) |
-n, --name <name> | Export specific skill only |
--list-agents | List all 42 available agent targets |
Examples:
skills export # Export to ALL 42 agents
skills export -t cursor # Cursor only
skills export -t cursor,claude,copilot # Comma-separated
skills export -t gemini-cli,windsurf,trae # New agents
skills export -n xlsx -t cursor # Single skill only
skills export --list-agents # Show all 42 agents
skills export -d /path/to/project # Custom project directory
Output:
Exporting 18 skill(s) to 3 agent(s)...
β Cursor: .cursor/skills/<skill>/SKILL.md
β Claude Code: .claude/skills/<skill>/SKILL.md
β GitHub Copilot: .github/skills/<skill>/SKILL.md
β¨ Export complete! (3/3 agents)
convert#
Convert skills between agent formats.
skills convert <source> <target-format> [options]
# Alias: skills cv
| Option | Description |
|---|---|
-o, --output <path> | Output file path (default: auto) |
--overwrite | Overwrite existing output file |
Supported formats: cursor, claude, copilot, codex, windsurf, antigravity
Example:
skills convert SKILL.md cursor
skills convert .cursorrules antigravity -o ./output/SKILL.md
skills cv SKILL.md copilot --overwrite
Output:
β Converted antigravity β cursor
Source: SKILL.md
Output: .cursor/skills/SKILL.md
bootstrap#
Auto-generate agent instruction files from your project's tech stack and conventions.
skills bootstrap [options]
# Alias: skills bs
| Option | Description |
|---|---|
-a, --agents <agents> | Comma-separated agent names (default: all) |
-o, --output <dir> | Output directory (default: .) |
--overwrite | Overwrite existing files |
Example:
skills bootstrap --agents cursor,claude
skills bs -o /tmp/my-project --overwrite
Output:
β Project analyzed
π Project: my-project
Stack: typescript, react
β .cursorrules
β CLAUDE.md
β¨ Generated 2 agent instruction file(s)