Skip to content

Commit da204ff

Browse files
authored
chore: bump ACP schema to v0.4.5 (#1)
1 parent 4959964 commit da204ff

File tree

9 files changed

+38
-38
lines changed

9 files changed

+38
-38
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ version: README.md schema/meta.json schema/schema.json
1111
echo $(ACP_VERSION) > $@
1212

1313
schema/meta.json: schema/version
14-
curl -o $@ --fail -L https://raw.githubusercontent.com/zed-industries/agent-client-protocol/refs/tags/v$(ACP_VERSION)/schema/meta.json
14+
curl -o $@ --fail -L https://raw.githubusercontent.com/agentclientprotocol/agent-client-protocol/refs/tags/v$(ACP_VERSION)/schema/meta.json
1515

1616
schema/schema.json: schema/version
17-
curl -o $@ --fail -L https://raw.githubusercontent.com/zed-industries/agent-client-protocol/refs/tags/v$(ACP_VERSION)/schema/schema.json
17+
curl -o $@ --fail -L https://raw.githubusercontent.com/agentclientprotocol/agent-client-protocol/refs/tags/v$(ACP_VERSION)/schema/schema.json
1818

1919
README.md: schema/version
2020
@command -v $(MDSH) >/dev/null || { echo "mdsh not found; run 'nix develop' or install it." 1>&2; exit 1; }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Learn more about the protocol itself at <https://agentclientprotocol.com>.
1414
<!-- `$ printf 'go get github.com/coder/acp-go-sdk@v%s\n' "$(cat schema/version)"` as bash -->
1515

1616
```bash
17-
go get github.com/coder/acp-go-sdk@v0.4.4
17+
go get github.com/coder/acp-go-sdk@v0.4.5
1818
```
1919

2020
## Get Started
@@ -76,7 +76,7 @@ to it via stdio.
7676
- [Go package docs](https://pkg.go.dev/github.com/coder/acp-go-sdk)
7777
- [Examples (Go)](https://github.com/coder/acp-go-sdk/tree/main/example)
7878
- [Protocol Documentation](https://agentclientprotocol.com)
79-
- [Agent Client Protocol GitHub Repository](https://github.com/zed-industries/agent-client-protocol)
79+
- [Agent Client Protocol GitHub Repository](https://github.com/agentclientprotocol/agent-client-protocol)
8080

8181
## License
8282

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Releasing
22

33
This project follows the ACP schema version published by
4-
[`zed-industries/agent-client-protocol`](https://github.com/zed-industries/agent-client-protocol).
4+
[`agentclientprotocol/agent-client-protocol`](https://github.com/agentclientprotocol/agent-client-protocol).
55
Each Go release should align with a specific schema tag so that the generated
66
code, helper APIs, and library version remain in sync.
77

agent_gen.go

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client_gen.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

constants_gen.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

schema/meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"agentMethods": {
33
"authenticate": "authenticate",
44
"initialize": "initialize",
5-
"model_select": "session/set_model",
65
"session_cancel": "session/cancel",
76
"session_load": "session/load",
87
"session_new": "session/new",
98
"session_prompt": "session/prompt",
10-
"session_set_mode": "session/set_mode"
9+
"session_set_mode": "session/set_mode",
10+
"session_set_model": "session/set_model"
1111
},
1212
"clientMethods": {
1313
"fs_read_text_file": "fs/read_text_file",

schema/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.4
1+
0.4.5

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.4
1+
0.4.5

0 commit comments

Comments
 (0)