Skip to content

Commit 1a19d8f

Browse files
authored
Update links to the new repo (#140)
* Update links to the new repo * Update action versions * More links
1 parent f1c836c commit 1a19d8f

15 files changed

Lines changed: 42 additions & 42 deletions

File tree

.github/ISSUE_TEMPLATE/10_accepted_protocol_changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ body:
1515
THEY WILL BE AUTO-CLOSED AND MAY RESULT IN YOU BEING BANNED FROM THE ZED ISSUE TRACKER.
1616
1717
PROPOSALS TO ADD ADDITIONAL CAPABILITIES / CHANGE EXISTING ONES SHOULD BE PROPOSED IN DISCUSSIONS FIRST:
18-
https://github.com/zed-industries/agent-client-protocol/discussions/categories/protocol-suggestions
18+
https://github.com/agentclientprotocol/agent-client-protocol/discussions/categories/protocol-suggestions
1919
validations:
2020
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
blank_issues_enabled: false
33
contact_links:
44
- name: Propose Protocol Changes
5-
url: https://github.com/zed-industries/agent-client-protocol/discussions/categories/protocol-suggestions
5+
url: https://github.com/agentclientprotocol/agent-client-protocol/discussions/categories/protocol-suggestions
66
about: Propose additions or changes to the protocol

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
timeout-minutes: 5
2424

2525
steps:
26-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
26+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2727

2828
- name: Use Node.js
29-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
29+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
3030
with:
3131
node-version: latest
3232
cache: "npm"
3333

3434
- name: Setup Rust
35-
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48
35+
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c
3636
with:
3737
toolchain: nightly,stable
3838
components: rustfmt,clippy
@@ -44,7 +44,7 @@ jobs:
4444
run: npm run format:check
4545

4646
- name: Check for typos
47-
uses: crate-ci/typos@8e6a4285bcbde632c5d79900a7779746e8b7ea3f
47+
uses: crate-ci/typos@80c8a4945eec0f6d464eaf9e65ed98ef085283d1
4848
with:
4949
config: ./typos.toml
5050

@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: Upload documentation artifact
6464
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
65-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa
65+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b
6666
with:
6767
path: ./typescript/docs
6868

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id-token: write # Required for OIDC token exchange
1313
steps:
1414
- name: Setup Rust
15-
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48
15+
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c
1616
with:
1717
toolchain: nightly,stable
1818
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3232
# Setup .npmrc file to publish to npm
33-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
33+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
3434
with:
3535
node-version: "lts/*"
3636
registry-url: "https://registry.npmjs.org"

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ No changes.
5454

5555
### Rust Library
5656

57-
- Make `Agent` and `Client` dyn compatible (you'll need to annotate them with `#[async_trait]`) [#97](https://github.com/zed-industries/agent-client-protocol/pull/97)
58-
- `ext_method` and `ext_notification` methods are now more consistent with the other trait methods [#95](https://github.com/zed-industries/agent-client-protocol/pull/95)
57+
- Make `Agent` and `Client` dyn compatible (you'll need to annotate them with `#[async_trait]`) [#97](https://github.com/agentclientprotocol/agent-client-protocol/pull/97)
58+
- `ext_method` and `ext_notification` methods are now more consistent with the other trait methods [#95](https://github.com/agentclientprotocol/agent-client-protocol/pull/95)
5959
- There are also distinct types for `ExtRequest`, `ExtResponse`, and `ExtNotification`
60-
- Rexport `serde_json::RawValue` for easier use [#95](https://github.com/zed-industries/agent-client-protocol/pull/95)
60+
- Rexport `serde_json::RawValue` for easier use [#95](https://github.com/agentclientprotocol/agent-client-protocol/pull/95)
6161

6262
### Typescript Library
6363

64-
- Use Stream abstraction instead of raw byte streams [#93](https://github.com/zed-industries/agent-client-protocol/pull/93)
64+
- Use Stream abstraction instead of raw byte streams [#93](https://github.com/agentclientprotocol/agent-client-protocol/pull/93)
6565
- Makes it easier to use with websockets instead of stdio
66-
- Improve type safety for method map helpers [#94](https://github.com/zed-industries/agent-client-protocol/pull/94)
66+
- Improve type safety for method map helpers [#94](https://github.com/agentclientprotocol/agent-client-protocol/pull/94)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version = "0.4.5"
55
edition = "2024"
66
license = "Apache-2.0"
77
description = "A protocol for standardizing communication between code editors and AI coding agents"
8-
repository = "https://github.com/zed-industries/agent-client-protocol"
9-
homepage = "https://github.com/zed-industries/agent-client-protocol"
8+
repository = "https://github.com/agentclientprotocol/agent-client-protocol"
9+
homepage = "https://github.com/agentclientprotocol/agent-client-protocol"
1010
documentation = "https://docs.rs/agent-client-protocol"
1111
readme = "README.md"
1212
keywords = ["agent", "client", "protocol", "ai", "editor"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ ACP is a protocol intended for broad adoption across the ecosystem; we follow a
4848

4949
### Pull Requests
5050

51-
Pull requests should intend to close [an existing issue](https://github.com/zed-industries/agent-client-protocol/issues).
51+
Pull requests should intend to close [an existing issue](https://github.com/agentclientprotocol/agent-client-protocol/issues).
5252

5353
### Issues
5454

55-
- **Bug Reports**: If you notice a bug in the protocol, please file [an issue](https://github.com/zed-industries/agent-client-protocol/issues/new?template=05_bug_report.yml) and we will be in touch.
56-
- **Protocol Suggestions**: If you'd like to propose additions or changes to the protocol, please start a [discussion](https://github.com/zed-industries/agent-client-protocol/discussions/categories/protocol-suggestions) first. We want to make sure proposed suggestions align well with the project. If accepted, we can have a conversation around the implementation of these changes. Once that is complete, we will create an issue for pull requests to target.
55+
- **Bug Reports**: If you notice a bug in the protocol, please file [an issue](https://github.com/agentclientprotocol/agent-client-protocol/issues/new?template=05_bug_report.yml) and we will be in touch.
56+
- **Protocol Suggestions**: If you'd like to propose additions or changes to the protocol, please start a [discussion](https://github.com/agentclientprotocol/agent-client-protocol/discussions/categories/protocol-suggestions) first. We want to make sure proposed suggestions align well with the project. If accepted, we can have a conversation around the implementation of these changes. Once that is complete, we will create an issue for pull requests to target.
5757

5858
### License
5959

docs/docs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"links": [
3333
{
3434
"label": "GitHub",
35-
"href": "https://github.com/zed-industries/agent-client-protocol"
35+
"href": "https://github.com/agentclientprotocol/agent-client-protocol"
3636
},
3737
{
3838
"label": "Zed Industries",
@@ -95,7 +95,7 @@
9595
},
9696
"footer": {
9797
"socials": {
98-
"github": "https://github.com/zed-industries/agent-client-protocol"
98+
"github": "https://github.com/agentclientprotocol/agent-client-protocol"
9999
}
100100
},
101101
"contextual": {

docs/libraries/rust.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ trait or the
2121
trait to define the interaction with the ACP counterpart.
2222

2323
The
24-
[agent](https://github.com/zed-industries/agent-client-protocol/blob/main/rust/examples/agent.rs)
24+
[agent](https://github.com/agentclientprotocol/agent-client-protocol/blob/main/rust/examples/agent.rs)
2525
and
26-
[client](https://github.com/zed-industries/agent-client-protocol/blob/main/rust/examples/client.rs)
26+
[client](https://github.com/agentclientprotocol/agent-client-protocol/blob/main/rust/examples/client.rs)
2727
example binaries provide runnable examples of how to do this, which you can use
2828
as a starting point.
2929

docs/libraries/typescript.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ npm install @zed-industries/agent-client-protocol
1414
```
1515

1616
Depending on what kind of tool you're building, you'll need to use either the
17-
[AgentSideConnection](https://zed-industries.github.io/agent-client-protocol/classes/AgentSideConnection.html)
17+
[AgentSideConnection](https://agentclientprotocol.github.io/agent-client-protocol/classes/AgentSideConnection.html)
1818
class or the
19-
[ClientSideConnection](https://zed-industries.github.io/agent-client-protocol/classes/ClientSideConnection.html)
19+
[ClientSideConnection](https://agentclientprotocol.github.io/agent-client-protocol/classes/ClientSideConnection.html)
2020
class to establish communication with the ACP counterpart.
2121

22-
You can find example implementations of both sides in the [main repository](https://github.com/zed-industries/agent-client-protocol/tree/main/typescript/examples). These can be run from your terminal or from an ACP Client like [Zed](https://zed.dev), making them great starting points for your own integration!
22+
You can find example implementations of both sides in the [main repository](https://github.com/agentclientprotocol/agent-client-protocol/tree/main/typescript/examples). These can be run from your terminal or from an ACP Client like [Zed](https://zed.dev), making them great starting points for your own integration!
2323

24-
Browse the [TypeScript library reference](https://zed-industries.github.io/agent-client-protocol) for detailed API documentation.
24+
Browse the [TypeScript library reference](https://agentclientprotocol.github.io/agent-client-protocol) for detailed API documentation.
2525

2626
For a complete, production-ready implementation of an ACP agent, check out [Gemini CLI](https://github.com/google-gemini/gemini-cli/blob/main/packages/cli/src/zed-integration/zedIntegration.ts).

0 commit comments

Comments
 (0)