agentsmesh 0.9.0 → 0.11.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 CHANGED
@@ -1,5 +1,52 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 85b8601: feat(goose): add Goose (Block) as a new built-in target
8
+
9
+ Goose is an open-source AI coding agent by Block (goose-docs.ai). This adds full project and global mode support:
10
+ - **Rules**: `.goosehints` (root + embedded additional rules)
11
+ - **Skills**: `.agents/skills/*/SKILL.md` skill bundles (shared path with Codex CLI)
12
+ - **Ignore**: `.gooseignore` with gitignore-style patterns
13
+ - **Global mode**: `~/.config/goose/.goosehints`, `~/.config/goose/.gooseignore`, `~/.agents/skills/`
14
+ - Lint warnings for unsupported features (commands, hooks, MCP, permissions)
15
+
16
+ - ca7e48f: feat(opencode): add OpenCode as a new built-in target
17
+
18
+ OpenCode (opencode.ai) is an open-source AI coding agent CLI/TUI. This adds full project and global mode support:
19
+ - **Rules**: `AGENTS.md` (root) + `.opencode/rules/*.md` (additional)
20
+ - **Commands**: `.opencode/commands/*.md` with description frontmatter
21
+ - **Agents**: `.opencode/agents/*.md` with mode/description/model frontmatter
22
+ - **Skills**: `.opencode/skills/*/SKILL.md` skill bundles
23
+ - **MCP**: `opencode.json` with native format conversion (array `command`, `environment` key)
24
+ - **Global mode**: `~/.config/opencode/` with full feature parity
25
+ - Lint warnings for unsupported features (hooks, ignore, permissions)
26
+
27
+ ## 0.10.0
28
+
29
+ ### Minor Changes
30
+
31
+ - 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).
32
+
33
+ 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.
34
+
35
+ Capabilities (project + global):
36
+ - `rules`, `additionalRules`, `commands`, `agents`, `skills`, `mcp`, `ignore`: native
37
+ - `hooks`: none — Kilo Code has no user-facing lifecycle hook system; canonical hooks emit a lint warning.
38
+ - `permissions`: none — Kilo permissions live in `kilo.jsonc`, which agentsmesh does not generate in v1; canonical permissions emit a lint warning.
39
+
40
+ 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).
41
+
42
+ 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.
43
+
44
+ - 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.
45
+
46
+ 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.
47
+
48
+ 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.
49
+
3
50
  ## 0.9.0
4
51
 
5
52
  ### 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
  [![CI](https://github.com/sampleXbro/agentsmesh/actions/workflows/ci.yml/badge.svg)](https://github.com/sampleXbro/agentsmesh/actions/workflows/ci.yml)
6
8
  [![npm version](https://img.shields.io/npm/v/agentsmesh.svg)](https://www.npmjs.com/package/agentsmesh)
7
9
  [![Coverage](https://codecov.io/gh/sampleXbro/agentsmesh/branch/master/graph/badge.svg)](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 | Goose | Junie | Kilo Code | Kiro | OpenCode | Roo Code | Windsurf |
342
+ |---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
343
+ | Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
344
+ | Additional Rules | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Embedded | Native | Native | Native | Native | Native | Native |
345
+ | Commands | Partial (workflows) | Native | Native (workflows) | Embedded | Embedded | Native | Native | Native | — | Native | Native | — | Native | Native | Native (workflows) |
346
+ | Agents | — | Native | Embedded | Native | — | Native | Native | Native | — | Native | Native | Native | Native | Partial | Embedded |
347
+ | Skills | Native | Native | Native | Native | Embedded | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
348
+ | MCP Servers | — | Native | 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 | 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 | Goose | Junie | Kilo Code | Kiro | OpenCode | Roo Code | Windsurf |
358
+ |---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
359
+ | Rules | Native | Native | 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 | Embedded | Native | Native | Native | Native | Partial |
361
+ | Commands | Partial (workflows) | Native | Native (workflows) | Embedded | Native | Native | Native | Native | — | Native | Native | — | Native | Native | Native (workflows) |
362
+ | Agents | — | Native | Embedded | Native | — | Native | Native | Native | — | Native | Native | Native | Native | Partial | Embedded |
363
+ | Skills | Native | Native | 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 | Native | Partial |
365
+ | Hooks | — | Native | Native | — | — | — | Native | Partial | — | — | — | — | — | — | Native |
366
+ | Ignore | — | Native | 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.
@@ -1,5 +1,5 @@
1
- import { b as CanonicalFiles, V as ValidatedConfig } from './schema-BeGiBqbB.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-BeGiBqbB.js';
1
+ import { b as CanonicalFiles, V as ValidatedConfig } from './schema-BTitJKiN.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-BTitJKiN.js';
3
3
  import 'zod';
4
4
 
5
5
  /**