Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Learn more at [agentclientprotocol.com](https://agentclientprotocol.com/).

- **JSON Schema**: [`schema.json`](./schema/schema.json)
- **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)
- **TypeScript**: [`@zed-industries/agent-client-protocol`](https://www.npmjs.com/package/@zed-industries/agent-client-protocol) - See [examples/](./typescript/examples/)
- **TypeScript**: [`@agentclientprotocol/sdk`](https://www.npmjs.com/package/@agentclientprotocol/sdk) - See [examples/](./typescript/examples/)
- **Dart**: [`acp_dart`](https://github.com/SkrOYC/acp-dart)
- **Python**: [`agent-client-protocol-python`](https://github.com/PsiACE/agent-client-protocol-python)
- **React**: [`use-acp`](https://github.com/marimo-team/use-acp): hooks for connecting to Agent Client Protocol (ACP) servers.
Expand Down
4 changes: 2 additions & 2 deletions docs/libraries/typescript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ title: "TypeScript"
description: "TypeScript library for the Agent Client Protocol"
---

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

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

```bash
npm install @zed-industries/agent-client-protocol
npm install @agentclientprotocol/sdk
```

Depending on what kind of tool you're building, you'll need to use either the
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@zed-industries/agent-client-protocol",
"name": "@agentclientprotocol/sdk",
"version": "0.4.5",
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Learn more at https://agentclientprotocol.com
## Installation

```bash
npm install @zed-industries/agent-client-protocol
npm install @agentclientprotocol/sdk
```

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

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion typescript/typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"navigationLinks": {
"Protocol Docs": "https://agentclientprotocol.com",
"GitHub": "https://github.com/agentclientprotocol/agent-client-protocol",
"NPM": "https://www.npmjs.com/package/@zed-industries/agent-client-protocol"
"NPM": "https://www.npmjs.com/package/@agentclientprotocol/sdk"
},
"tsconfig": "../tsconfig.json",
"excludePrivate": true,
Expand Down