agentsmesh 0.23.0 → 0.24.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 +28 -0
- package/README.md +13 -13
- package/dist/canonical.js +1754 -901
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +189 -189
- package/dist/engine.d.ts +1 -1
- package/dist/engine.js +1784 -943
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1786 -945
- package/dist/index.js.map +1 -1
- package/dist/{target-descriptor-D6vLDI1w.d.ts → target-descriptor-ItDY3NR0.d.ts} +5 -0
- package/dist/targets.d.ts +2 -2
- package/dist/targets.js +1795 -942
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 352f4a0: feat: close 23 target capability gaps and make new MCP capabilities round-trip
|
|
8
|
+
|
|
9
|
+
Audited every supported target and implemented native or partial support for
|
|
10
|
+
capabilities the underlying tools already offer but agentsmesh did not expose:
|
|
11
|
+
- **MCP**: Goose (global, `~/.config/goose/config.yaml` extensions) and Copilot
|
|
12
|
+
(project, `.vscode/mcp.json`) now both generate **and import** MCP servers, so
|
|
13
|
+
the new native MCP capabilities round-trip back to canonical.
|
|
14
|
+
- **Agents**: Augment Code, Amazon Q, and Cline gain native agent definitions.
|
|
15
|
+
- **Skills / Commands**: Zed emits shared native skills; Trae gains native
|
|
16
|
+
commands (`.trae/commands/`).
|
|
17
|
+
- **Permissions**: Junie (global allowlist) and Kilo Code (`kilo.jsonc`) gain
|
|
18
|
+
native permissions; Warp, Roo Code, and Antigravity declare `partial` support
|
|
19
|
+
with lint guidance pointing at their UI / settings.
|
|
20
|
+
- **Hooks**: Factory Droid, Deep Agents CLI, Antigravity, Qwen Code, Amp, and
|
|
21
|
+
Codex CLI gain native lifecycle hooks.
|
|
22
|
+
- **Combined settings sidecars**: Qwen Code and Amp write hooks + permissions
|
|
23
|
+
into their settings files; Rovo Dev writes hooks + permissions to its global
|
|
24
|
+
`config.yml`; Amazon Q gains agents + hooks + permissions.
|
|
25
|
+
|
|
26
|
+
The shared `mcpJson` import mode gains an optional, data-driven `mcpServersKey`
|
|
27
|
+
(defaults to `mcpServers`) so VS Code-style files keyed on `servers` import
|
|
28
|
+
correctly — with no target-name hardcoding in core. The support matrix in the
|
|
29
|
+
README and docs site is updated to match.
|
|
30
|
+
|
|
3
31
|
## 0.23.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -222,7 +222,7 @@ AgentsMesh generates native config for every major AI coding assistant — plus
|
|
|
222
222
|
- **Bidirectional sync** — `import` reads existing tool configs into `.agentsmesh/`; `generate` projects them back out. Round-trips are loss-free, so adopting AgentsMesh in an existing repo never throws away data.
|
|
223
223
|
- **Agents that learn** — the optional [lessons memory](#teach-your-agents-lessons) recalls past-mistake rules before each edit and captures new ones after each failure, shared across every tool and every teammate.
|
|
224
224
|
- **Automatic link rebasing** — references like `.agentsmesh/skills/foo/SKILL.md` are rewritten to target-relative paths in every generated artifact, so cross-file links stay valid from `.claude/`, `.cursor/`, `.github/`, `.codex/`, and the rest.
|
|
225
|
-
- **Managed embedding with round-trip metadata** — when a target has no native slot for a feature (e.g. commands in Codex CLI
|
|
225
|
+
- **Managed embedding with round-trip metadata** — when a target has no native slot for a feature (e.g. commands in Codex CLI), AgentsMesh embeds it with frontmatter that survives the next `import`. No silent data loss; the full feature-by-feature breakdown lives in the [supported tools matrix](https://samplexbro.github.io/agentsmesh/reference/supported-tools/).
|
|
226
226
|
- **Team-safe collaboration** — `agentsmesh check` is a CI drift gate against `.agentsmesh/.lock`, `agentsmesh diff` previews changes, `agentsmesh merge` rebuilds the lock after three-way Git conflicts, and `lock_features` + per-feature `strategy` prevent accidental overrides.
|
|
227
227
|
- **Global mode** — `~/.agentsmesh/` syncs personal AI config to `~/.claude/`, `~/.cursor/`, `~/.codex/`, `~/.windsurf/`, and other user-level folders. Every CLI command accepts `--global`.
|
|
228
228
|
- **Extensible** — community packs (`agentsmesh install ...`), remote `extends`, runtime plugins (`agentsmesh plugin add`), schema-validated config files, and a typed programmatic API for scripts, IDE extensions, and CI.
|
|
@@ -240,7 +240,7 @@ The reason `AGENTS.md` alone is not enough: most AI coding assistants expose con
|
|
|
240
240
|
- **Claude Code** has `CLAUDE.md`, `.claude/agents/`, `.claude/skills/`, `.claude/commands/`, `.claude/settings.json`, hooks, and permissions.
|
|
241
241
|
- **GitHub Copilot** has `.github/copilot-instructions.md`, `.github/instructions/*.instructions.md`, agents, prompts, and (partial) hooks.
|
|
242
242
|
- **Gemini CLI** has `GEMINI.md`, `.gemini/settings.json` (MCP + hooks), `.gemini/commands/*.toml`, and agents.
|
|
243
|
-
- **Codex CLI** has `AGENTS.md` plus `.codex/config.toml`, `.codex/agents/*.toml`, and `.codex/rules/`.
|
|
243
|
+
- **Codex CLI** has `AGENTS.md` plus `.codex/config.toml`, `.codex/agents/*.toml`, `.codex/hooks.json`, and `.codex/rules/`.
|
|
244
244
|
- **Windsurf**, **Continue**, **Cline**, **Kiro**, **Junie**, **Roo Code**, **Antigravity**, **Amp**, **Zed**, **Warp** each have their own native rules, workflows, MCP servers, skills, and ignore files.
|
|
245
245
|
|
|
246
246
|
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.
|
|
@@ -516,13 +516,13 @@ Every public symbol resolves to a real `.d.ts` under strict TypeScript. Full ref
|
|
|
516
516
|
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
517
517
|
| 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 |
|
|
518
518
|
| 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 |
|
|
519
|
-
| Commands | — | — |
|
|
520
|
-
| Agents | — |
|
|
521
|
-
| Skills | Native | — | Native | Native | Native | Native | Native | Native |
|
|
522
|
-
| MCP Servers | — | Native | Native | — | Native | Native | Native | Native | Native |
|
|
523
|
-
| Hooks | — | — |
|
|
519
|
+
| Commands | — | — | Native | Partial (workflows) | Native | Native | Native (workflows) | Embedded | Native | Native | — | Native | — | — | Native | — | — | Native | Native | Embedded | Native | — | Native | — | Native | — | Native | — | Native (workflows) | — |
|
|
520
|
+
| Agents | — | Native | — | — | Native | Native | Native | Native | — | Native | — | Native | — | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Partial | — | — | — | Embedded | — |
|
|
521
|
+
| 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 | Native |
|
|
522
|
+
| MCP Servers | — | Native | Native | — | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Native | Native | Native | Native | Partial | Native |
|
|
523
|
+
| Hooks | — | — | Native | Native | Native | Native | Native | Partial | — | Partial | Native | Native | Native | Native | Partial | — | — | — | — | Native | — | — | Native | — | — | — | — | — | Native | — |
|
|
524
524
|
| Ignore | Native | — | — | — | Native | Native | Native | — | — | — | Native | Native | — | — | Native (settings-embedded) | Native | — | Native | Native | Native | — | — | Native | — | Native | — | Native | — | Native | — |
|
|
525
|
-
| Permissions | — | — |
|
|
525
|
+
| Permissions | — | — | Native | Partial | — | Native | — | — | — | — | Partial | Partial | — | — | Partial | — | — | — | Native | — | Native | — | Native | — | Partial | — | — | Partial | — | — |
|
|
526
526
|
<!-- /agentsmesh:support-matrix:project -->
|
|
527
527
|
|
|
528
528
|
### Global scope (`agentsmesh generate --global`)
|
|
@@ -532,13 +532,13 @@ Every public symbol resolves to a real `.d.ts` under strict TypeScript. Full ref
|
|
|
532
532
|
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
533
533
|
| 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 | — |
|
|
534
534
|
| Additional Rules | Embedded | — | Embedded | Embedded | Native | Native | Native | Embedded | Native | Native | Embedded | Embedded | Embedded | Embedded | Embedded | Embedded | — | Embedded | Native | Native | Native | Embedded | Embedded | — | Native | Embedded | Native | — | Partial | — |
|
|
535
|
-
| Commands | — | — |
|
|
536
|
-
| Agents | — |
|
|
535
|
+
| Commands | — | — | Native | Partial (workflows) | Native | Native | Native (workflows) | Embedded | Native | Native | — | Native | — | — | Native | — | — | Native | Native | Embedded | Native | — | Native | — | Native | — | Native | — | Native (workflows) | — |
|
|
536
|
+
| Agents | — | Native | — | — | Native | Native | Native | Native | — | Native | — | Native | — | Native | Native | — | — | Native | Native | Native | Native | — | Native | — | Partial | — | — | — | Embedded | — |
|
|
537
537
|
| 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 | — |
|
|
538
|
-
| MCP Servers | — | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native |
|
|
539
|
-
| Hooks | — | — |
|
|
538
|
+
| MCP Servers | — | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | — | Native | — | Native | Native | Native | — | Native | Native |
|
|
539
|
+
| Hooks | — | — | Native | Native | — | Native | Native | Partial | — | — | Native | Native | Native | Native | Partial | — | — | — | — | — | — | — | Native | — | — | Native | — | — | Native | — |
|
|
540
540
|
| Ignore | Native | — | — | — | — | Native | Native | — | — | — | — | Native | — | — | — | Native | — | — | Native | Native | — | — | — | — | Native | — | — | — | Native | — |
|
|
541
|
-
| Permissions | — | — |
|
|
541
|
+
| Permissions | — | — | Native | Partial | — | Native | — | — | — | — | — | — | — | — | — | — | — | Native | Native | — | Native | — | Native | — | Partial | Native | — | Partial | — | — |
|
|
542
542
|
<!-- /agentsmesh:support-matrix:global -->
|
|
543
543
|
|
|
544
544
|
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.
|