agentsmesh 0.10.0 → 0.12.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 +56 -0
- package/README.md +22 -22
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +6761 -4856
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +124 -123
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +9028 -7117
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +9040 -7129
- package/dist/index.js.map +1 -1
- package/dist/{schema-qelg8gw8.d.ts → schema-o4oXUVBP.d.ts} +10 -0
- package/dist/{target-descriptor-Dhdg8s2o.d.ts → target-descriptor--Nw5i4v3.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +8896 -6991
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agentsmesh.json +18 -3
- package/schemas/pack.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 11c0d58: feat(amp): add Amp (Sourcegraph) as a new built-in target
|
|
8
|
+
|
|
9
|
+
Amp is a coding agent by Sourcegraph (ampcode.com). This adds full project and global mode support:
|
|
10
|
+
- **Rules**: `AGENTS.md` (root + embedded additional rules)
|
|
11
|
+
- **Skills**: `.agents/skills/*/SKILL.md` skill bundles (shared path with Codex CLI, consumer role)
|
|
12
|
+
- **MCP**: `.amp/settings.json` under `amp.mcpServers` key with settings merge
|
|
13
|
+
- **Global mode**: `~/.config/amp/AGENTS.md`, `~/.config/amp/skills/`, `~/.config/amp/settings.json`
|
|
14
|
+
- Commands and agents projected as skills via `supportsConversion`
|
|
15
|
+
- Lint warnings for unsupported features (hooks, ignore, permissions)
|
|
16
|
+
|
|
17
|
+
- fa8e208: feat(warp): add Warp as a new built-in target
|
|
18
|
+
|
|
19
|
+
Warp is an agentic development environment by Warp.dev. This adds project and global mode support:
|
|
20
|
+
- **Rules**: `AGENTS.md` (root + embedded additional rules); legacy `WARP.md` supported on import
|
|
21
|
+
- **Skills**: `.warp/skills/` with YAML frontmatter skill bundles
|
|
22
|
+
- **MCP**: `.mcp.json` at project root (standard format, shared with Claude Code)
|
|
23
|
+
- **Commands/Agents**: projected as skills via `supportsConversion`
|
|
24
|
+
- **Global mode**: `~/.warp/skills/` (skills only — global rules are UI-managed via Warp Drive)
|
|
25
|
+
- Lint warnings for unsupported features (hooks, ignore, permissions)
|
|
26
|
+
|
|
27
|
+
- bfc0a57: feat(zed): add Zed as a new built-in target
|
|
28
|
+
|
|
29
|
+
Zed is a modern code editor with a built-in AI assistant (zed.dev). This adds project and global mode support:
|
|
30
|
+
- **Rules**: `.rules` (root + embedded additional rules in a single file)
|
|
31
|
+
- **MCP**: `.zed/settings.json` under `context_servers` key with settings merge
|
|
32
|
+
- **Global mode**: `~/.config/zed/settings.json` (MCP only — no global rules file)
|
|
33
|
+
- Lint warnings for unsupported features (hooks, ignore, permissions)
|
|
34
|
+
|
|
35
|
+
## 0.11.0
|
|
36
|
+
|
|
37
|
+
### Minor Changes
|
|
38
|
+
|
|
39
|
+
- 85b8601: feat(goose): add Goose (Block) as a new built-in target
|
|
40
|
+
|
|
41
|
+
Goose is an open-source AI coding agent by Block (goose-docs.ai). This adds full project and global mode support:
|
|
42
|
+
- **Rules**: `.goosehints` (root + embedded additional rules)
|
|
43
|
+
- **Skills**: `.agents/skills/*/SKILL.md` skill bundles (shared path with Codex CLI)
|
|
44
|
+
- **Ignore**: `.gooseignore` with gitignore-style patterns
|
|
45
|
+
- **Global mode**: `~/.config/goose/.goosehints`, `~/.config/goose/.gooseignore`, `~/.agents/skills/`
|
|
46
|
+
- Lint warnings for unsupported features (commands, hooks, MCP, permissions)
|
|
47
|
+
|
|
48
|
+
- ca7e48f: feat(opencode): add OpenCode as a new built-in target
|
|
49
|
+
|
|
50
|
+
OpenCode (opencode.ai) is an open-source AI coding agent CLI/TUI. This adds full project and global mode support:
|
|
51
|
+
- **Rules**: `AGENTS.md` (root) + `.opencode/rules/*.md` (additional)
|
|
52
|
+
- **Commands**: `.opencode/commands/*.md` with description frontmatter
|
|
53
|
+
- **Agents**: `.opencode/agents/*.md` with mode/description/model frontmatter
|
|
54
|
+
- **Skills**: `.opencode/skills/*/SKILL.md` skill bundles
|
|
55
|
+
- **MCP**: `opencode.json` with native format conversion (array `command`, `environment` key)
|
|
56
|
+
- **Global mode**: `~/.config/opencode/` with full feature parity
|
|
57
|
+
- Lint warnings for unsupported features (hooks, ignore, permissions)
|
|
58
|
+
|
|
3
59
|
## 0.10.0
|
|
4
60
|
|
|
5
61
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -338,33 +338,33 @@ Every public symbol resolves to a real `.d.ts` under strict TypeScript. Full ref
|
|
|
338
338
|
### Project scope (`agentsmesh generate`)
|
|
339
339
|
|
|
340
340
|
<!-- agentsmesh:support-matrix:project -->
|
|
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 | — | — | — | — | — |
|
|
341
|
+
| Feature | Amp | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Goose | Junie | Kilo Code | Kiro | OpenCode | Roo Code | Warp | Windsurf | Zed |
|
|
342
|
+
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
343
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native |
|
|
344
|
+
| Additional Rules | Embedded | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Embedded | Native | Native | Native | Native | Native | Embedded | Native | Embedded |
|
|
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 | Native | Embedded | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — |
|
|
348
|
+
| MCP Servers | Native | — | Native | Native | Native | Native | — | Native | Native | — | Native | Native | Native | Native | Native | Native | Partial | Native |
|
|
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 | — | — | — | — | — | — | — | — | — |
|
|
352
352
|
<!-- /agentsmesh:support-matrix:project -->
|
|
353
353
|
|
|
354
354
|
### Global scope (`agentsmesh generate --global`)
|
|
355
355
|
|
|
356
356
|
<!-- agentsmesh:support-matrix:global -->
|
|
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 | — | — | — | — | — | — | — | — | — | — | — |
|
|
357
|
+
| Feature | Amp | Antigravity | Claude Code | Cline | Codex CLI | Continue | Copilot | Cursor | Gemini CLI | Goose | Junie | Kilo Code | Kiro | OpenCode | Roo Code | Warp | Windsurf | Zed |
|
|
358
|
+
|---|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|:-----------:|
|
|
359
|
+
| Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | — | Native | — |
|
|
360
|
+
| Additional Rules | Embedded | 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 | Native | Native | — |
|
|
364
|
+
| MCP Servers | Native | Native | Native | Native | Native | Native | — | Native | Native | — | Native | Native | Native | Native | Native | — | Partial | Native |
|
|
365
|
+
| Hooks | — | — | Native | Native | — | — | — | Native | Partial | — | — | — | — | — | — | — | Native | — |
|
|
366
|
+
| Ignore | — | — | Native | Native | — | — | — | Native | — | Native | — | Native | Native | — | Native | — | Native | — |
|
|
367
|
+
| Permissions | — | — | Native | — | — | — | — | — | — | — | — | — | — | — | — | — | — | — |
|
|
368
368
|
<!-- /agentsmesh:support-matrix:global -->
|
|
369
369
|
|
|
370
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-o4oXUVBP.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-o4oXUVBP.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|