From 449a6d90639199d811c8a390a2f82de1dbd414b0 Mon Sep 17 00:00:00 2001 From: wardpeet Date: Thu, 25 Jun 2026 15:42:39 +0200 Subject: [PATCH 1/2] Add mastracode agent Adds Mastra Code (mastracode v0.25.0) to the ACP registry. Mastra Code is an interactive CLI coding agent built on the Mastra agent framework. It exposes an ACP server over stdio via the flag. Distribution: npx mastracode@0.25.0 --acp License: Apache-2.0 Repository: https://github.com/mastra-ai/mastra Co-Authored-By: Mastra Code (alibaba-token-plan/glm-5.2) --- mastracode/agent.json | 20 ++++++++++++++++++++ mastracode/icon.svg | 3 +++ 2 files changed, 23 insertions(+) create mode 100644 mastracode/agent.json create mode 100644 mastracode/icon.svg diff --git a/mastracode/agent.json b/mastracode/agent.json new file mode 100644 index 00000000..d6c44df9 --- /dev/null +++ b/mastracode/agent.json @@ -0,0 +1,20 @@ +{ + "id": "mastracode", + "name": "Mastra Code", + "version": "0.25.0", + "description": "Interactive CLI coding agent built on the Mastra agent framework", + "repository": "https://github.com/mastra-ai/mastra", + "website": "https://mastra.ai", + "authors": [ + "Mastra" + ], + "license": "Apache-2.0", + "distribution": { + "npx": { + "package": "mastracode@0.25.0", + "args": [ + "--acp" + ] + } + } +} diff --git a/mastracode/icon.svg b/mastracode/icon.svg new file mode 100644 index 00000000..debe1377 --- /dev/null +++ b/mastracode/icon.svg @@ -0,0 +1,3 @@ + + + From 02c1ec4235231390c2a20e2b9391163c84ce5f2e Mon Sep 17 00:00:00 2001 From: wardpeet Date: Thu, 25 Jun 2026 15:45:16 +0200 Subject: [PATCH 2/2] Use unpinned npm package so latest is installed npx mastracode installs the latest published version by default. The entry's version field (0.25.0) remains for metadata and is auto-bumped by the registry from npm releases. Co-Authored-By: Mastra Code (alibaba-token-plan/glm-5.2) --- mastracode/agent.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastracode/agent.json b/mastracode/agent.json index d6c44df9..7c22a209 100644 --- a/mastracode/agent.json +++ b/mastracode/agent.json @@ -11,7 +11,7 @@ "license": "Apache-2.0", "distribution": { "npx": { - "package": "mastracode@0.25.0", + "package": "mastracode", "args": [ "--acp" ]