@@ -35,7 +35,7 @@ Specify supports multiple AI agents by generating agent-specific command files a
3535| ** Gemini CLI** | ` .gemini/commands/ ` | TOML | ` gemini ` | Google's Gemini CLI |
3636| ** GitHub Copilot** | ` .github/agents/ ` | Markdown | N/A (IDE-based) | GitHub Copilot in VS Code |
3737| ** Cursor** | ` .cursor/commands/ ` | Markdown | ` cursor-agent ` | Cursor CLI |
38- | ** Qwen Code** | ` .qwen/commands/ ` | TOML | ` qwen ` | Alibaba's Qwen Code CLI |
38+ | ** Qwen Code** | ` .qwen/commands/ ` | Markdown | ` qwen ` | Alibaba's Qwen Code CLI |
3939| ** opencode** | ` .opencode/command/ ` | Markdown | ` opencode ` | opencode CLI |
4040| ** Codex CLI** | ` .codex/commands/ ` | Markdown | ` codex ` | Codex CLI |
4141| ** Windsurf** | ` .windsurf/workflows/ ` | Markdown | N/A (IDE-based) | Windsurf IDE workflows |
@@ -50,8 +50,8 @@ Specify supports multiple AI agents by generating agent-specific command files a
5050| ** Tabnine CLI** | ` .tabnine/agent/commands/ ` | TOML | ` tabnine ` | Tabnine CLI |
5151| ** Kimi Code** | ` .kimi/skills/ ` | Markdown | ` kimi ` | Kimi Code CLI (Moonshot AI) |
5252| ** IBM Bob** | ` .bob/commands/ ` | Markdown | N/A (IDE-based) | IBM Bob IDE |
53- | ** Trae** | ` .trae/rules/ ` | Markdown | N/A (IDE-based) | Trae IDE |
5453| ** Generic** | User-specified via ` --ai-commands-dir ` | Markdown | N/A | Bring your own agent |
54+ | ** Trae** | ` .trae/rules/ ` | Markdown | N/A (IDE-based) | Trae IDE |
5555
5656### Step-by-Step Integration Guide
5757
@@ -89,7 +89,7 @@ This eliminates the need for special-case mappings throughout the codebase.
8989- ` folder ` : Directory where agent-specific files are stored (relative to project root)
9090- ` commands_subdir ` : Subdirectory name within the agent folder where command/prompt files are stored (default: ` "commands" ` )
9191 - Most agents use ` "commands" ` (e.g., ` .claude/commands/ ` )
92- - Some agents use alternative names: ` "agents" ` (copilot), ` "workflows" ` (windsurf, kilocode, agy ), ` "prompts" ` (codex, kiro-cli), ` "command" ` (opencode - singular)
92+ - Some agents use alternative names: ` "agents" ` (copilot), ` "workflows" ` (windsurf, kilocode), ` "prompts" ` (codex, kiro-cli), ` "command" ` (opencode - singular)
9393 - This field enables ` --ai-skills ` to locate command templates correctly for skill generation
9494- ` install_url ` : Installation documentation URL (set to ` None ` for IDE-based agents)
9595- ` requires_cli ` : Whether the agent requires a CLI tool check during initialization
@@ -340,7 +340,7 @@ Work within integrated development environments:
340340
341341### Markdown Format
342342
343- Used by: Claude, Cursor, opencode, Windsurf, Kiro CLI, Amp, SHAI, IBM Bob, Kimi Code
343+ Used by: Claude, Cursor, opencode, Windsurf, Kiro CLI, Amp, SHAI, IBM Bob, Kimi Code, Qwen
344344
345345** Standard format:**
346346
@@ -365,7 +365,7 @@ Command content with {SCRIPT} and $ARGUMENTS placeholders.
365365
366366### TOML Format
367367
368- Used by: Gemini, Qwen, Tabnine
368+ Used by: Gemini, Tabnine
369369
370370``` toml
371371description = " Command description"
0 commit comments