Skip to content

Commit 9baa13d

Browse files
committed
Update docs to use CDN URL for registry
Change all references from GitHub releases to https://cdn.agentclientprotocol.com/registry/v1/latest/
1 parent 3aed171 commit 9baa13d

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.docs/registry.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The ACP Registry provides a machine-readable index of all registered agents.
1010
The registry is published as a JSON file on every release:
1111

1212
```
13-
https://github.com/agentclientprotocol/registry/releases/latest/download/registry.json
13+
https://cdn.agentclientprotocol.com/registry/v1/latest/registry.json
1414
```
1515

1616
## Schema
@@ -117,7 +117,7 @@ For packages published to PyPI:
117117
The full JSON Schema is available at:
118118

119119
```
120-
https://github.com/agentclientprotocol/registry/releases/latest/download/agent.schema.json
120+
https://cdn.agentclientprotocol.com/registry/v1/latest/agent.schema.json
121121
```
122122

123123
Use it to validate your agent configuration before submitting.

.github/workflows/build_registry.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@
4141
}
4242

4343
# Can be overridden via environment variable
44-
DEFAULT_BASE_URL = (
45-
"https://github.com/agentclientprotocol/registry/releases/latest/download"
46-
)
44+
DEFAULT_BASE_URL = "https://cdn.agentclientprotocol.com/registry/v1/latest"
4745

4846
# Icon requirements
4947
PREFERRED_ICON_SIZE = 16

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A registry of agents and extensions implementing the [Agent Client Protocol, ACP
2424
Fetch the registry index:
2525

2626
```
27-
https://github.com/agentclientprotocol/registry/releases/latest/download/registry.json
27+
https://cdn.agentclientprotocol.com/registry/v1/latest/registry.json
2828
```
2929

3030
## Documentation Site

agent.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://github.com/agentclientprotocol/registry/releases/latest/download/agent.schema.json",
3+
"$id": "https://cdn.agentclientprotocol.com/registry/v1/latest/agent.schema.json",
44
"title": "ACP Agent",
55
"description": "Schema for ACP agent registry entries",
66
"type": "object",

registry.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://github.com/agentclientprotocol/registry/releases/latest/download/registry.schema.json",
3+
"$id": "https://cdn.agentclientprotocol.com/registry/v1/latest/registry.schema.json",
44
"title": "ACP Agent Registry",
55
"description": "Schema for the aggregated ACP agent and extension registry index",
66
"type": "object",

0 commit comments

Comments
 (0)