acp: Use the official ACP registry URL (#47564)

Ben Brandt created

Release Notes:

- N/A

Change summary

crates/project/src/agent_registry_store.rs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

Detailed changes

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)]