From 8034fa2c77bf1f957e3bdd40a670ec28e5349758 Mon Sep 17 00:00:00 2001 From: WCHungBlake Date: Mon, 1 Jun 2026 06:47:02 +0000 Subject: [PATCH 1/2] Add acp-bridge: ACP/A2A adapter for self-hosted local AI acp-bridge bridges local LLM backends (Ollama, vLLM, llama.cpp, LM Studio, LocalAI, Jan, Tabby) to the Agent Client Protocol so air-gapped or on-prem models can be used from ACP clients (Zed, Neovim, etc.). v0.7.0 ships ACP server + client + A2A modes plus spec-compliance fixes (initialize/mcpServers). Binaries distributed as raw executables from the v0.7.0 GitHub release for darwin-aarch64, darwin-x86_64, linux-aarch64, linux-x86_64. Co-Authored-By: Claude Opus 4.7 (1M context) --- acp-bridge/agent.json | 30 ++++++++++++++++++++++++++++++ acp-bridge/icon.svg | 5 +++++ 2 files changed, 35 insertions(+) create mode 100644 acp-bridge/agent.json create mode 100644 acp-bridge/icon.svg diff --git a/acp-bridge/agent.json b/acp-bridge/agent.json new file mode 100644 index 000000000..e3697f5ac --- /dev/null +++ b/acp-bridge/agent.json @@ -0,0 +1,30 @@ +{ + "id": "acp-bridge", + "name": "ACP Bridge", + "version": "0.7.0", + "description": "ACP/A2A adapter for self-hosted AI — bridges local LLM backends (Ollama, vLLM, llama.cpp, LM Studio, LocalAI, Jan, Tabby) to the Agent Client Protocol so air-gapped or on-prem models can be used from ACP clients (Zed, Neovim, etc.).", + "repository": "https://github.com/BlakeHung/acp-bridge", + "website": "https://github.com/BlakeHung/acp-bridge", + "authors": ["WCHungBlake "], + "license": "MIT", + "distribution": { + "binary": { + "darwin-aarch64": { + "archive": "https://github.com/BlakeHung/acp-bridge/releases/download/v0.7.0/acp-bridge-darwin-arm64", + "cmd": "./acp-bridge-darwin-arm64" + }, + "darwin-x86_64": { + "archive": "https://github.com/BlakeHung/acp-bridge/releases/download/v0.7.0/acp-bridge-darwin-amd64", + "cmd": "./acp-bridge-darwin-amd64" + }, + "linux-aarch64": { + "archive": "https://github.com/BlakeHung/acp-bridge/releases/download/v0.7.0/acp-bridge-linux-arm64", + "cmd": "./acp-bridge-linux-arm64" + }, + "linux-x86_64": { + "archive": "https://github.com/BlakeHung/acp-bridge/releases/download/v0.7.0/acp-bridge-linux-amd64", + "cmd": "./acp-bridge-linux-amd64" + } + } + } +} diff --git a/acp-bridge/icon.svg b/acp-bridge/icon.svg new file mode 100644 index 000000000..0d3d258b5 --- /dev/null +++ b/acp-bridge/icon.svg @@ -0,0 +1,5 @@ + + + + + From 5937595d7a52f6ee5b47e166b63d534146ee1b58 Mon Sep 17 00:00:00 2001 From: WCHungBlake Date: Mon, 1 Jun 2026 06:50:17 +0000 Subject: [PATCH 2/2] Set authors to Blake Labs Co-Authored-By: Claude Opus 4.7 (1M context) --- acp-bridge/agent.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acp-bridge/agent.json b/acp-bridge/agent.json index e3697f5ac..649523855 100644 --- a/acp-bridge/agent.json +++ b/acp-bridge/agent.json @@ -5,7 +5,7 @@ "description": "ACP/A2A adapter for self-hosted AI — bridges local LLM backends (Ollama, vLLM, llama.cpp, LM Studio, LocalAI, Jan, Tabby) to the Agent Client Protocol so air-gapped or on-prem models can be used from ACP clients (Zed, Neovim, etc.).", "repository": "https://github.com/BlakeHung/acp-bridge", "website": "https://github.com/BlakeHung/acp-bridge", - "authors": ["WCHungBlake "], + "authors": ["Blake Labs"], "license": "MIT", "distribution": { "binary": {