SkillTrans banner
wuweiwei18 wuweiwei18

SkillTrans

AI community

Description

A powerful CLI tool that automatically converts Claude Code Skills into native configurations for Trae, Cursor, Codebuddy, Qoder, Codex, and Antigravity. Write once, run anywhere across all major AI IDEs.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

SkillTrans πŸš€

[English](#english) | [δΈ­ζ–‡](#δΈ­ζ–‡)

A command-line tool that automatically converts Claude Code Skills into native configurations for various AI IDEs.

It breaks down the walls between different AI assistants, allowing you to "Write Once, Run Anywhere" across Trae, Cursor, Codebuddy, Qoder, Codex, and Antigravity.

✨ Supported Platforms

  • βœ… Trae (.trae/skills/)
  • βœ… Cursor (.cursor/rules/)
  • βœ… Codebuddy (.codebuddy/skills/)
  • βœ… Qoder (.qoder/rules/)
  • βœ… Codex (.codex/prompts/)
  • βœ… Antigravity (.antigravity/skills/)

πŸ“¦ Installation

Clone the repository and install dependencies:

git clone https://github.com/wuweiwei18/SkillTrans.git
cd SkillTrans
npm install

πŸš€ Usage

Method 1: Using GUI (Recommended for Beginners)

Simply double-click `SkillTrans-GUI.exe` in the root directory!

It provides a visual interface where you can:

  1. Select the source skills folder and output dist folder.
  2. Choose the target IDE from a dropdown menu.
  3. Click "Start Conversion" and watch the logs in real-time.

*Note: You need to install [.NET Framework 4.0+](https://dotnet.microsoft.com/en-us/download/dotnet-framework) to run the GUI (Pre-installed on most Windows).*

Method 2: Command Line

Place your Claude Code format skill folders (containing `SKILL.md` and optional `references/` or `scripts/`) into the `examples/skills-main/skills/` directory.

Then, run the converter:

# Convert to ALL supported IDE formats (Default path)
node converter.js

# Convert to specific IDE formats only
node converter.js trae cursor
node converter.js antigravity

# Specify custom source and output paths
node converter.js trae cursor --src "D:\my-skills" --out "D:\my-dist"

The generated configuration files will be output to the `dist/` directory. You can directly copy the `.trae` or `.cursor` folders to your project's root directory to apply the skills immediately.

πŸ› οΈ How it works