Skip to content

Commit 35deb76

Browse files
committed
Update links
1 parent 4091ab8 commit 35deb76

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.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/agentclientprotocol/agent-client-protocol/discussions/categories/protocol-suggestions
18+
https://github.com/agentclientprotocol/typescript-sdk/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/agentclientprotocol/agent-client-protocol/discussions/categories/protocol-suggestions
5+
url: https://github.com/agentclientprotocol/typescript-sdk/discussions/categories/protocol-suggestions
66
about: Propose additions or changes to the protocol

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,31 @@ Start by reading the [official ACP documentation](https://agentclientprotocol.co
2222

2323
### Try the Examples
2424

25-
The [examples directory](https://github.com/agentclientprotocol/agent-client-protocol/tree/main/src/examples) contains simple implementations of both Agents and Clients in TypeScript. These examples 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!
25+
The [examples directory](https://github.com/agentclientprotocol/typescript-sdk/tree/main/src/examples) contains simple implementations of both Agents and Clients in TypeScript. These examples 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!
2626

2727
### Explore the API
2828

29-
Browse the [TypeScript library reference](https://agentclientprotocol.github.io/agent-client-protocol) for detailed API documentation.
29+
Browse the [TypeScript library reference](https://agentclientprotocol.github.io/typescript-sdk) for detailed API documentation.
3030

31-
If you're building an [Agent](https://agentclientprotocol.com/protocol/overview#agent), start with [AgentSideConnection](https://agentclientprotocol.github.io/agent-client-protocol/classes/AgentSideConnection.html).
31+
If you're building an [Agent](https://agentclientprotocol.com/protocol/overview#agent), start with [AgentSideConnection](https://agentclientprotocol.github.io/typescript-sdk/classes/AgentSideConnection.html).
3232

33-
If you're building a [Client](https://agentclientprotocol.com/protocol/overview#client), start with [ClientSideConnection](https://agentclientprotocol.github.io/agent-client-protocol/classes/ClientSideConnection.html).
33+
If you're building a [Client](https://agentclientprotocol.com/protocol/overview#client), start with [ClientSideConnection](https://agentclientprotocol.github.io/typescript-sdk/classes/ClientSideConnection.html).
3434

3535
### Study a Production Implementation
3636

3737
For a complete, production-ready implementation, check out the [Gemini CLI Agent](https://github.com/google-gemini/gemini-cli/blob/main/packages/cli/src/zed-integration/zedIntegration.ts).
3838

3939
## Resources
4040

41-
- [Library docs](https://agentclientprotocol.github.io/agent-client-protocol)
42-
- [Examples](https://github.com/agentclientprotocol/agent-client-protocol/tree/main/src/examples)
41+
- [Library docs](https://agentclientprotocol.github.io/typescript-sdk)
42+
- [Examples](https://github.com/agentclientprotocol/typescript-sdk/tree/main/src/examples)
4343
- [Protocol Documentation](https://agentclientprotocol.com)
44-
- [GitHub Repository](https://github.com/agentclientprotocol/agent-client-protocol)
44+
- [GitHub Repository](https://github.com/agentclientprotocol/typescript-sdk)
4545
- [NPM Package](https://www.npmjs.com/package/@agentclientprotocol/sdk)
4646

4747
## Contributing
4848

49-
See the main [repository](https://github.com/agentclientprotocol/agent-client-protocol) for contribution guidelines.
49+
See the main [repository](https://github.com/agentclientprotocol/typescript-sdk) for contribution guidelines.
5050

5151
### License
5252

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"access": "public"
66
},
77
"description": "The Agent Client Protocol (ACP) is a protocol that standardizes communication between *code editors* (interactive programs for viewing and editing source code) and *coding agents* (programs that use generative AI to autonomously modify code).",
8-
"homepage": "https://github.com/agentclientprotocol/agent-client-protocol#readme",
8+
"homepage": "https://github.com/agentclientprotocol/typescript-sdk#readme",
99
"bugs": {
10-
"url": "https://github.com/agentclientprotocol/agent-client-protocol/issues"
10+
"url": "https://github.com/agentclientprotocol/typescript-sdk/issues"
1111
},
1212
"repository": {
1313
"type": "git",
14-
"url": "git+https://github.com/agentclientprotocol/agent-client-protocol.git"
14+
"url": "git+https://github.com/agentclientprotocol/typescript-sdk.git"
1515
},
1616
"license": "Apache-2.0",
1717
"author": "Zed Industries",

src/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ While minimal, [`agent.ts`](./agent.ts) implements a compliant [ACP](https://age
1414
1. Clone this repo
1515

1616
```sh
17-
$ git clone https://github.com/agentclientprotocol/agent-client-protocol.git
17+
$ git clone https://github.com/agentclientprotocol/typescript-sdk.git
1818
```
1919

2020
2. Add the following at the root of your [Zed](https://zed.dev) settings:

src/typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"out": "./docs",
66
"navigationLinks": {
77
"Protocol Docs": "https://agentclientprotocol.com",
8-
"GitHub": "https://github.com/agentclientprotocol/agent-client-protocol",
8+
"GitHub": "https://github.com/agentclientprotocol/typescript-sdk",
99
"NPM": "https://www.npmjs.com/package/@agentclientprotocol/sdk"
1010
},
1111
"tsconfig": "../tsconfig.json",

0 commit comments

Comments
 (0)