From 3c0b113c2286a7a36f5512719a6f81817b670101 Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Mon, 30 Mar 2026 07:05:46 +0500 Subject: [PATCH 01/11] docs: sync AGENTS.md with AGENT_CONFIG for missing agents MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Antigravity (agy) and Mistral Vibe (vibe) to the supported agents table — both exist in AGENT_CONFIG but were missing from documentation. Fix Agent Categories section: - Move Cursor from CLI-Based to IDE-Based (requires_cli is False) - Add missing CLI agents: Codex, Auggie, iFlow - Add missing IDE agents: Kilo Code, Roo Code, Trae, Antigravity Update Command File Formats and Directory Conventions sections to include all agents that were previously undocumented. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index a15e0bc4b7..34e2f2d1ac 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -50,6 +50,8 @@ Specify supports multiple AI agents by generating agent-specific command files a | **iFlow CLI** | `.iflow/commands/` | Markdown | `iflow` | iFlow CLI (iflow-ai) | | **IBM Bob** | `.bob/commands/` | Markdown | N/A (IDE-based) | IBM Bob IDE | | **Trae** | `.trae/rules/` | Markdown | N/A (IDE-based) | Trae IDE | +| **Antigravity** | `.agent/commands/` | Markdown | N/A (IDE-based) | Antigravity IDE | +| **Mistral Vibe** | `.vibe/prompts/` | Markdown | `vibe` | Mistral Vibe CLI | | **Generic** | User-specified via `--ai-commands-dir` | Markdown | N/A | Bring your own agent | ### Step-by-Step Integration Guide @@ -316,32 +318,40 @@ Require a command-line tool to be installed: - **Claude Code**: `claude` CLI - **Gemini CLI**: `gemini` CLI -- **Cursor**: `cursor-agent` CLI - **Qwen Code**: `qwen` CLI - **opencode**: `opencode` CLI +- **Codex CLI**: `codex` CLI - **Junie**: `junie` CLI -- **Kiro CLI**: `kiro-cli` CLI +- **Auggie CLI**: `auggie` CLI - **CodeBuddy CLI**: `codebuddy` CLI - **Qoder CLI**: `qodercli` CLI +- **Kiro CLI**: `kiro-cli` CLI - **Amp**: `amp` CLI - **SHAI**: `shai` CLI - **Tabnine CLI**: `tabnine` CLI - **Kimi Code**: `kimi` CLI +- **Mistral Vibe**: `vibe` CLI - **Pi Coding Agent**: `pi` CLI +- **iFlow CLI**: `iflow` CLI ### IDE-Based Agents Work within integrated development environments: - **GitHub Copilot**: Built into VS Code/compatible editors +- **Cursor**: Built into Cursor IDE - **Windsurf**: Built into Windsurf IDE +- **Kilo Code**: Built into Kilo Code IDE +- **Roo Code**: Built into Roo Code IDE - **IBM Bob**: Built into IBM Bob IDE +- **Trae**: Built into Trae IDE +- **Antigravity**: Built into Antigravity IDE ## Command File Formats ### Markdown Format -Used by: Claude, Cursor, opencode, Windsurf, Junie, Kiro CLI, Amp, SHAI, IBM Bob, Kimi Code, Qwen, Pi +Used by: Claude, Cursor, opencode, Windsurf, Junie, Kiro CLI, Amp, SHAI, IBM Bob, Kimi Code, Qwen, Pi, Codex, Auggie, CodeBuddy, Qoder, Roo Code, Kilo Code, Trae, Antigravity, Mistral Vibe, iFlow **Standard format:** @@ -381,13 +391,19 @@ Command content with {SCRIPT} and {{args}} placeholders. - **CLI agents**: Usually `./commands/` - **Skills-based exceptions**: - Codex: `.agents/skills/` (skills, invoked as `$speckit-`) + - Kimi Code: `.kimi/skills/` (skills, invoked as `/skill:speckit-`) - **Prompt-based exceptions**: - Kiro CLI: `.kiro/prompts/` - Pi: `.pi/prompts/` + - Mistral Vibe: `.vibe/prompts/` +- **Rules-based exceptions**: + - Trae: `.trae/rules/` - **IDE agents**: Follow IDE-specific patterns: - Copilot: `.github/agents/` - Cursor: `.cursor/commands/` - Windsurf: `.windsurf/workflows/` + - Kilo Code: `.kilocode/workflows/` + - Antigravity: `.agent/commands/` ## Argument Patterns From e12cb190972e3c064496f9de65837a1e11c40b0a Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 00:31:55 +0500 Subject: [PATCH 02/11] docs: address Copilot review feedback on AGENTS.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix Cursor table entry: CLI Tool → N/A (IDE-based), matches requires_cli=False in AGENT_CONFIG - Fix Antigravity directory: .agent/commands/ → .agent/skills/ (skills-based per AGENT_SKILLS_MIGRATIONS) - Add opencode singular command exception to Directory Conventions (.opencode/command/) Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 34e2f2d1ac..785cc97aad 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -30,7 +30,7 @@ Specify supports multiple AI agents by generating agent-specific command files a | **Claude Code** | `.claude/commands/` | Markdown | `claude` | Anthropic's Claude Code CLI | | **Gemini CLI** | `.gemini/commands/` | TOML | `gemini` | Google's Gemini CLI | | **GitHub Copilot** | `.github/agents/` | Markdown | N/A (IDE-based) | GitHub Copilot in VS Code | -| **Cursor** | `.cursor/commands/` | Markdown | `cursor-agent` | Cursor CLI | +| **Cursor** | `.cursor/commands/` | Markdown | N/A (IDE-based) | Cursor IDE | | **Qwen Code** | `.qwen/commands/` | Markdown | `qwen` | Alibaba's Qwen Code CLI | | **opencode** | `.opencode/command/` | Markdown | `opencode` | opencode CLI | | **Codex CLI** | `.agents/skills/` | Markdown | `codex` | Codex CLI (skills) | @@ -50,7 +50,7 @@ Specify supports multiple AI agents by generating agent-specific command files a | **iFlow CLI** | `.iflow/commands/` | Markdown | `iflow` | iFlow CLI (iflow-ai) | | **IBM Bob** | `.bob/commands/` | Markdown | N/A (IDE-based) | IBM Bob IDE | | **Trae** | `.trae/rules/` | Markdown | N/A (IDE-based) | Trae IDE | -| **Antigravity** | `.agent/commands/` | Markdown | N/A (IDE-based) | Antigravity IDE | +| **Antigravity** | `.agent/skills/` | Markdown | N/A (IDE-based) | Antigravity IDE (skills-based) | | **Mistral Vibe** | `.vibe/prompts/` | Markdown | `vibe` | Mistral Vibe CLI | | **Generic** | User-specified via `--ai-commands-dir` | Markdown | N/A | Bring your own agent | @@ -389,6 +389,8 @@ Command content with {SCRIPT} and {{args}} placeholders. ## Directory Conventions - **CLI agents**: Usually `./commands/` +- **Singular command exception**: + - opencode: `.opencode/command/` (singular `command`, not `commands`) - **Skills-based exceptions**: - Codex: `.agents/skills/` (skills, invoked as `$speckit-`) - Kimi Code: `.kimi/skills/` (skills, invoked as `/skill:speckit-`) @@ -403,7 +405,7 @@ Command content with {SCRIPT} and {{args}} placeholders. - Cursor: `.cursor/commands/` - Windsurf: `.windsurf/workflows/` - Kilo Code: `.kilocode/workflows/` - - Antigravity: `.agent/commands/` + - Antigravity: `.agent/skills/` (skills-based) ## Argument Patterns From e2ec9d7024171250233e6f5ad4ca2625a12342e8 Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 18:09:13 +0500 Subject: [PATCH 03/11] docs: add --ai key hint for Cursor in AGENTS.md Cursor's AGENT_CONFIG key is cursor-agent but the CLI Tool column shows N/A (IDE-based). Adding the --ai flag reference in the Description column so readers know the correct key to use with specify init --ai cursor-agent. Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 785cc97aad..0601770a6f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -30,7 +30,7 @@ Specify supports multiple AI agents by generating agent-specific command files a | **Claude Code** | `.claude/commands/` | Markdown | `claude` | Anthropic's Claude Code CLI | | **Gemini CLI** | `.gemini/commands/` | TOML | `gemini` | Google's Gemini CLI | | **GitHub Copilot** | `.github/agents/` | Markdown | N/A (IDE-based) | GitHub Copilot in VS Code | -| **Cursor** | `.cursor/commands/` | Markdown | N/A (IDE-based) | Cursor IDE | +| **Cursor** | `.cursor/commands/` | Markdown | N/A (IDE-based) | Cursor IDE (`--ai cursor-agent`) | | **Qwen Code** | `.qwen/commands/` | Markdown | `qwen` | Alibaba's Qwen Code CLI | | **opencode** | `.opencode/command/` | Markdown | `opencode` | opencode CLI | | **Codex CLI** | `.agents/skills/` | Markdown | `codex` | Codex CLI (skills) | @@ -339,7 +339,7 @@ Require a command-line tool to be installed: Work within integrated development environments: - **GitHub Copilot**: Built into VS Code/compatible editors -- **Cursor**: Built into Cursor IDE +- **Cursor**: Built into Cursor IDE (`--ai cursor-agent`) - **Windsurf**: Built into Windsurf IDE - **Kilo Code**: Built into Kilo Code IDE - **Roo Code**: Built into Roo Code IDE From 8aa807ad3495146ddfd19cacfca4b37744dc5e42 Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 18:13:26 +0500 Subject: [PATCH 04/11] docs: add --ai key hint for Antigravity in AGENTS.md Antigravity's AGENT_CONFIG key is 'agy' and requires --ai-skills flag, but the table only showed N/A (IDE-based). Adding the --ai flag reference so readers know to use: specify init --ai agy --ai-skills Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 0601770a6f..89aa18c217 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -50,7 +50,7 @@ Specify supports multiple AI agents by generating agent-specific command files a | **iFlow CLI** | `.iflow/commands/` | Markdown | `iflow` | iFlow CLI (iflow-ai) | | **IBM Bob** | `.bob/commands/` | Markdown | N/A (IDE-based) | IBM Bob IDE | | **Trae** | `.trae/rules/` | Markdown | N/A (IDE-based) | Trae IDE | -| **Antigravity** | `.agent/skills/` | Markdown | N/A (IDE-based) | Antigravity IDE (skills-based) | +| **Antigravity** | `.agent/skills/` | Markdown | N/A (IDE-based) | Antigravity IDE (`--ai agy --ai-skills`) | | **Mistral Vibe** | `.vibe/prompts/` | Markdown | `vibe` | Mistral Vibe CLI | | **Generic** | User-specified via `--ai-commands-dir` | Markdown | N/A | Bring your own agent | @@ -345,7 +345,7 @@ Work within integrated development environments: - **Roo Code**: Built into Roo Code IDE - **IBM Bob**: Built into IBM Bob IDE - **Trae**: Built into Trae IDE -- **Antigravity**: Built into Antigravity IDE +- **Antigravity**: Built into Antigravity IDE (`--ai agy --ai-skills`) ## Command File Formats From 8e07644b080b0052dd2f2f478905afc7d72ac26d Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 21:51:15 +0500 Subject: [PATCH 05/11] docs: clarify Antigravity directory convention for both modes AGENT_CONFIG generates .agent/commands/ by default, but --ai-skills uses .agent/skills/. Document both paths in Directory Conventions. Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 89aa18c217..b063f359a0 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -405,7 +405,7 @@ Command content with {SCRIPT} and {{args}} placeholders. - Cursor: `.cursor/commands/` - Windsurf: `.windsurf/workflows/` - Kilo Code: `.kilocode/workflows/` - - Antigravity: `.agent/skills/` (skills-based) + - Antigravity: `.agent/commands/` (default) or `.agent/skills/` (with `--ai-skills`) ## Argument Patterns From 0ce0f5fdce1c1c5b380962d6b81c6aafb2e1c0dd Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 22:28:45 +0500 Subject: [PATCH 06/11] docs: add Tabnine nested path exception to Directory Conventions Tabnine uses .tabnine/agent/commands/ which has an extra path segment compared to the usual ./commands/ convention. Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index b063f359a0..0dd36bb9dd 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -391,6 +391,8 @@ Command content with {SCRIPT} and {{args}} placeholders. - **CLI agents**: Usually `./commands/` - **Singular command exception**: - opencode: `.opencode/command/` (singular `command`, not `commands`) +- **Nested path exception**: + - Tabnine: `.tabnine/agent/commands/` (extra `agent/` segment) - **Skills-based exceptions**: - Codex: `.agents/skills/` (skills, invoked as `$speckit-`) - Kimi Code: `.kimi/skills/` (skills, invoked as `/skill:speckit-`) From 2030054e6db791c1ac8f30b1af383fc9c9ea0ebe Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 23:22:45 +0500 Subject: [PATCH 07/11] docs: add Copilot to Markdown list, fix Antigravity dir convention - Add GitHub Copilot to the Markdown format "Used by" list (it uses markdown with .agent.md extension and chat mode frontmatter) - Clarify Antigravity uses .agent/skills/ (requires --ai-skills); .agent/commands/ is deprecated/legacy Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 0dd36bb9dd..c8382c099b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -351,7 +351,7 @@ Work within integrated development environments: ### Markdown Format -Used by: Claude, Cursor, opencode, Windsurf, Junie, Kiro CLI, Amp, SHAI, IBM Bob, Kimi Code, Qwen, Pi, Codex, Auggie, CodeBuddy, Qoder, Roo Code, Kilo Code, Trae, Antigravity, Mistral Vibe, iFlow +Used by: Claude, Cursor, GitHub Copilot, opencode, Windsurf, Junie, Kiro CLI, Amp, SHAI, IBM Bob, Kimi Code, Qwen, Pi, Codex, Auggie, CodeBuddy, Qoder, Roo Code, Kilo Code, Trae, Antigravity, Mistral Vibe, iFlow **Standard format:** @@ -407,7 +407,7 @@ Command content with {SCRIPT} and {{args}} placeholders. - Cursor: `.cursor/commands/` - Windsurf: `.windsurf/workflows/` - Kilo Code: `.kilocode/workflows/` - - Antigravity: `.agent/commands/` (default) or `.agent/skills/` (with `--ai-skills`) + - Antigravity: `.agent/skills/` (requires `--ai-skills`; `.agent/commands/` is deprecated) ## Argument Patterns From 315bb3f54dc891b88c6e9b3c343b1c00f55cdd4d Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Tue, 31 Mar 2026 23:30:04 +0500 Subject: [PATCH 08/11] docs: add missing IDE agents to Directory Conventions Add Roo Code and IBM Bob to the IDE agents list in Directory Conventions so all IDE-based agents are documented. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index c8382c099b..bc66b90b11 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -407,6 +407,8 @@ Command content with {SCRIPT} and {{args}} placeholders. - Cursor: `.cursor/commands/` - Windsurf: `.windsurf/workflows/` - Kilo Code: `.kilocode/workflows/` + - Roo Code: `.roo/commands/` + - IBM Bob: `.bob/commands/` - Antigravity: `.agent/skills/` (requires `--ai-skills`; `.agent/commands/` is deprecated) ## Argument Patterns From 12f7037f6e14870434b99da4146fc4e473a317b2 Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Wed, 1 Apr 2026 00:55:13 +0500 Subject: [PATCH 09/11] docs: document Codex --ai-skills requirement in all sections Codex CLI requires --ai-skills when explicitly selected via specify init --ai codex (exits with migration error otherwise). Updated table, CLI-Based Agents list, and Directory Conventions. Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index bc66b90b11..d243635f74 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -33,7 +33,7 @@ Specify supports multiple AI agents by generating agent-specific command files a | **Cursor** | `.cursor/commands/` | Markdown | N/A (IDE-based) | Cursor IDE (`--ai cursor-agent`) | | **Qwen Code** | `.qwen/commands/` | Markdown | `qwen` | Alibaba's Qwen Code CLI | | **opencode** | `.opencode/command/` | Markdown | `opencode` | opencode CLI | -| **Codex CLI** | `.agents/skills/` | Markdown | `codex` | Codex CLI (skills) | +| **Codex CLI** | `.agents/skills/` | Markdown | `codex` | Codex CLI (`--ai codex --ai-skills`) | | **Windsurf** | `.windsurf/workflows/` | Markdown | N/A (IDE-based) | Windsurf IDE workflows | | **Junie** | `.junie/commands/` | Markdown | `junie` | Junie by JetBrains | | **Kilo Code** | `.kilocode/workflows/` | Markdown | N/A (IDE-based) | Kilo Code IDE | @@ -320,7 +320,7 @@ Require a command-line tool to be installed: - **Gemini CLI**: `gemini` CLI - **Qwen Code**: `qwen` CLI - **opencode**: `opencode` CLI -- **Codex CLI**: `codex` CLI +- **Codex CLI**: `codex` CLI (requires `--ai-skills`) - **Junie**: `junie` CLI - **Auggie CLI**: `auggie` CLI - **CodeBuddy CLI**: `codebuddy` CLI @@ -394,7 +394,7 @@ Command content with {SCRIPT} and {{args}} placeholders. - **Nested path exception**: - Tabnine: `.tabnine/agent/commands/` (extra `agent/` segment) - **Skills-based exceptions**: - - Codex: `.agents/skills/` (skills, invoked as `$speckit-`) + - Codex: `.agents/skills/` (requires `--ai-skills`; invoked as `$speckit-`) - Kimi Code: `.kimi/skills/` (skills, invoked as `/skill:speckit-`) - **Prompt-based exceptions**: - Kiro CLI: `.kiro/prompts/` From 0ded472f6dc50498efc71d4704caac0e9dd75e53 Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Wed, 1 Apr 2026 01:14:33 +0500 Subject: [PATCH 10/11] docs: fix Antigravity dir to match AGENT_CONFIG, add Amp shared folder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Antigravity table row: .agent/skills/ → .agent/commands/ (matches AGENT_CONFIG folder + commands_subdir; skills mode via --ai-skills) - Add shared .agents/ folder exception for Amp and Codex - Move Codex from Skills-based to Shared folder section (it shares .agents/ with Amp) Addresses Copilot review feedback. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index d243635f74..d21f9a2a25 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -50,7 +50,7 @@ Specify supports multiple AI agents by generating agent-specific command files a | **iFlow CLI** | `.iflow/commands/` | Markdown | `iflow` | iFlow CLI (iflow-ai) | | **IBM Bob** | `.bob/commands/` | Markdown | N/A (IDE-based) | IBM Bob IDE | | **Trae** | `.trae/rules/` | Markdown | N/A (IDE-based) | Trae IDE | -| **Antigravity** | `.agent/skills/` | Markdown | N/A (IDE-based) | Antigravity IDE (`--ai agy --ai-skills`) | +| **Antigravity** | `.agent/commands/` | Markdown | N/A (IDE-based) | Antigravity IDE (`--ai agy --ai-skills`) | | **Mistral Vibe** | `.vibe/prompts/` | Markdown | `vibe` | Mistral Vibe CLI | | **Generic** | User-specified via `--ai-commands-dir` | Markdown | N/A | Bring your own agent | @@ -393,8 +393,10 @@ Command content with {SCRIPT} and {{args}} placeholders. - opencode: `.opencode/command/` (singular `command`, not `commands`) - **Nested path exception**: - Tabnine: `.tabnine/agent/commands/` (extra `agent/` segment) +- **Shared `.agents/` folder**: + - Amp: `.agents/commands/` (shared folder, not `.amp/`) + - Codex: `.agents/skills/` (shared folder; requires `--ai-skills`; invoked as `$speckit-`) - **Skills-based exceptions**: - - Codex: `.agents/skills/` (requires `--ai-skills`; invoked as `$speckit-`) - Kimi Code: `.kimi/skills/` (skills, invoked as `/skill:speckit-`) - **Prompt-based exceptions**: - Kiro CLI: `.kiro/prompts/` @@ -409,7 +411,7 @@ Command content with {SCRIPT} and {{args}} placeholders. - Kilo Code: `.kilocode/workflows/` - Roo Code: `.roo/commands/` - IBM Bob: `.bob/commands/` - - Antigravity: `.agent/skills/` (requires `--ai-skills`; `.agent/commands/` is deprecated) + - Antigravity: `.agent/commands/` (default) → `.agent/skills/` with `--ai-skills` (required) ## Argument Patterns From ee1552c445e59f3bddcdd4b09dd1552d36ba9f4a Mon Sep 17 00:00:00 2001 From: Quratulain-bilal Date: Wed, 1 Apr 2026 01:25:29 +0500 Subject: [PATCH 11/11] docs: clarify Antigravity skills path is required, not optional Reword to make clear .agent/skills/ is the effective path and .agent/commands/ is deprecated, since CLI enforces --ai-skills. Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index d21f9a2a25..eb3d27065f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -411,7 +411,7 @@ Command content with {SCRIPT} and {{args}} placeholders. - Kilo Code: `.kilocode/workflows/` - Roo Code: `.roo/commands/` - IBM Bob: `.bob/commands/` - - Antigravity: `.agent/commands/` (default) → `.agent/skills/` with `--ai-skills` (required) + - Antigravity: `.agent/skills/` (`--ai-skills` required; `.agent/commands/` is deprecated) ## Argument Patterns