agentsmesh 0.16.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +96 -0
- package/README.md +61 -45
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +11546 -7427
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +153 -139
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +12099 -8050
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +12111 -8062
- package/dist/index.js.map +1 -1
- package/dist/{schema-CD2qcmDL.d.ts → schema-B4PYQrZH.d.ts} +24 -0
- package/dist/{target-descriptor-CvB1qzPn.d.ts → target-descriptor-XZEis_Js.d.ts} +19 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +11886 -7767
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agentsmesh.json +36 -0
- package/schemas/pack.json +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,101 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7c57018: Replace the AGENTS.md content-normalization logic with a shared-path rewrite skip. When two or more active targets emit the same root-instruction path (most commonly `AGENTS.md`), every copy keeps canonical `.agentsmesh/...` references instead of being rewritten to target-specific paths. The collision resolver then merges the byte-identical copies trivially.
|
|
8
|
+
|
|
9
|
+
**User-visible behavior change**
|
|
10
|
+
|
|
11
|
+
The single `AGENTS.md` at the project root now contains references like `.agentsmesh/skills/<name>/SKILL.md` rather than the previous `.agents/skills/<name>/SKILL.md` (or any other target-specific prefix). Tools reading `AGENTS.md` follow the path literally and find the file under `.agentsmesh/`, which is always present as the canonical source of truth. Each target's own directory (`.agents/skills/`, `.factory/skills/`, etc.) is still generated and its files still receive normal per-target reference rewriting — only the shared root-instruction file uses canonical paths.
|
|
12
|
+
|
|
13
|
+
**Why**
|
|
14
|
+
|
|
15
|
+
The previous approach generated N copies of `AGENTS.md`, rewrote their references to N different target-specific paths, and then ran ~200 lines of fragile reverse-normalization to prove they were "actually the same". That logic carried hardcoded target IDs, regex bare-path anchoring, and reverse reference maps — every new target risked breaking it. The new approach is structural: skip rewriting when a path is claimed by 2+ targets as their root instruction (detected via descriptor `rootInstructionPath` + `outputFamilies` of kind `'additional'`), so the content stays byte-identical and collision merge is a no-op. Plugin targets that declare a `rootInstructionPath` get the same treatment automatically — no per-target opt-in needed.
|
|
16
|
+
|
|
17
|
+
**Internal**
|
|
18
|
+
- Drops `src/targets/catalog/agents-md-overlap.ts` (199 lines) and its test file
|
|
19
|
+
- Adds `computeSharedRootInstructionPaths()` to `engine.ts` (descriptor-driven, no hardcoded target IDs)
|
|
20
|
+
- Adds an optional `skipPaths: ReadonlySet<string>` parameter to `rewriteGeneratedReferences()`
|
|
21
|
+
- Drops gemini-cli's legacy pre-emptive `.agentsmesh/skills/` → `.agents/skills/` substitution in `generateRules` — no longer needed under the new approach
|
|
22
|
+
- 28 new tests across `tests/unit/core/shared-root-instruction-paths.test.ts`, `reference-rewriter-shared-paths.test.ts`, and `tests/contract/shared-agents-md.test.ts`
|
|
23
|
+
|
|
24
|
+
- 7c57018: Add six new built-in targets: `deepagents-cli`, `factory-droid`, `jules`, `pi-agent`, `replit-agent`, and `rovodev`. Each ships with project and global mode support, full feature generators (rules, skills, MCP, hooks, ignore, permissions where applicable), an importer, capability-focused unit tests, and integration coverage for the import + generate round-trip. The new targets appear automatically in the support matrix, the import target table, and every auto-generated tool list — no manual doc edits required to discover them.
|
|
25
|
+
- 7c57018: Add a required `metadata` field to `TargetDescriptor` and a new `TARGET_REGISTRY` aggregator that drives every user-facing target listing in README and the website. Plugin and built-in targets now declare display name, category, official URL, and a one-line description in a single place; the TypeScript compiler enforces completeness.
|
|
26
|
+
|
|
27
|
+
**New public surface**
|
|
28
|
+
- `TargetMetadata` interface (`displayName`, `category: 'cli' | 'ide' | 'agent-platform'`, `officialUrl`, `shortDescription`) exported from `src/targets/catalog/target-descriptor.ts`.
|
|
29
|
+
- `TARGET_REGISTRY: Readonly<Record<BuiltinTargetId, TargetEntry>>` plus `listTargets()`, `targetsByCategory()`, and `primaryImportRoot()` helpers exported from `src/targets/catalog/target-metadata-registry.ts`.
|
|
30
|
+
- Every `TargetDescriptor.metadata` is required at compile time; the field is now part of the contract for plugin authors.
|
|
31
|
+
|
|
32
|
+
**Plugin authors — what to do**
|
|
33
|
+
|
|
34
|
+
If you ship a `TargetDescriptor` from a plugin package, add the `metadata` block immediately after `id:`:
|
|
35
|
+
|
|
36
|
+
```typescript
|
|
37
|
+
export const descriptor = {
|
|
38
|
+
id: 'my-tool',
|
|
39
|
+
metadata: {
|
|
40
|
+
displayName: 'My Tool',
|
|
41
|
+
category: 'cli',
|
|
42
|
+
officialUrl: 'https://example.com',
|
|
43
|
+
shortDescription: 'One-line description used in tool lists',
|
|
44
|
+
},
|
|
45
|
+
// ...rest unchanged
|
|
46
|
+
} satisfies TargetDescriptor;
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
The TypeScript compiler will fail if any field is missing or mistyped. The metadata appears in any auto-generated tool list a consumer renders — there is no separate registration step.
|
|
50
|
+
|
|
51
|
+
**Tooling updates**
|
|
52
|
+
- `agentsmesh target scaffold <id>` now emits a `metadata` block with `TODO(agentsmesh-scaffold)` markers that fail to compile until the author fills them in.
|
|
53
|
+
- The `add-agent-target` skill and `target-addition-checklist.md` reference list the metadata fields in Phase 1 research; the `add-new-target-playbook.md` walks through filling them.
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 7c57018: Auto-generate every user-facing target listing from `TARGET_REGISTRY`, and reposition install methods so AgentsMesh is no longer presented as Node-only.
|
|
58
|
+
|
|
59
|
+
**Auto-generated target listings**
|
|
60
|
+
|
|
61
|
+
`pnpm matrix:generate` now writes three new auto-generated marker blocks in addition to the existing project/global feature matrices:
|
|
62
|
+
- `tool-list` (README + homepage) — every target grouped by category with links to the official tool URL
|
|
63
|
+
- `import-targets` (`cli/import.mdx`) — all 30 targets with their primary read path
|
|
64
|
+
- `tool-details` (`reference/supported-tools.mdx`) — uniform per-target sections with display name, category, official URL, project + global root paths, and skill directory
|
|
65
|
+
|
|
66
|
+
`pnpm matrix:verify` (CI gate) fails the build whenever any of the four documents drift from the catalog. The render script was split into `scripts/support-matrix-blocks.ts` (pure builders) and a slim orchestrator.
|
|
67
|
+
|
|
68
|
+
**Hardcoded enumerations removed**
|
|
69
|
+
|
|
70
|
+
Replaced with links to the support matrix or generated content:
|
|
71
|
+
- README import-target list (was 13/30) and tool-format examples
|
|
72
|
+
- Homepage prose enumeration of 15+ tools
|
|
73
|
+
- `cli/import.mdx` per-target source→canonical mapping tables (only 7/30 documented) — collapsed into a single canonical-pattern table plus editorial caveats for the 5 targets with real implementation quirks
|
|
74
|
+
- `cli/init.mdx` auto-detection list (12 hardcoded paths) and starter-config example
|
|
75
|
+
- `cli/generate.mdx` output-locations table (was 12/30)
|
|
76
|
+
- `canonical-config/commands.mdx` + `canonical-config/hooks.mdx` per-target feature support enumerations
|
|
77
|
+
- `reference/supported-tools.mdx` per-tool detail sections (was 24/30 hand-written, ~494 lines) replaced with the auto-generated `tool-details` block covering all 30 targets uniformly
|
|
78
|
+
|
|
79
|
+
**Install repositioning**
|
|
80
|
+
|
|
81
|
+
AgentsMesh now presents three install methods as equals — Homebrew (no Node.js required), standalone binary (no Node.js required), and npm/pnpm/yarn (Node.js 20+). The `getting-started/installation.mdx` page rewrite uses a Tabs block with a "which method should I use?" comparison table. The README install section was reordered (Homebrew first, npm last) and `npx agentsmesh ...` was stripped from every non-install code sample — `npx` survives only in the two explicit "run without installing" snippets where it's the legitimate use. CI workflow examples, guides, and command-reference pages now use the plain `agentsmesh` binary, which works after any install method (with `npx` documented as the prefix for users who chose `npm install -D`).
|
|
82
|
+
|
|
83
|
+
## 0.17.0
|
|
84
|
+
|
|
85
|
+
### Minor Changes
|
|
86
|
+
|
|
87
|
+
- e45befe: Add 6 P0-TierA targets: Aider, Amazon Q Developer, Augment Code, Crush, Qwen Code, and Trae
|
|
88
|
+
|
|
89
|
+
New built-in targets with full project and global mode support:
|
|
90
|
+
- **Aider** — `CONVENTIONS.md`, `.aider/skills/`, `.aiderignore`
|
|
91
|
+
- **Amazon Q Developer** — `.amazonq/rules/*.md`, `.amazonq/mcp.json`
|
|
92
|
+
- **Augment Code** — `.augment/rules/`, `.augment/commands/`, `.augment/skills/`, `.augment/settings.json`, `.augmentignore`
|
|
93
|
+
- **Crush** — `CRUSH.md`, `.crush/skills/`, `crush.json` (MCP + hooks + permissions), `.crushignore`
|
|
94
|
+
- **Qwen Code** — `QWEN.md`, `.qwen/rules/`, `.qwen/commands/`, `.qwen/agents/`, `.qwen/skills/`, `.qwen/settings.json`, `.qwenignore`
|
|
95
|
+
- **Trae** — `.trae/rules/`, `.trae/skills/`, `.trae/mcp.json`, `.trae/.ignore`
|
|
96
|
+
|
|
97
|
+
All targets include: descriptor, generator, importer, linter, import-map, fixtures, unit tests, global-layout tests, contract definitions, and branch coverage tests. Catalog grows from 18 to 24 builtin targets.
|
|
98
|
+
|
|
3
99
|
## 0.16.0
|
|
4
100
|
|
|
5
101
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -26,20 +26,16 @@ AI coding assistants now ship with their own configuration formats — `CLAUDE.m
|
|
|
26
26
|
|
|
27
27
|
## Install
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Pick whichever matches your environment — every install method ships the same CLI (`agentsmesh` and the `amsh` alias) and the same TypeScript library.
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
npm install -g agentsmesh
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
### Homebrew (macOS / Linux)
|
|
31
|
+
### Homebrew (macOS / Linux) — no Node.js required
|
|
36
32
|
|
|
37
33
|
```bash
|
|
38
34
|
brew tap samplexbro/agentsmesh
|
|
39
35
|
brew install agentsmesh
|
|
40
36
|
```
|
|
41
37
|
|
|
42
|
-
### Standalone binary (no Node.js required
|
|
38
|
+
### Standalone binary (Linux / macOS / Windows) — no Node.js required
|
|
43
39
|
|
|
44
40
|
```bash
|
|
45
41
|
curl -fsSL https://github.com/sampleXbro/agentsmesh/releases/latest/download/install.sh | sh
|
|
@@ -47,6 +43,20 @@ curl -fsSL https://github.com/sampleXbro/agentsmesh/releases/latest/download/ins
|
|
|
47
43
|
|
|
48
44
|
Or download a binary directly from [GitHub Releases](https://github.com/sampleXbro/agentsmesh/releases/latest).
|
|
49
45
|
|
|
46
|
+
### npm / pnpm / yarn (recommended for Node.js projects) — requires Node.js 20+
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npm install -g agentsmesh # global
|
|
50
|
+
# or as a dev dependency, pinned per repo:
|
|
51
|
+
npm install -D agentsmesh # npm
|
|
52
|
+
pnpm add -D agentsmesh # pnpm
|
|
53
|
+
yarn add -D agentsmesh # yarn
|
|
54
|
+
# or run once without installing:
|
|
55
|
+
npx agentsmesh --help
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
The Node-based install also exposes the [typed programmatic API](https://samplexbro.github.io/agentsmesh/reference/programmatic-api/) for scripts and CI tooling.
|
|
59
|
+
|
|
50
60
|
---
|
|
51
61
|
|
|
52
62
|
## Before / After
|
|
@@ -80,7 +90,7 @@ AGENTS.md
|
|
|
80
90
|
```
|
|
81
91
|
|
|
82
92
|
```bash
|
|
83
|
-
|
|
93
|
+
agentsmesh generate
|
|
84
94
|
```
|
|
85
95
|
|
|
86
96
|
The native files above are still emitted — AgentsMesh writes them for you from `.agentsmesh/`. Edit canonical sources, regenerate, and every tool stays in sync.
|
|
@@ -89,19 +99,19 @@ The native files above are still emitted — AgentsMesh writes them for you from
|
|
|
89
99
|
|
|
90
100
|
## 60-second quickstart
|
|
91
101
|
|
|
92
|
-
Works on Linux, macOS, and Windows.
|
|
102
|
+
Works on Linux, macOS, and Windows. Install via [Homebrew, a standalone binary, or any Node.js package manager](#install), then:
|
|
93
103
|
|
|
94
104
|
```bash
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
105
|
+
agentsmesh init # scaffold .agentsmesh/ + agentsmesh.yaml
|
|
106
|
+
agentsmesh generate # produce native configs for every enabled tool
|
|
107
|
+
agentsmesh check # CI-friendly drift gate against .agentsmesh/.lock
|
|
98
108
|
```
|
|
99
109
|
|
|
100
110
|
- **`init`** — creates `agentsmesh.yaml`, `agentsmesh.local.yaml`, and the canonical `.agentsmesh/` directory.
|
|
101
111
|
- **`generate`** — writes `CLAUDE.md`, `AGENTS.md`, `.cursor/`, `.github/copilot-instructions.md`, etc. from canonical sources.
|
|
102
112
|
- **`check`** — exits non-zero if generated files have drifted from `.agentsmesh/.lock`. Drop into CI.
|
|
103
113
|
|
|
104
|
-
|
|
114
|
+
If you installed via `npm install -D agentsmesh` (also `pnpm add -D` / `yarn add -D`), prefix each command with `npx`. The CLI ships as both `agentsmesh` and the shorter alias `amsh`.
|
|
105
115
|
|
|
106
116
|
---
|
|
107
117
|
|
|
@@ -110,10 +120,10 @@ Prefer a local install? `npm install -D agentsmesh` (also `pnpm add -D` / `yarn
|
|
|
110
120
|
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`.
|
|
111
121
|
|
|
112
122
|
```bash
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
123
|
+
agentsmesh import --from cursor # or claude-code, copilot, codex-cli, gemini-cli, windsurf, amp, zed, warp, ...
|
|
124
|
+
agentsmesh diff # patch-style preview of what generate would change
|
|
125
|
+
agentsmesh generate # write native configs (back) from canonical
|
|
126
|
+
agentsmesh check # add to CI to detect drift
|
|
117
127
|
```
|
|
118
128
|
|
|
119
129
|
What this gets you:
|
|
@@ -122,7 +132,7 @@ What this gets you:
|
|
|
122
132
|
- `diff` shows the unified patch every output file would receive, so you can review before any write.
|
|
123
133
|
- `check` reads `.agentsmesh/.lock` and fails the build if the canonical sources and the generated files disagree.
|
|
124
134
|
|
|
125
|
-
`import --from` accepts
|
|
135
|
+
`import --from` accepts any built-in target ID listed in the [Supported Tools matrix](#feature-support-matrix). Plugin targets are valid too.
|
|
126
136
|
|
|
127
137
|
---
|
|
128
138
|
|
|
@@ -133,11 +143,11 @@ What this gets you:
|
|
|
133
143
|
A quick sample of the canonical → native projection:
|
|
134
144
|
|
|
135
145
|
```bash
|
|
136
|
-
|
|
146
|
+
agentsmesh init
|
|
137
147
|
find .agentsmesh -maxdepth 2 -type f # see the canonical scaffold
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
148
|
+
agentsmesh generate
|
|
149
|
+
agentsmesh diff # preview future changes
|
|
150
|
+
agentsmesh check # CI-style drift gate
|
|
141
151
|
```
|
|
142
152
|
|
|
143
153
|
On macOS/Linux you can also run `tree .agentsmesh` if you have `tree` installed.
|
|
@@ -146,7 +156,13 @@ On macOS/Linux you can also run `tree .agentsmesh` if you have `tree` installed.
|
|
|
146
156
|
|
|
147
157
|
## Supported AI coding tools
|
|
148
158
|
|
|
149
|
-
AgentsMesh
|
|
159
|
+
AgentsMesh generates native config for every major AI coding assistant — 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).
|
|
160
|
+
|
|
161
|
+
<!-- agentsmesh:tool-list -->
|
|
162
|
+
- **CLI agents:** [Aider](https://aider.chat), [Amp](https://ampcode.com), [Claude Code](https://www.anthropic.com/claude-code), [Codex CLI](https://github.com/openai/codex), [Crush](https://github.com/charmbracelet/crush), [Deep Agents CLI](https://github.com/langchain-ai/deepagents), [Gemini CLI](https://github.com/google-gemini/gemini-cli), [Goose](https://block.github.io/goose), [OpenCode](https://opencode.ai), [Pi Agent](https://github.com/pi-labs/pi-agent), [Qwen Code](https://github.com/QwenLM/qwen-code), [Rovo Dev](https://www.atlassian.com/solutions/devops/rovo-dev), [Warp](https://www.warp.dev).
|
|
163
|
+
- **IDE integrations:** [Amazon Q Developer](https://aws.amazon.com/q/developer), [Antigravity](https://antigravity.google), [Augment Code](https://www.augmentcode.com), [Cline](https://cline.bot), [Continue](https://continue.dev), [GitHub Copilot](https://github.com/features/copilot), [Cursor](https://cursor.com), [Junie](https://www.jetbrains.com/junie), [Kilo Code](https://kilocode.ai), [Kiro](https://kiro.dev), [Roo Code](https://roocode.com), [Trae](https://www.trae.ai), [Windsurf](https://windsurf.com), [Zed](https://zed.dev).
|
|
164
|
+
- **Cloud agent platforms:** [Factory Droid](https://www.factory.ai), [Jules](https://jules.google), [Replit Agent](https://replit.com).
|
|
165
|
+
<!-- /agentsmesh:tool-list -->
|
|
150
166
|
|
|
151
167
|
---
|
|
152
168
|
|
|
@@ -379,33 +395,33 @@ Every public symbol resolves to a real `.d.ts` under strict TypeScript. Full ref
|
|
|
379
395
|
### Project scope (`agentsmesh generate`)
|
|
380
396
|
|
|
381
397
|
<!-- agentsmesh:support-matrix:project -->
|
|
382
|
-
| Feature | Amp | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Goose | Junie | Kilo Code | Kiro | OpenCode | Roo Code | Warp | Windsurf | Zed |
|
|
383
|
-
|
|
384
|
-
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
385
|
-
| Additional Rules | Embedded | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Embedded | Native | Native | Native | Native | Native | Embedded | Native | Embedded |
|
|
386
|
-
| Commands | — | Partial (workflows) | Native | Native (workflows) | Embedded | Embedded | Native | Native | Native | — | Native | Native | — | Native | Native | — | Native (workflows) | — |
|
|
387
|
-
| Agents | — | — | Native | Embedded | Native | — | Native | Native | Native | — | Native | Native | Native | Native | Partial | — | Embedded | — |
|
|
388
|
-
| Skills | Native | Native | Native | Native | Native | Embedded | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — |
|
|
389
|
-
| MCP Servers | Native | — | Native | Native | Native | Native | — | Native | Native | — | Native | Native | Native | Native | Native | Native | Partial | Native |
|
|
390
|
-
| Hooks | — | — | Native | Native | — | — | Partial | Native | Partial | — | — | — | Native | — | — | — | Native | — |
|
|
391
|
-
| Ignore | — | — | Native | Native | — | — | — | Native | Native (settings-embedded) | Native | Native | Native | Native | — | Native | — | Native | — |
|
|
392
|
-
| Permissions | — | — | Native | — | — | — | — | Partial | Partial | — | — | — | — | — | — | — | — | — |
|
|
398
|
+
| Feature | Aider | Amazon Q Developer | Amp | Antigravity | Augment Code | Claude Code | Cline | Codex CLI | Continue | GitHub Copilot | Crush | Cursor | Deep Agents CLI | Factory Droid | Gemini CLI | Goose | Jules | Junie | Kilo Code | Kiro | OpenCode | Pi Agent | Qwen Code | Replit Agent | Roo Code | Rovo Dev | Trae | Warp | Windsurf | Zed |
|
|
399
|
+
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
400
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
401
|
+
| Additional Rules | Embedded | — | Embedded | Native | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Embedded | Embedded | Embedded | Embedded | Embedded | Native | Native | Native | Native | Embedded | Native | Embedded | Native | Embedded | Native | Embedded | Native | Embedded |
|
|
402
|
+
| Commands | — | — | — | Partial (workflows) | Native | Native | Native (workflows) | Embedded | Embedded | Native | — | Native | — | — | Native | — | — | Native | Native | — | Native | — | Native | — | Native | — | — | — | Native (workflows) | — |
|
|
403
|
+
| Agents | — | — | — | — | — | Native | Embedded | Native | — | Native | — | Native | — | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Partial | — | — | — | Embedded | — |
|
|
404
|
+
| Skills | Native | — | Native | Native | Native | Native | Native | Native | Embedded | Native | Native | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — |
|
|
405
|
+
| MCP Servers | — | Native | Native | — | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Native | Native | Native | Native | Partial | Native |
|
|
406
|
+
| Hooks | — | — | — | — | Native | Native | Native | — | — | Partial | Native | Native | — | — | Partial | — | — | — | — | Native | — | — | — | — | — | — | — | — | Native | — |
|
|
407
|
+
| Ignore | Native | — | — | — | Native | Native | Native | — | — | — | Native | Native | — | — | Native (settings-embedded) | Native | — | Native | Native | Native | — | — | Native | — | Native | — | Native | — | Native | — |
|
|
408
|
+
| Permissions | — | — | — | — | — | Native | — | — | — | — | Partial | Partial | — | — | Partial | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — |
|
|
393
409
|
<!-- /agentsmesh:support-matrix:project -->
|
|
394
410
|
|
|
395
411
|
### Global scope (`agentsmesh generate --global`)
|
|
396
412
|
|
|
397
413
|
<!-- agentsmesh:support-matrix:global -->
|
|
398
|
-
| Feature | Amp | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Goose | Junie | Kilo Code | Kiro | OpenCode | Roo Code | Warp | Windsurf | Zed |
|
|
399
|
-
|
|
400
|
-
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | — |
|
|
401
|
-
| Additional Rules | Embedded | Embedded | Native | Native | Embedded | Native | Native | Embedded | Embedded | Embedded | Embedded | Native | Native | Native | Native | — | Partial | — |
|
|
402
|
-
| Commands | — | Partial (workflows) | Native | Native (workflows) | Embedded | Native | Native | Native | Native | — | Native | Native | — | Native | Native | — | Native (workflows) | — |
|
|
403
|
-
| Agents | — | — | Native | Embedded | Native | — | Native | Native | Native | — | Native | Native | Native | Native | Partial | — | Embedded | — |
|
|
404
|
-
| Skills | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — |
|
|
405
|
-
| MCP Servers | Native | Native | Native | Native | Native | Native | — | Native | Native | — | Native | Native | Native | Native | Native | — | Partial | Native |
|
|
406
|
-
| Hooks | — | — | Native | Native | — | — | — | Native | Partial | — | — | — | — | — | — | — | Native | — |
|
|
407
|
-
| Ignore | — | — | Native | Native | — | — | — | Native | — | Native | — | Native | Native | — | Native | — | Native | — |
|
|
408
|
-
| Permissions | — | — | Native | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — |
|
|
414
|
+
| Feature | Aider | Amazon Q Developer | Amp | Antigravity | Augment Code | Claude Code | Cline | Codex CLI | Continue | GitHub Copilot | Crush | Cursor | Deep Agents CLI | Factory Droid | Gemini CLI | Goose | Jules | Junie | Kilo Code | Kiro | OpenCode | Pi Agent | Qwen Code | Replit Agent | Roo Code | Rovo Dev | Trae | Warp | Windsurf | Zed |
|
|
415
|
+
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
416
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | — |
|
|
417
|
+
| Additional Rules | Embedded | — | Embedded | Embedded | Native | Native | Native | Embedded | Native | Native | Embedded | Embedded | Embedded | Embedded | Embedded | Embedded | Embedded | Embedded | Native | Native | Native | Embedded | Embedded | Embedded | Native | Embedded | Native | — | Partial | — |
|
|
418
|
+
| Commands | — | — | — | Partial (workflows) | Native | Native | Native (workflows) | Embedded | Native | Native | — | Native | — | — | Native | — | — | Native | Native | — | Native | — | Native | — | Native | — | — | — | Native (workflows) | — |
|
|
419
|
+
| Agents | — | — | — | — | — | Native | Embedded | Native | — | Native | — | Native | — | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Partial | — | — | — | Embedded | — |
|
|
420
|
+
| Skills | Native | — | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — |
|
|
421
|
+
| MCP Servers | — | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Native | Native | Native | — | Partial | Native |
|
|
422
|
+
| Hooks | — | — | — | — | — | Native | Native | — | — | — | Native | Native | — | — | Partial | — | — | — | — | — | — | — | — | — | — | — | — | — | Native | — |
|
|
423
|
+
| Ignore | Native | — | — | — | — | Native | Native | — | — | — | — | Native | — | — | — | Native | — | — | Native | Native | — | — | — | — | Native | — | — | — | Native | — |
|
|
424
|
+
| Permissions | — | — | — | — | — | Native | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — |
|
|
409
425
|
<!-- /agentsmesh:support-matrix:global -->
|
|
410
426
|
|
|
411
427
|
See the [full feature matrix docs](https://samplexbro.github.io/agentsmesh/reference/supported-tools/) for native vs. embedded support details and per-tool global paths.
|
package/dist/canonical.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as CanonicalFiles, V as ValidatedConfig } from './schema-
|
|
2
|
-
export { C as CanonicalAgent, a as CanonicalCommand, c as CanonicalRule, d as CanonicalSkill, H as HookEntry, e as Hooks, I as IgnorePatterns, M as McpConfig, f as McpServer, P as Permissions, S as SkillSupportingFile, g as StdioMcpServer, U as UrlMcpServer } from './schema-
|
|
1
|
+
import { b as CanonicalFiles, V as ValidatedConfig } from './schema-B4PYQrZH.js';
|
|
2
|
+
export { C as CanonicalAgent, a as CanonicalCommand, c as CanonicalRule, d as CanonicalSkill, H as HookEntry, e as Hooks, I as IgnorePatterns, M as McpConfig, f as McpServer, P as Permissions, S as SkillSupportingFile, g as StdioMcpServer, U as UrlMcpServer } from './schema-B4PYQrZH.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|