diff --git a/README.md b/README.md index 6d4103f4..132c65d3 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/libraries/typescript.mdx b/docs/libraries/typescript.mdx index b09946eb..12bbe0af 100644 --- a/docs/libraries/typescript.mdx +++ b/docs/libraries/typescript.mdx @@ -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 diff --git a/package-lock.json b/package-lock.json index 206c50d2..4a68b2d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@zed-industries/agent-client-protocol", + "name": "@agentclientprotocol/sdk", "version": "0.4.5", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@zed-industries/agent-client-protocol", + "name": "@agentclientprotocol/sdk", "version": "0.4.5", "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 788bca54..579ebbad 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@zed-industries/agent-client-protocol", + "name": "@agentclientprotocol/sdk", "version": "0.4.5", "publishConfig": { "access": "public" diff --git a/typescript/README.md b/typescript/README.md index c0aa4abb..1246258d 100644 --- a/typescript/README.md +++ b/typescript/README.md @@ -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 @@ -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 diff --git a/typescript/typedoc.json b/typescript/typedoc.json index c030ce37..58c22745 100644 --- a/typescript/typedoc.json +++ b/typescript/typedoc.json @@ -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,