add Trae support

This commit is contained in:
Joe Danziger
2025-05-27 13:26:48 -04:00
parent ba18ccbcab
commit 93bd8f0f30
7 changed files with 213 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/**
* @typedef {'cline' | 'cursor' | 'roo' | 'windsurf'} RulesProfile
* @typedef {'cline' | 'cursor' | 'roo' | 'trae' | 'windsurf'} RulesProfile
*/
/**
@@ -13,6 +13,7 @@
* - cline: Cline IDE rules
* - cursor: Cursor IDE rules (default)
* - roo: Roo Code IDE rules
* - trae: Trae IDE rules
* - windsurf: Windsurf IDE rules
*
* To add a new rule profile:
@@ -20,7 +21,7 @@
* 2. Create a profile file in scripts/profiles/{profile}.js
* 3. Export it as {profile}Profile in scripts/profiles/index.js
*/
export const RULE_PROFILES = ['cline', 'cursor', 'roo', 'windsurf'];
export const RULE_PROFILES = ['cline', 'cursor', 'roo', 'trae', 'windsurf'];
/**
* Check if a given rule profile is valid