agentsmesh 0.2.6 → 0.2.8
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 +6 -0
- package/README.md +13 -11
- package/dist/cli.js +7083 -6814
- package/dist/cli.js.map +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add Antigravity as a supported target, emit Continue root rules as `.continue/rules/general.md` (while still importing legacy `_root.md`), register built-in targets through target descriptors, and align Continue e2e contracts with the new rule filename.
|
|
8
|
+
|
|
3
9
|
## 0.2.6
|
|
4
10
|
|
|
5
11
|
### 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, 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, and Antigravity. 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,19 +80,21 @@ 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 |
|
|
84
|
-
|
|
85
|
-
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
86
|
-
| Commands | Native | Native | Native | Native | Native | Embedded | Native | Embedded | Embedded |
|
|
87
|
-
| Agents | Native | Native | Native | Native | Embedded| Native | Embedded | -- | Embedded |
|
|
88
|
-
| Skills | Native | Native | Native | Native | Native | Native | Native | Embedded | Embedded |
|
|
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 |
|
|
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 | -- | -- | -- | -- | -- | -- |
|
|
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
|
|
|
96
|
+
**Note:** The canonical root rule always lives at `.agentsmesh/rules/_root.md`. Some targets write that content to a tool-specific main file named `general` (for example `.continue/rules/general.md` and `.agents/rules/general.md` for Antigravity) instead of `_root.md` on disk.
|
|
97
|
+
|
|
96
98
|
---
|
|
97
99
|
|
|
98
100
|
## Documentation
|