agentsmesh 0.9.0 → 0.10.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 +23 -0
- package/README.md +25 -23
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +1095 -406
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +125 -120
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1209 -517
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1221 -529
- package/dist/index.js.map +1 -1
- package/dist/{schema-BeGiBqbB.d.ts → schema-qelg8gw8.d.ts} +2 -0
- package/dist/{target-descriptor-CkH4Z43u.d.ts → target-descriptor-Dhdg8s2o.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +1060 -388
- package/dist/targets.js.map +1 -1
- package/package.json +2 -2
- package/schemas/agentsmesh.json +3 -0
- package/schemas/pack.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c4fb261: Add `kilo-code` as a new built-in target. Kilo Code is a multi-surface AI coding platform (VS Code extension, JetBrains plugin, CLI, cloud agent) and a fork of Roo Code (which is a fork of Cline).
|
|
8
|
+
|
|
9
|
+
Generation always uses Kilo's new layout: `AGENTS.md` (root), `.kilo/rules/`, `.kilo/commands/`, `.kilo/agents/` (first-class subagents), `.kilo/skills/`, `.kilo/mcp.json`, and `.kilocodeignore`. Import covers BOTH the new layout and Kilo's legacy layout (`.kilocode/`, `.kilocodemodes`) so existing kilo / Roo-era projects round-trip cleanly.
|
|
10
|
+
|
|
11
|
+
Capabilities (project + global):
|
|
12
|
+
- `rules`, `additionalRules`, `commands`, `agents`, `skills`, `mcp`, `ignore`: native
|
|
13
|
+
- `hooks`: none — Kilo Code has no user-facing lifecycle hook system; canonical hooks emit a lint warning.
|
|
14
|
+
- `permissions`: none — Kilo permissions live in `kilo.jsonc`, which agentsmesh does not generate in v1; canonical permissions emit a lint warning.
|
|
15
|
+
|
|
16
|
+
Global mode generates under `~/.kilo/` (`AGENTS.md`, `rules/`, `commands/`, `agents/`, `skills/`, `mcp.json`) plus `~/.kilocodeignore`, and mirrors skills into `~/.agents/skills/` for cross-tool compatibility (suppressed when `codex-cli` is also active).
|
|
17
|
+
|
|
18
|
+
Use `agentsmesh import --from kilo-code` to migrate existing Kilo projects (new or legacy layout) into canonical `.agentsmesh/`, then `agentsmesh generate --targets kilo-code` to project them back as the documented new layout.
|
|
19
|
+
|
|
20
|
+
- 5d6cfbb: Sequential `agentsmesh import --from <target>` runs now merge MCP servers by name into `.agentsmesh/mcp.json` instead of replacing the whole file. Existing canonical entries are preserved and the imported set wins on name collision, so a `claude-code` import followed by a `cursor` import keeps both targets' servers in canonical state.
|
|
21
|
+
|
|
22
|
+
Affects every importer that writes `mcp.json`: `claude-code` (`.claude/settings.json` + `.mcp.json` + `~/.claude/.mcp.json`), `codex-cli` (`config.toml`), `continue`, `cursor`, and any descriptor-driven importer using `mode: 'mcpJson'`. The previous behavior — last import overwrites the file and silently drops earlier servers — is gone.
|
|
23
|
+
|
|
24
|
+
Also fixed: a build-time regression where `writeMcpWithMerge` was referenced by five importers without the backing module being shipped, breaking `tsc --noEmit` for consumers building from source.
|
|
25
|
+
|
|
3
26
|
## 0.9.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
# AgentsMesh — One `.agentsmesh/` Directory for Every AI Coding Tool
|
|
4
4
|
|
|
5
|
+
<img src="https://raw.githubusercontent.com/sampleXbro/agentsmesh/master/assets/agentsmesh-banner.jpeg" alt="AgentsMesh — One source. Every AI coding tool. Always in sync." width="100%" />
|
|
6
|
+
|
|
5
7
|
[](https://github.com/sampleXbro/agentsmesh/actions/workflows/ci.yml)
|
|
6
8
|
[](https://www.npmjs.com/package/agentsmesh)
|
|
7
9
|
[](https://codecov.io/gh/sampleXbro/agentsmesh)
|
|
@@ -95,7 +97,7 @@ What this gets you:
|
|
|
95
97
|
- `diff` shows the unified patch every output file would receive, so you can review before any write.
|
|
96
98
|
- `check` reads `.agentsmesh/.lock` and fails the build if the canonical sources and the generated files disagree.
|
|
97
99
|
|
|
98
|
-
`import --from` accepts the built-in target IDs: `claude-code`, `cursor`, `copilot`, `codex-cli`, `gemini-cli`, `windsurf`, `continue`, `cline`, `kiro`, `junie`, `roo-code`, `antigravity`. Plugin targets are valid too.
|
|
100
|
+
`import --from` accepts the built-in target IDs: `claude-code`, `cursor`, `copilot`, `codex-cli`, `gemini-cli`, `windsurf`, `continue`, `cline`, `kiro`, `kilo-code`, `junie`, `roo-code`, `antigravity`. Plugin targets are valid too.
|
|
99
101
|
|
|
100
102
|
---
|
|
101
103
|
|
|
@@ -336,33 +338,33 @@ Every public symbol resolves to a real `.d.ts` under strict TypeScript. Full ref
|
|
|
336
338
|
### Project scope (`agentsmesh generate`)
|
|
337
339
|
|
|
338
340
|
<!-- agentsmesh:support-matrix:project -->
|
|
339
|
-
| Feature | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Junie | Kiro | Roo Code | Windsurf |
|
|
340
|
-
|
|
341
|
-
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
342
|
-
| Additional Rules | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Native | Native | Native | Native |
|
|
343
|
-
| Commands | Partial (workflows) | Native | Native (workflows) | Embedded | Embedded | Native | Native | Native | Native | — | Native | Native (workflows) |
|
|
344
|
-
| Agents | — | Native | Embedded | Native | — | Native | Native | Native | Native | Native | Partial | Embedded |
|
|
345
|
-
| Skills | Native | Native | Native | Native | Embedded | Native | Native | Native | Native | Native | Native | Native |
|
|
346
|
-
| MCP Servers | — | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Partial |
|
|
347
|
-
| Hooks | — | Native | Native | — | — | Partial | Native | Partial | — | Native | — | Native |
|
|
348
|
-
| Ignore | — | Native | Native | — | — | — | Native | Native (settings-embedded) | Native | Native | Native | Native |
|
|
349
|
-
| Permissions | — | Native | — | — | — | — | Partial | Partial | — | — | — | — |
|
|
341
|
+
| Feature | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Junie | Kilo Code | Kiro | Roo Code | Windsurf |
|
|
342
|
+
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
343
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
344
|
+
| Additional Rules | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Native | Native | Native | Native | Native |
|
|
345
|
+
| Commands | Partial (workflows) | Native | Native (workflows) | Embedded | Embedded | Native | Native | Native | Native | Native | — | Native | Native (workflows) |
|
|
346
|
+
| Agents | — | Native | Embedded | Native | — | Native | Native | Native | Native | Native | Native | Partial | Embedded |
|
|
347
|
+
| Skills | Native | Native | Native | Native | Embedded | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
348
|
+
| MCP Servers | — | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Native | Partial |
|
|
349
|
+
| Hooks | — | Native | Native | — | — | Partial | Native | Partial | — | — | Native | — | Native |
|
|
350
|
+
| Ignore | — | Native | Native | — | — | — | Native | Native (settings-embedded) | Native | Native | Native | Native | Native |
|
|
351
|
+
| Permissions | — | Native | — | — | — | — | Partial | Partial | — | — | — | — | — |
|
|
350
352
|
<!-- /agentsmesh:support-matrix:project -->
|
|
351
353
|
|
|
352
354
|
### Global scope (`agentsmesh generate --global`)
|
|
353
355
|
|
|
354
356
|
<!-- agentsmesh:support-matrix:global -->
|
|
355
|
-
| Feature | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Junie | Kiro | Roo Code | Windsurf |
|
|
356
|
-
|
|
357
|
-
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
358
|
-
| Additional Rules | Embedded | Native | Native | Embedded | Native | Native | Embedded | Embedded | Embedded | Native | Native | Partial |
|
|
359
|
-
| Commands | Partial (workflows) | Native | Native (workflows) | Embedded | Native | Native | Native | Native | Native | — | Native | Native (workflows) |
|
|
360
|
-
| Agents | — | Native | Embedded | Native | — | Native | Native | Native | Native | Native | Partial | Embedded |
|
|
361
|
-
| Skills | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
362
|
-
| MCP Servers | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Partial |
|
|
363
|
-
| Hooks | — | Native | Native | — | — | — | Native | Partial | — | — | — | Native |
|
|
364
|
-
| Ignore | — | Native | Native | — | — | — | Native | — | — | Native | Native | Native |
|
|
365
|
-
| Permissions | — | Native | — | — | — | — | — | — | — | — | — | — |
|
|
357
|
+
| Feature | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Junie | Kilo Code | Kiro | Roo Code | Windsurf |
|
|
358
|
+
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
359
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
360
|
+
| Additional Rules | Embedded | Native | Native | Embedded | Native | Native | Embedded | Embedded | Embedded | Native | Native | Native | Partial |
|
|
361
|
+
| Commands | Partial (workflows) | Native | Native (workflows) | Embedded | Native | Native | Native | Native | Native | Native | — | Native | Native (workflows) |
|
|
362
|
+
| Agents | — | Native | Embedded | Native | — | Native | Native | Native | Native | Native | Native | Partial | Embedded |
|
|
363
|
+
| Skills | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
364
|
+
| MCP Servers | Native | Native | Native | Native | Native | — | Native | Native | Native | Native | Native | Native | Partial |
|
|
365
|
+
| Hooks | — | Native | Native | — | — | — | Native | Partial | — | — | — | — | Native |
|
|
366
|
+
| Ignore | — | Native | Native | — | — | — | Native | — | — | Native | Native | Native | Native |
|
|
367
|
+
| Permissions | — | Native | — | — | — | — | — | — | — | — | — | — | — |
|
|
366
368
|
<!-- /agentsmesh:support-matrix:global -->
|
|
367
369
|
|
|
368
370
|
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-qelg8gw8.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-qelg8gw8.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|