Skip to content

Commit fb8b0fb

Browse files
authored
Merge pull request #45 from sampleXbro/develop
docs: add Amp, Zed, and Warp to all target enumerations
2 parents efba147 + 42e7460 commit fb8b0fb

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Prefer a local install? `npm install -D agentsmesh` (also `pnpm add -D` / `yarn
8585
If your repo already has `.cursor/`, `.claude/`, `.github/copilot-instructions.md`, or other native files, you don't have to delete them. The recommended flow imports them into `.agentsmesh/` first, lets you preview the projection, and only then trusts `generate`.
8686

8787
```bash
88-
npx agentsmesh import --from cursor # or claude-code, copilot, codex-cli, gemini-cli, windsurf, ...
88+
npx agentsmesh import --from cursor # or claude-code, copilot, codex-cli, gemini-cli, windsurf, amp, zed, warp, ...
8989
npx agentsmesh diff # patch-style preview of what generate would change
9090
npx agentsmesh generate # write native configs (back) from canonical
9191
npx agentsmesh check # add to CI to detect drift
@@ -121,7 +121,7 @@ On macOS/Linux you can also run `tree .agentsmesh` if you have `tree` installed.
121121

122122
## Supported AI coding tools
123123

124-
AgentsMesh currently generates native config for every major AI coding assistant — Claude Code, Cursor, GitHub Copilot, Gemini CLI, Windsurf, Continue, Cline, Kiro, Codex CLI, Junie, Roo Code, Antigravity — plus plugin targets you can ship as standalone npm packages. Each tool's native vs. embedded support per feature is tracked in the [supported tools matrix](https://samplexbro.github.io/agentsmesh/reference/supported-tools/). The full matrix table is also embedded [further down this README](#supported-tools--feature-matrix).
124+
AgentsMesh currently generates native config for every major AI coding assistant — Claude Code, Cursor, GitHub Copilot, Gemini CLI, Windsurf, Continue, Cline, Kiro, Codex CLI, Junie, Roo Code, Antigravity, Amp, Zed, Warp — plus plugin targets you can ship as standalone npm packages. Each tool's native vs. embedded support per feature is tracked in the [supported tools matrix](https://samplexbro.github.io/agentsmesh/reference/supported-tools/). The full matrix table is also embedded [further down this README](#supported-tools--feature-matrix).
125125

126126
---
127127

@@ -147,7 +147,7 @@ The reason `AGENTS.md` alone is not enough: most AI coding assistants expose con
147147
- **GitHub Copilot** has `.github/copilot-instructions.md`, `.github/instructions/*.instructions.md`, agents, prompts, and (partial) hooks.
148148
- **Gemini CLI** has `GEMINI.md`, `.gemini/settings.json` (MCP + hooks), `.gemini/commands/*.toml`, and agents.
149149
- **Codex CLI** has `AGENTS.md` plus `.codex/config.toml`, `.codex/agents/*.toml`, and `.codex/rules/`.
150-
- **Windsurf**, **Continue**, **Cline**, **Kiro**, **Junie**, **Roo Code**, **Antigravity** each have their own native rules, workflows, MCP servers, skills, and ignore files.
150+
- **Windsurf**, **Continue**, **Cline**, **Kiro**, **Junie**, **Roo Code**, **Antigravity**, **Amp**, **Zed**, **Warp** each have their own native rules, workflows, MCP servers, skills, and ignore files.
151151

152152
AgentsMesh canonicalizes all of these — rules, commands, agents, skills, MCP servers, hooks, ignore patterns, permissions — so you don't pick one tool's surface as the lowest common denominator. When a tool has no native slot for a feature, AgentsMesh embeds it with round-trip metadata instead of dropping it.
153153

website/src/content/docs/getting-started/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Choose the path that matches your situation.
8383
agentsmesh init
8484
```
8585

86-
AgentsMesh scans for existing configs in `.claude/`, `.cursor/`, `.cline/`, `.junie/`, `.kiro/`, `.continue/`, `.gemini/`, `.codex/`, `.windsurf/`, and `.github/copilot-instructions.md`. It prompts you to import each one found.
86+
AgentsMesh scans for existing configs in `.claude/`, `.cursor/`, `.cline/`, `.junie/`, `.kiro/`, `.continue/`, `.gemini/`, `.codex/`, `.windsurf/`, `.amp/`, `.warp/`, `.zed/`, and `.github/copilot-instructions.md`. It prompts you to import each one found.
8787

8888
To auto-import everything without prompts:
8989

website/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import SoftwareApplicationJsonLd from '../../components/SoftwareApplicationJsonL
4545

4646
## AI coding config should not drift between tools
4747

48-
Every AI coding assistant ships a different configuration surface. Claude Code reads `CLAUDE.md` and `.claude/settings.json`. Cursor uses `.cursor/rules/*.mdc`. GitHub Copilot reads `.github/copilot-instructions.md` and prompts. Gemini CLI, Windsurf, Continue, Cline, Kiro, Codex CLI, Junie, Roo Code, and Antigravity each add their own files for rules, commands, agents, skills, MCP servers, hooks, ignore patterns, or permissions.
48+
Every AI coding assistant ships a different configuration surface. Claude Code reads `CLAUDE.md` and `.claude/settings.json`. Cursor uses `.cursor/rules/*.mdc`. GitHub Copilot reads `.github/copilot-instructions.md` and prompts. Gemini CLI, Windsurf, Continue, Cline, Kiro, Codex CLI, Junie, Roo Code, Antigravity, Amp, Zed, and Warp each add their own files for rules, commands, agents, skills, MCP servers, hooks, ignore patterns, or permissions.
4949

5050
AgentsMesh turns that spread into one editable source of truth. Put the real project instructions in `.agentsmesh/`, then generate native files for every enabled tool. Import goes the other direction, so existing tool configs can be adopted without starting from scratch.
5151

website/src/content/docs/reference/supported-tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
draft: false
33
title: Supported Tools Matrix
4-
description: Complete feature-target compatibility matrix for every AI coding tool supported by AgentsMesh, including Claude Code, Cursor, Copilot, Continue, Junie, Kiro, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, Roo Code, and more as they ship.
4+
description: Complete feature-target compatibility matrix for every AI coding tool supported by AgentsMesh, including Claude Code, Cursor, Copilot, Continue, Junie, Kiro, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, Roo Code, Amp, Zed, Warp, and more as they ship.
55
---
66

77
AgentsMesh supports every major AI coding tool. This page documents what each tool supports natively, what is embedded/projected, and what is not supported.

0 commit comments

Comments
 (0)