Skip to content

Commit 277be19

Browse files
moe1214TabishB
andauthored
docs: support Trae AI (Fission-AI#601)
Co-authored-by: Tabish Bidiwale <30385142+TabishB@users.noreply.github.com>
1 parent f45ba73 commit 277be19

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

docs/commands.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,7 @@ Different AI tools use slightly different command syntax. Use the format that ma
569569
| Cursor | `/opsx-new`, `/opsx-apply` |
570570
| Windsurf | `/opsx-new`, `/opsx-apply` |
571571
| Copilot | `/opsx-new`, `/opsx-apply` |
572+
| Trae | `/openspec-new-change`, `/openspec-apply-change` |
572573

573574
The functionality is identical regardless of syntax.
574575

docs/supported-tools.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ For each tool you select, OpenSpec installs:
3333
| Qoder | `.qoder/skills/` | `.qoder/commands/opsx/` |
3434
| Qwen Code | `.qwen/skills/` | `.qwen/commands/` |
3535
| RooCode | `.roo/skills/` | `.roo/commands/` |
36+
| Trae | `.trae/skills/` | `.trae/skills/` (via `/openspec-*`) |
3637
| Windsurf | `.windsurf/skills/` | `.windsurf/commands/opsx/` |
3738

3839
## Non-Interactive Setup
@@ -50,7 +51,7 @@ openspec init --tools all
5051
openspec init --tools none
5152
```
5253

53-
**Available tool IDs:** `amazon-q`, `antigravity`, `auggie`, `claude`, `cline`, `codebuddy`, `codex`, `continue`, `costrict`, `crush`, `cursor`, `factory`, `gemini`, `github-copilot`, `iflow`, `kilocode`, `opencode`, `qoder`, `qwen`, `roocode`, `windsurf`
54+
**Available tool IDs:** `amazon-q`, `antigravity`, `auggie`, `claude`, `cline`, `codebuddy`, `codex`, `continue`, `costrict`, `crush`, `cursor`, `factory`, `gemini`, `github-copilot`, `iflow`, `kilocode`, `opencode`, `qoder`, `qwen`, `roocode`, `trae`, `windsurf`
5455

5556
## What Gets Installed
5657

src/core/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export const AI_TOOLS: AIToolOption[] = [
3838
{ name: 'Qoder', value: 'qoder', available: true, successLabel: 'Qoder', skillsDir: '.qoder' },
3939
{ name: 'Qwen Code', value: 'qwen', available: true, successLabel: 'Qwen Code', skillsDir: '.qwen' },
4040
{ name: 'RooCode', value: 'roocode', available: true, successLabel: 'RooCode', skillsDir: '.roo' },
41+
{ name: 'Trae', value: 'trae', available: true, successLabel: 'Trae', skillsDir: '.trae' },
4142
{ name: 'Windsurf', value: 'windsurf', available: true, successLabel: 'Windsurf', skillsDir: '.windsurf' },
4243
{ name: 'AGENTS.md (works with Amp, VS Code, …)', value: 'agents', available: false, successLabel: 'your AGENTS.md-compatible assistant' }
4344
];

0 commit comments

Comments
 (0)