agentsmesh 0.2.8 → 0.2.10
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 +12 -0
- package/README.md +11 -11
- package/dist/cli.js +800 -459
- package/dist/cli.js.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Align `agentsmesh init` default `targets` with the shared target catalog (`TARGET_IDS`) so new configs include every supported tool without a duplicate list. Shorten the AgentsMesh sourcing note appended to generated root instructions.
|
|
8
|
+
|
|
9
|
+
## 0.2.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Add **Roo Code** as a supported target (`.roo/` rules, commands, skills, MCP, and `.rooignore`).
|
|
14
|
+
|
|
3
15
|
## 0.2.8
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<a href="https://github.com/sampleXbro/agentsmesh/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"></a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
|
-
AgentsMesh maintains a single canonical configuration in `.agentsmesh/` and syncs it bidirectionally to Claude Code, Cursor, Copilot, Continue, Junie, Gemini CLI, Cline, Codex CLI, Windsurf, and
|
|
15
|
+
AgentsMesh maintains a single canonical configuration in `.agentsmesh/` and syncs it bidirectionally to Claude Code, Cursor, Copilot, Continue, Junie, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, and Roo Code. Rules, commands, agents, skills, MCP servers, hooks, ignore patterns, and permissions -- all from one source of truth.
|
|
16
16
|
|
|
17
17
|
> **Full documentation: [samplexbro.github.io/agentsmesh](https://samplexbro.github.io/agentsmesh)**
|
|
18
18
|
|
|
@@ -80,16 +80,16 @@ That's it. Your `.agentsmesh/` directory is now the single source of truth, and
|
|
|
80
80
|
|
|
81
81
|
## Supported Tools
|
|
82
82
|
|
|
83
|
-
| Feature | Claude Code | Cursor | Copilot | Gemini CLI | Cline | Codex CLI | Windsurf | Continue | Junie | Antigravity |
|
|
84
|
-
|
|
85
|
-
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
86
|
-
| Commands | Native | Native | Native | Native | Native | Embedded | Native | Embedded | Embedded | Partial |
|
|
87
|
-
| Agents | Native | Native | Native | Native | Embedded| Native | Embedded | -- | Embedded | -- |
|
|
88
|
-
| Skills | Native | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Native |
|
|
89
|
-
| MCP Servers | Native | Native | -- | Native | Native | Native | Partial | Native | Native | -- |
|
|
90
|
-
| Hooks | Native | Native | Partial | Partial | -- | -- | Native | -- | -- | -- |
|
|
91
|
-
| Ignore | Native | Native | -- | Native | Native | -- | Native | -- | Native | -- |
|
|
92
|
-
| Permissions | Native | Partial | -- | Partial | -- | -- | -- | -- | -- | -- |
|
|
83
|
+
| Feature | Claude Code | Cursor | Copilot | Gemini CLI | Cline | Codex CLI | Windsurf | Continue | Junie | Antigravity | Roo Code |
|
|
84
|
+
|---------------|:-----------:|:-------:|:-------:|:----------:|:-------:|:---------:|:--------:|:--------:|:--------:|:-----------:|:--------:|
|
|
85
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
86
|
+
| Commands | Native | Native | Native | Native | Native | Embedded | Native | Embedded | Embedded | Partial | Native |
|
|
87
|
+
| Agents | Native | Native | Native | Native | Embedded| Native | Embedded | -- | Embedded | -- | -- |
|
|
88
|
+
| Skills | Native | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Native | Native |
|
|
89
|
+
| MCP Servers | Native | Native | -- | Native | Native | Native | Partial | Native | Native | -- | Native |
|
|
90
|
+
| Hooks | Native | Native | Partial | Partial | -- | -- | Native | -- | -- | -- | -- |
|
|
91
|
+
| Ignore | Native | Native | -- | Native | Native | -- | Native | -- | Native | -- | Native |
|
|
92
|
+
| Permissions | Native | Partial | -- | Partial | -- | -- | -- | -- | -- | -- | -- |
|
|
93
93
|
|
|
94
94
|
See the [full feature matrix docs](https://samplexbro.github.io/agentsmesh/reference/supported-tools/) for details on native vs. embedded support.
|
|
95
95
|
|