From 1dda48134452100417ea4cb82dc566137a093dbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 18:56:16 +0000 Subject: [PATCH] chore: version packages --- .changeset/add-amp-target.md | 14 -------------- .changeset/add-warp-target.md | 14 -------------- .changeset/add-zed-target.md | 12 ------------ CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ package.json | 2 +- 5 files changed, 33 insertions(+), 41 deletions(-) delete mode 100644 .changeset/add-amp-target.md delete mode 100644 .changeset/add-warp-target.md delete mode 100644 .changeset/add-zed-target.md diff --git a/.changeset/add-amp-target.md b/.changeset/add-amp-target.md deleted file mode 100644 index 7f8f4fd6..00000000 --- a/.changeset/add-amp-target.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"agentsmesh": minor ---- - -feat(amp): add Amp (Sourcegraph) as a new built-in target - -Amp is a coding agent by Sourcegraph (ampcode.com). This adds full project and global mode support: - -- **Rules**: `AGENTS.md` (root + embedded additional rules) -- **Skills**: `.agents/skills/*/SKILL.md` skill bundles (shared path with Codex CLI, consumer role) -- **MCP**: `.amp/settings.json` under `amp.mcpServers` key with settings merge -- **Global mode**: `~/.config/amp/AGENTS.md`, `~/.config/amp/skills/`, `~/.config/amp/settings.json` -- Commands and agents projected as skills via `supportsConversion` -- Lint warnings for unsupported features (hooks, ignore, permissions) diff --git a/.changeset/add-warp-target.md b/.changeset/add-warp-target.md deleted file mode 100644 index 9f387921..00000000 --- a/.changeset/add-warp-target.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"agentsmesh": minor ---- - -feat(warp): add Warp as a new built-in target - -Warp is an agentic development environment by Warp.dev. This adds project and global mode support: - -- **Rules**: `AGENTS.md` (root + embedded additional rules); legacy `WARP.md` supported on import -- **Skills**: `.warp/skills/` with YAML frontmatter skill bundles -- **MCP**: `.mcp.json` at project root (standard format, shared with Claude Code) -- **Commands/Agents**: projected as skills via `supportsConversion` -- **Global mode**: `~/.warp/skills/` (skills only — global rules are UI-managed via Warp Drive) -- Lint warnings for unsupported features (hooks, ignore, permissions) diff --git a/.changeset/add-zed-target.md b/.changeset/add-zed-target.md deleted file mode 100644 index 618bc14d..00000000 --- a/.changeset/add-zed-target.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"agentsmesh": minor ---- - -feat(zed): add Zed as a new built-in target - -Zed is a modern code editor with a built-in AI assistant (zed.dev). This adds project and global mode support: - -- **Rules**: `.rules` (root + embedded additional rules in a single file) -- **MCP**: `.zed/settings.json` under `context_servers` key with settings merge -- **Global mode**: `~/.config/zed/settings.json` (MCP only — no global rules file) -- Lint warnings for unsupported features (hooks, ignore, permissions) diff --git a/CHANGELOG.md b/CHANGELOG.md index eee7f092..cfa2a986 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## 0.12.0 + +### Minor Changes + +- 11c0d58: feat(amp): add Amp (Sourcegraph) as a new built-in target + + Amp is a coding agent by Sourcegraph (ampcode.com). This adds full project and global mode support: + - **Rules**: `AGENTS.md` (root + embedded additional rules) + - **Skills**: `.agents/skills/*/SKILL.md` skill bundles (shared path with Codex CLI, consumer role) + - **MCP**: `.amp/settings.json` under `amp.mcpServers` key with settings merge + - **Global mode**: `~/.config/amp/AGENTS.md`, `~/.config/amp/skills/`, `~/.config/amp/settings.json` + - Commands and agents projected as skills via `supportsConversion` + - Lint warnings for unsupported features (hooks, ignore, permissions) + +- fa8e208: feat(warp): add Warp as a new built-in target + + Warp is an agentic development environment by Warp.dev. This adds project and global mode support: + - **Rules**: `AGENTS.md` (root + embedded additional rules); legacy `WARP.md` supported on import + - **Skills**: `.warp/skills/` with YAML frontmatter skill bundles + - **MCP**: `.mcp.json` at project root (standard format, shared with Claude Code) + - **Commands/Agents**: projected as skills via `supportsConversion` + - **Global mode**: `~/.warp/skills/` (skills only — global rules are UI-managed via Warp Drive) + - Lint warnings for unsupported features (hooks, ignore, permissions) + +- bfc0a57: feat(zed): add Zed as a new built-in target + + Zed is a modern code editor with a built-in AI assistant (zed.dev). This adds project and global mode support: + - **Rules**: `.rules` (root + embedded additional rules in a single file) + - **MCP**: `.zed/settings.json` under `context_servers` key with settings merge + - **Global mode**: `~/.config/zed/settings.json` (MCP only — no global rules file) + - Lint warnings for unsupported features (hooks, ignore, permissions) + ## 0.11.0 ### Minor Changes diff --git a/package.json b/package.json index b8ea91d3..84b47957 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agentsmesh", - "version": "0.11.0", + "version": "0.12.0", "description": "One canonical source for AI coding agent rules, commands, skills, MCP, hooks, and permissions — synced across Claude Code, Cursor, Copilot, Continue, Junie, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, and Roo Code.", "type": "module", "main": "./dist/index.js",