From 52811b672ed02c94366b72b186c03f05792f60ad Mon Sep 17 00:00:00 2001 From: BrunoV21 <120278082+BrunoV21@users.noreply.github.com> Date: Fri, 30 Jan 2026 00:06:22 +0000 Subject: [PATCH 1/5] docs: add Nova agent to registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add Nova entry to agents table in README - Create agent.json configuration for Nova by Compass AI - Add Nova icon SVG with gradient design 🛸 Generated with [Nova](https://www.compassap.ai/portfolio/command-line-interface.html) --- README.md | 1 + nova/agent.json | 19 +++++++++++++++++++ nova/icon.svg | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 nova/agent.json create mode 100644 nova/icon.svg diff --git a/README.md b/README.md index 7461d40..a1eb4d3 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ A registry of agents and extensions implementing the [Agent Client Protocol, ACP | [Gemini CLI](https://github.com/google-gemini/gemini-cli) | Google's official CLI for Gemini | | [GitHub Copilot](https://github.com/github/copilot-language-server-release) | GitHub's AI pair programmer | | [Mistral Vibe](https://github.com/mistralai/mistral-vibe) | Mistral's open-source coding assistant | +| [Nova](https://www.npmjs.com/package/@compass-ai/nova) | Compass AI's fully-fledged software engineer | | [OpenCode](https://github.com/sst/opencode) | The open source coding agent | | [Qwen Code](https://github.com/QwenLM/qwen-code) | Alibaba's Qwen coding assistant | diff --git a/nova/agent.json b/nova/agent.json new file mode 100644 index 0000000..50b05e0 --- /dev/null +++ b/nova/agent.json @@ -0,0 +1,19 @@ +{ + "id": "nova", + "name": "Nova", + "version": "1.0.38", + "description": "Nova by Compass AI - a fully-fledged software engineer at your command", + "authors": [ + "Compass AI" + ], + "license": "proprietary", + "icon": "./icon.svg", + "distribution": { + "npx": { + "package": "@compass-ai/nova@latest", + "args": [ + "acp" + ] + } + } +} diff --git a/nova/icon.svg b/nova/icon.svg new file mode 100644 index 0000000..99e4d77 --- /dev/null +++ b/nova/icon.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 0ff0c7d3aad4fdc8317b0130f182b44a93a8452b Mon Sep 17 00:00:00 2001 From: BrunoV21 <120278082+BrunoV21@users.noreply.github.com> Date: Fri, 30 Jan 2026 13:57:23 +0000 Subject: [PATCH 2/5] chore(nova): add repository URL to agent metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🛸 Generated with [Nova](https://www.compassap.ai/portfolio/command-line-interface.html) --- nova/agent.json | 1 + 1 file changed, 1 insertion(+) diff --git a/nova/agent.json b/nova/agent.json index 50b05e0..d0a4433 100644 --- a/nova/agent.json +++ b/nova/agent.json @@ -3,6 +3,7 @@ "name": "Nova", "version": "1.0.38", "description": "Nova by Compass AI - a fully-fledged software engineer at your command", + "repository": "https://github.com/Compass-Agentic-Platform/nova", "authors": [ "Compass AI" ], From de7aa448c1411a9522865d6e4cfbfe76f152ec43 Mon Sep 17 00:00:00 2001 From: BrunoV21 <120278082+BrunoV21@users.noreply.github.com> Date: Fri, 30 Jan 2026 18:23:32 +0000 Subject: [PATCH 3/5] chore(nova): bump version to 1.0.40 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🛸 Generated with [Nova](https://www.compassap.ai/portfolio/command-line-interface.html) --- nova/agent.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/agent.json b/nova/agent.json index d0a4433..441856d 100644 --- a/nova/agent.json +++ b/nova/agent.json @@ -1,7 +1,7 @@ { "id": "nova", "name": "Nova", - "version": "1.0.38", + "version": "1.0.40", "description": "Nova by Compass AI - a fully-fledged software engineer at your command", "repository": "https://github.com/Compass-Agentic-Platform/nova", "authors": [ From 5df82adc9bc1026d0f0997e3c8c9da232dd6baac Mon Sep 17 00:00:00 2001 From: BrunoV21 <120278082+BrunoV21@users.noreply.github.com> Date: Sat, 31 Jan 2026 22:33:00 +0000 Subject: [PATCH 4/5] chore(release): bump version to 1.0.43 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🛸 Generated with [Nova](https://www.compassap.ai/portfolio/nova.html) --- nova/agent.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/agent.json b/nova/agent.json index 441856d..1e79656 100644 --- a/nova/agent.json +++ b/nova/agent.json @@ -1,7 +1,7 @@ { "id": "nova", "name": "Nova", - "version": "1.0.40", + "version": "1.0.43", "description": "Nova by Compass AI - a fully-fledged software engineer at your command", "repository": "https://github.com/Compass-Agentic-Platform/nova", "authors": [ @@ -11,7 +11,7 @@ "icon": "./icon.svg", "distribution": { "npx": { - "package": "@compass-ai/nova@latest", + "package": "@compass-ai/nova@1.0.43", "args": [ "acp" ] From 68aca1fe4ad5494f777b9078d6d29c6aea57581d Mon Sep 17 00:00:00 2001 From: BrunoV21 <120278082+BrunoV21@users.noreply.github.com> Date: Sun, 1 Feb 2026 22:13:37 +0000 Subject: [PATCH 5/5] refactor(icon): simplify compass SVG to use currentColor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove gradient definitions and use currentColor for theming - Adjust viewBox from 24x24 to 16x16 for proper scaling - Rescale all coordinates and dimensions to match new viewBox - Simplify center point design with nested circles - Reduce stroke widths for cleaner appearance at smaller size 🛸 Generated with [Nova](https://www.compassap.ai/portfolio/nova.html) --- nova/icon.svg | 42 +++++++++++++++--------------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/nova/icon.svg b/nova/icon.svg index 99e4d77..495402f 100644 --- a/nova/icon.svg +++ b/nova/icon.svg @@ -1,35 +1,23 @@ - - - - - - - - - - - - - - - + + + - + - + - - - + + + - + - - - + + + - - - \ No newline at end of file + + +