Agent SkillsAgent Skills

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]
OptionDescription
-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-agentsList 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
OptionDescription
-o, --output <path>Output file path (default: auto)
--overwriteOverwrite 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
OptionDescription
-a, --agents <agents>Comma-separated agent names (default: all)
-o, --output <dir>Output directory (default: .)
--overwriteOverwrite 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)