agentsmesh 0.10.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 +24 -0
- package/README.md +22 -22
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +1635 -709
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +119 -118
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1777 -851
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1789 -863
- package/dist/index.js.map +1 -1
- package/dist/{schema-qelg8gw8.d.ts → schema-BTitJKiN.d.ts} +4 -0
- package/dist/{target-descriptor-Dhdg8s2o.d.ts → target-descriptor-D-Y6BzCL.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +1649 -723
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agentsmesh.json +6 -0
- package/schemas/pack.json +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
3
27
|
## 0.10.0
|
|
4
28
|
|
|
5
29
|
### 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 | 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 | — | — | — | — | — | — | — |
|
|
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 | 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 | — | — | — | — | — | — | — | — | — | — | — | — | — |
|
|
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-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
|
/**
|