agentsmesh 0.2.10 → 0.3.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 +19 -1
- package/README.md +23 -33
- package/dist/cli.js +1263 -718
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Next version
|
|
4
|
+
|
|
5
|
+
## 0.3.0 - 2026-04-12
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Add **Kiro** as a supported target with native project-level `AGENTS.md`, `.kiro/steering/*.md`, `.kiro/skills/*/SKILL.md`, `.kiro/hooks/*.kiro.hook`, `.kiro/settings/mcp.json`, and `.kiroignore` import/generate support.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Replace the appended **AgentsMesh Generation Contract** root paragraph with an installed-repo guide: `agentsmesh.yaml` / `agentsmesh.local.yaml`, what lives under `.agentsmesh`, `init` / `import` / `install` / `generate`, and maintenance commands (`diff`, `lint`, `check`, `watch`, `matrix`, `merge`). Prior shipped contract wordings remain import-compatible legacy forms so root instruction upgrades do not duplicate sections.
|
|
14
|
+
- `agentsmesh init --yes` now adds the same example canonical files as a normal `init`, but only for categories left empty by import. The starter target set also stays conflict-free by default, leaving `codex-cli` opt-in when projects want Codex output alongside other `AGENTS.md` targets.
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Fix website deployment SEO handling by deriving canonical URLs, sitemap/robots output, and optional `CNAME` generation from one deploy URL source of truth. Internal docs links now stay base-agnostic across GitHub Pages project paths and root custom domains.
|
|
19
|
+
- When multiple targets generate `AGENTS.md`, AgentsMesh now prefers the richer Codex output when it is a strict superset instead of failing the whole generate pass on the `codex-cli`/Kiro overlap.
|
|
20
|
+
|
|
3
21
|
## 0.2.10
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -28,7 +46,7 @@
|
|
|
28
46
|
|
|
29
47
|
### Patch Changes
|
|
30
48
|
|
|
31
|
-
- f7a4afd: Expand the project README,
|
|
49
|
+
- f7a4afd: Expand the project README, and fix the sample Claude Code PostToolUse hook to use `type: prompt` with a `prompt` field instead of an invalid command-style hook after reads.
|
|
32
50
|
|
|
33
51
|
## 0.2.4
|
|
34
52
|
|
package/README.md
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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, Antigravity, and Roo Code. Rules, commands, agents, skills, MCP servers, hooks, ignore patterns, and permissions -- all from one source of truth.
|
|
1
|
+
# AgentsMesh
|
|
2
|
+
|
|
3
|
+
[](https://github.com/sampleXbro/agentsmesh/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/agentsmesh)
|
|
5
|
+
[](https://codecov.io/gh/sampleXbro/agentsmesh)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
[](https://www.typescriptlang.org/)
|
|
8
|
+
[](https://nodejs.org/)
|
|
9
|
+
[](https://www.npmjs.com/package/agentsmesh)
|
|
10
|
+
[](https://samplexbro.github.io/agentsmesh)
|
|
11
|
+
[](https://github.com/sampleXbro/agentsmesh/pulls)
|
|
12
|
+
|
|
13
|
+
AgentsMesh maintains a single canonical configuration in `.agentsmesh/` and syncs it bidirectionally to Claude Code, Cursor, Copilot, Continue, Junie, Kiro, 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
14
|
|
|
17
15
|
> **Full documentation: [samplexbro.github.io/agentsmesh](https://samplexbro.github.io/agentsmesh)**
|
|
18
16
|
|
|
@@ -80,16 +78,16 @@ That's it. Your `.agentsmesh/` directory is now the single source of truth, and
|
|
|
80
78
|
|
|
81
79
|
## Supported Tools
|
|
82
80
|
|
|
83
|
-
| Feature | Claude Code | Cursor | Copilot | Gemini CLI | Cline | Codex CLI | Windsurf |
|
|
84
|
-
|
|
85
|
-
| Rules | Native | Native | Native | Native
|
|
86
|
-
| Commands | Native | Native | Native | Native | Native | Embedded | Native |
|
|
87
|
-
| Agents | Native | Native | Native |
|
|
88
|
-
| Skills | Native | Native | Native | Native | Native | Native | Native |
|
|
89
|
-
| MCP Servers | Native | Native | -- | Native
|
|
90
|
-
| Hooks | Native | Native | Partial | Partial | -- | -- | Native | --
|
|
91
|
-
| Ignore | Native | Native | -- | Native
|
|
92
|
-
| Permissions | Native | Partial | -- |
|
|
81
|
+
| Feature | Claude Code | Cursor | Copilot | Continue | Junie | Kiro | Gemini CLI | Cline | Codex CLI | Windsurf | Antigravity | Roo Code |
|
|
82
|
+
|---------------|:-----------:|:-------:|:-------:|:--------:|:--------:|:------:|:----------:|:-------:|:---------:|:--------:|:-----------:|:--------:|
|
|
83
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
84
|
+
| Commands | Native | Native | Native | Embedded | Embedded | -- | Native | Native | Embedded | Native | Partial | Native |
|
|
85
|
+
| Agents | Native | Native | Native | -- | Embedded | -- | Native | Embedded| Native | Embedded | -- | -- |
|
|
86
|
+
| Skills | Native | Native | Native | Embedded | Embedded | Native | Native | Native | Native | Native | Native | Native |
|
|
87
|
+
| MCP Servers | Native | Native | -- | Native | Native | Native | Native | Native | Native | Partial | -- | Native |
|
|
88
|
+
| Hooks | Native | Native | Partial | -- | -- | Native | Partial | -- | -- | Native | -- | -- |
|
|
89
|
+
| Ignore | Native | Native | -- | -- | Native | Native | Native | Native | -- | Native | -- | Native |
|
|
90
|
+
| Permissions | Native | Partial | -- | -- | -- | -- | Partial | -- | -- | -- | -- | -- |
|
|
93
91
|
|
|
94
92
|
See the [full feature matrix docs](https://samplexbro.github.io/agentsmesh/reference/supported-tools/) for details on native vs. embedded support.
|
|
95
93
|
|
|
@@ -108,14 +106,6 @@ The documentation site covers everything in detail:
|
|
|
108
106
|
- **[Guides](https://samplexbro.github.io/agentsmesh/guides/existing-project/)** -- adopting in existing projects, multi-tool teams, sharing config, CI drift detection, community packs
|
|
109
107
|
- **[Reference](https://samplexbro.github.io/agentsmesh/reference/generation-pipeline/)** -- how the generation pipeline works
|
|
110
108
|
|
|
111
|
-
---
|
|
112
|
-
|
|
113
|
-
## Roadmap
|
|
114
|
-
|
|
115
|
-
See [ROADMAP.md](ROADMAP.md) for planned features and release timeline.
|
|
116
|
-
|
|
117
|
-
---
|
|
118
|
-
|
|
119
109
|
## Contributing
|
|
120
110
|
|
|
121
111
|
Contributions are welcome. Keep changes small, test them, and prefer editing canonical `.agentsmesh/` sources over generated files.
|