Skip to content

Commit d2d1fae

Browse files
authored
Update npm package name (#141)
1 parent 1a19d8f commit d2d1fae

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Learn more at [agentclientprotocol.com](https://agentclientprotocol.com/).
3636

3737
- **JSON Schema**: [`schema.json`](./schema/schema.json)
3838
- **Rust**: [`agent-client-protocol`](https://crates.io/crates/agent-client-protocol) - See [examples/agent.rs](./rust/examples/agent.rs) and [examples/client.rs](./rust/examples/client.rs)
39-
- **TypeScript**: [`@zed-industries/agent-client-protocol`](https://www.npmjs.com/package/@zed-industries/agent-client-protocol) - See [examples/](./typescript/examples/)
39+
- **TypeScript**: [`@agentclientprotocol/sdk`](https://www.npmjs.com/package/@agentclientprotocol/sdk) - See [examples/](./typescript/examples/)
4040
- **Dart**: [`acp_dart`](https://github.com/SkrOYC/acp-dart)
4141
- **Python**: [`agent-client-protocol-python`](https://github.com/PsiACE/agent-client-protocol-python)
4242
- **React**: [`use-acp`](https://github.com/marimo-team/use-acp): hooks for connecting to Agent Client Protocol (ACP) servers.

docs/libraries/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ title: "TypeScript"
33
description: "TypeScript library for the Agent Client Protocol"
44
---
55

6-
The [@zed-industries/agent-client-protocol](https://www.npmjs.com/package/@zed-industries/agent-client-protocol) npm
6+
The [@agentclientprotocol/sdk](https://www.npmjs.com/package/@agentclientprotocol/sdk) npm
77
package provides implementations of both sides of the Agent Client Protocol that
88
you can use to build your own agent server or client.
99

1010
To get started, add the package as a dependency to your project:
1111

1212
```bash
13-
npm install @zed-industries/agent-client-protocol
13+
npm install @agentclientprotocol/sdk
1414
```
1515

1616
Depending on what kind of tool you're building, you'll need to use either the

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@zed-industries/agent-client-protocol",
2+
"name": "@agentclientprotocol/sdk",
33
"version": "0.4.5",
44
"publishConfig": {
55
"access": "public"

typescript/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Learn more at https://agentclientprotocol.com
1111
## Installation
1212

1313
```bash
14-
npm install @zed-industries/agent-client-protocol
14+
npm install @agentclientprotocol/sdk
1515
```
1616

1717
## Get Started
@@ -42,7 +42,7 @@ For a complete, production-ready implementation, check out the [Gemini CLI Agent
4242
- [Examples](https://github.com/agentclientprotocol/agent-client-protocol/tree/main/typescript/examples)
4343
- [Protocol Documentation](https://agentclientprotocol.com)
4444
- [GitHub Repository](https://github.com/agentclientprotocol/agent-client-protocol)
45-
- [NPM Package](https://www.npmjs.com/package/@zed-industries/agent-client-protocol)
45+
- [NPM Package](https://www.npmjs.com/package/@agentclientprotocol/sdk)
4646

4747
## Contributing
4848

typescript/typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"navigationLinks": {
77
"Protocol Docs": "https://agentclientprotocol.com",
88
"GitHub": "https://github.com/agentclientprotocol/agent-client-protocol",
9-
"NPM": "https://www.npmjs.com/package/@zed-industries/agent-client-protocol"
9+
"NPM": "https://www.npmjs.com/package/@agentclientprotocol/sdk"
1010
},
1111
"tsconfig": "../tsconfig.json",
1212
"excludePrivate": true,

0 commit comments

Comments
 (0)