From 4f6d7783eff6e520ec066a103ca922bf1e8fbb3e Mon Sep 17 00:00:00 2001 From: Eric Hong Date: Tue, 3 Mar 2026 23:38:10 -0800 Subject: [PATCH 1/2] Add cursor agent --- cursor-acp/agent.json | 56 +++++++++++++++++++++++++++++++++++++++++++ cursor-acp/icon.svg | 12 ++++++++++ 2 files changed, 68 insertions(+) create mode 100644 cursor-acp/agent.json create mode 100644 cursor-acp/icon.svg diff --git a/cursor-acp/agent.json b/cursor-acp/agent.json new file mode 100644 index 0000000..08c15b6 --- /dev/null +++ b/cursor-acp/agent.json @@ -0,0 +1,56 @@ +{ + "id": "cursor-acp", + "name": "Cursor", + "version": "0.1.0", + "description": "ACP for Cursor's coding agent", + "authors": [ + "Cursor" + ], + "license": "proprietary", + "distribution": { + "binary": { + "darwin-aarch64": { + "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/darwin/arm64/agent-cli-package.tar.gz", + "cmd": "./agent", + "args": [ + "acp" + ] + }, + "darwin-x86_64": { + "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/darwin/x64/agent-cli-package.tar.gz", + "cmd": "./agent", + "args": [ + "acp" + ] + }, + "linux-aarch64": { + "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/linux/arm64/agent-cli-package.tar.gz", + "cmd": "./agent", + "args": [ + "acp" + ] + }, + "linux-x86_64": { + "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/linux/x64/agent-cli-package.tar.gz", + "cmd": "./agent", + "args": [ + "acp" + ] + }, + "windows-aarch64": { + "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/windows/arm64/agent-cli-package.zip", + "cmd": "./agent.exe", + "args": [ + "acp" + ] + }, + "windows-x86_64": { + "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/windows/x64/agent-cli-package.zip", + "cmd": "./agent.exe", + "args": [ + "acp" + ] + } + } + } +} diff --git a/cursor-acp/icon.svg b/cursor-acp/icon.svg new file mode 100644 index 0000000..8acd7e8 --- /dev/null +++ b/cursor-acp/icon.svg @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file From 0fb8bc2bd2f59c63539e2e35a966f6b5bb94356f Mon Sep 17 00:00:00 2001 From: Eric Hong Date: Wed, 4 Mar 2026 01:41:18 -0800 Subject: [PATCH 2/2] fix commands --- cursor-acp/agent.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cursor-acp/agent.json b/cursor-acp/agent.json index 08c15b6..5f53ba1 100644 --- a/cursor-acp/agent.json +++ b/cursor-acp/agent.json @@ -11,42 +11,42 @@ "binary": { "darwin-aarch64": { "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/darwin/arm64/agent-cli-package.tar.gz", - "cmd": "./agent", + "cmd": "./cursor-agent", "args": [ "acp" ] }, "darwin-x86_64": { "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/darwin/x64/agent-cli-package.tar.gz", - "cmd": "./agent", + "cmd": "./cursor-agent", "args": [ "acp" ] }, "linux-aarch64": { "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/linux/arm64/agent-cli-package.tar.gz", - "cmd": "./agent", + "cmd": "./cursor-agent", "args": [ "acp" ] }, "linux-x86_64": { "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/linux/x64/agent-cli-package.tar.gz", - "cmd": "./agent", + "cmd": "./cursor-agent", "args": [ "acp" ] }, "windows-aarch64": { "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/windows/arm64/agent-cli-package.zip", - "cmd": "./agent.exe", + "cmd": "./cursor-agent.cmd", "args": [ "acp" ] }, "windows-x86_64": { "archive": "https://anysphere-binaries.s3.amazonaws.com/lab/2026.03.04-c28b141/windows/x64/agent-cli-package.zip", - "cmd": "./agent.exe", + "cmd": "./cursor-agent.cmd", "args": [ "acp" ]