From a0f862afc2d9f4c3036c905fd9d47e9227899278 Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Sat, 24 Jan 2026 22:12:51 +0000 Subject: [PATCH] acp: Use the official ACP registry URL (#47564) (cherry-pick to preview) (#47566) Cherry-pick of #47564 to preview ---- Release Notes: - N/A Co-authored-by: Ben Brandt --- crates/project/src/agent_registry_store.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/project/src/agent_registry_store.rs b/crates/project/src/agent_registry_store.rs index 94075a224ea5774201b3b79d72a53ed4d63c512a..0d49e2683e8f30240fde366b985b5d76ae26b51a 100644 --- a/crates/project/src/agent_registry_store.rs +++ b/crates/project/src/agent_registry_store.rs @@ -13,8 +13,7 @@ use settings::Settings; use crate::agent_server_store::{AllAgentServersSettings, CustomAgentServerSettings}; -const REGISTRY_URL: &str = - "https://github.com/agentclientprotocol/registry/releases/latest/download/registry.json"; +const REGISTRY_URL: &str = "https://cdn.agentclientprotocol.com/registry/v1/latest/registry.json"; const REFRESH_THROTTLE_DURATION: Duration = Duration::from_secs(60 * 60); #[derive(Clone, Debug)]