diff --git a/.release-plz.toml b/.release-plz.toml
index 53d4f93..21ce066 100644
--- a/.release-plz.toml
+++ b/.release-plz.toml
@@ -1,8 +1,6 @@
[workspace]
git_release_type = "auto"
-publish = false
[[package]]
name = "agent-client-protocol"
git_tag_name = "v{{ version }}"
-publish = true
diff --git a/src/agent-client-protocol/Cargo.toml b/src/agent-client-protocol/Cargo.toml
index c9d12fd..879d927 100644
--- a/src/agent-client-protocol/Cargo.toml
+++ b/src/agent-client-protocol/Cargo.toml
@@ -11,7 +11,6 @@ documentation = "https://docs.rs/agent-client-protocol"
readme = "README.md"
keywords = ["agent", "client", "protocol", "ai", "editor"]
categories = ["development-tools", "api-bindings"]
-include = ["/src/**/*.rs", "/README.md", "/LICENSE", "/Cargo.toml"]
[features]
unstable = ["agent-client-protocol-schema/unstable"]
diff --git a/src/agent-client-protocol/LICENSE b/src/agent-client-protocol/LICENSE
deleted file mode 120000
index 30cff74..0000000
--- a/src/agent-client-protocol/LICENSE
+++ /dev/null
@@ -1 +0,0 @@
-../../LICENSE
\ No newline at end of file
diff --git a/src/agent-client-protocol/README.md b/src/agent-client-protocol/README.md
deleted file mode 120000
index fe84005..0000000
--- a/src/agent-client-protocol/README.md
+++ /dev/null
@@ -1 +0,0 @@
-../../README.md
\ No newline at end of file
diff --git a/src/agent-client-protocol/README.md b/src/agent-client-protocol/README.md
new file mode 100644
index 0000000..ef510fd
--- /dev/null
+++ b/src/agent-client-protocol/README.md
@@ -0,0 +1,31 @@
+
+
+
+
+# Agent Client Protocol
+
+The Agent Client Protocol (ACP) 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).
+
+Learn more at [agentclientprotocol.com](https://agentclientprotocol.com/).
+
+## Integrations
+
+- [Schema](./schema/schema.json)
+- [Agents](https://agentclientprotocol.com/overview/agents)
+- [Clients](https://agentclientprotocol.com/overview/clients)
+- Official Libraries
+ - **Kotlin**: [`acp-kotlin`](https://github.com/agentclientprotocol/kotlin-sdk) - Supports JVM, other targets are in progress, see [samples](https://github.com/agentclientprotocol/kotlin-sdk/tree/master/samples/kotlin-acp-client-sample/src/main/kotlin/com/agentclientprotocol/samples)
+ - **Python**: [`python-sdk`](https://github.com/agentclientprotocol/python-sdk) - See [examples](https://github.com/agentclientprotocol/python-sdk/tree/main/examples)
+ - **Rust**: [`agent-client-protocol`](https://crates.io/crates/agent-client-protocol) - See [examples/agent.rs](https://github.com/agentclientprotocol/rust-sdk/blob/main/examples/agent.rs) and [examples/client.rs](https://github.com/agentclientprotocol/rust-sdk/blob/main/examples/client.rs)
+ - **TypeScript**: [`@agentclientprotocol/sdk`](https://www.npmjs.com/package/@agentclientprotocol/sdk) - See [examples/](https://github.com/agentclientprotocol/typescript-sdk/tree/main/src/examples)
+- [Community Libraries](https://agentclientprotocol.com/libraries/community)
+
+## Contributing
+
+ACP is a protocol intended for broad adoption across the ecosystem; we follow a structured process to ensure changes are well-considered. Read the [Contributing Guide](./CONTRIBUTING.md) for more information.
+
+## Contribution Policy
+
+This project does not require a Contributor License Agreement (CLA). Instead, contributions are accepted under the following terms:
+
+> By contributing to this project, you agree that your contributions will be licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). You affirm that you have the legal right to submit your work, that you are not including code you do not have rights to, and that you understand contributions are made without requiring a Contributor License Agreement (CLA).
diff --git a/src/elizacp/Cargo.toml b/src/elizacp/Cargo.toml
index 3d5f2fd..7925d9f 100644
--- a/src/elizacp/Cargo.toml
+++ b/src/elizacp/Cargo.toml
@@ -9,6 +9,7 @@ keywords = ["acp", "agent", "eliza", "testing"]
categories = ["development-tools"]
authors = ["Niko Matsakis "]
readme = "README.md"
+publish = false
[[bin]]
name = "elizacp"
diff --git a/src/sacp-conductor/.github/workflows/release-plz.yml b/src/sacp-conductor/.github/workflows/release-plz.yml
deleted file mode 100644
index a099ff1..0000000
--- a/src/sacp-conductor/.github/workflows/release-plz.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-name: Release-plz
-
-on:
- push:
- branches:
- - main
-
-jobs:
- release-plz-release:
- name: Release-plz release
- runs-on: ubuntu-latest
- if: ${{ github.repository_owner == 'symposium-dev' }}
- permissions:
- contents: write
- id-token: write
- steps:
- - &checkout
- name: Checkout repository
- uses: actions/checkout@v5
- with:
- fetch-depth: 0
- persist-credentials: true
- token: ${{ secrets.RELEASE_PLZ_TOKEN }}
- - &install-rust
- name: Install Rust toolchain
- uses: dtolnay/rust-toolchain@stable
- - name: Run release-plz
- uses: release-plz/action@v0.5
- with:
- command: release
- env:
- GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
-
- release-plz-pr:
- name: Release-plz PR
- runs-on: ubuntu-latest
- if: ${{ github.repository_owner == 'symposium-dev' }}
- permissions:
- pull-requests: write
- contents: write
- concurrency:
- group: release-plz-${{ github.ref }}
- cancel-in-progress: false
- steps:
- - *checkout
- - *install-rust
- - name: Run release-plz
- uses: release-plz/action@v0.5
- with:
- command: release-pr
- env:
- GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
diff --git a/src/sacp-conductor/Cargo.toml b/src/sacp-conductor/Cargo.toml
index 094ac41..ed5b8a7 100644
--- a/src/sacp-conductor/Cargo.toml
+++ b/src/sacp-conductor/Cargo.toml
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "conductor", "ai"]
categories = ["development-tools"]
+publish = false
[features]
test-support = []
diff --git a/src/sacp-proxy/Cargo.toml b/src/sacp-proxy/Cargo.toml
index 2f82653..b0f1c25 100644
--- a/src/sacp-proxy/Cargo.toml
+++ b/src/sacp-proxy/Cargo.toml
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "proxy", "ai"]
categories = ["development-tools"]
+publish = false
[dependencies]
agent-client-protocol-schema.workspace = true
diff --git a/src/sacp-rmcp/Cargo.toml b/src/sacp-rmcp/Cargo.toml
index e756fff..e237cd8 100644
--- a/src/sacp-rmcp/Cargo.toml
+++ b/src/sacp-rmcp/Cargo.toml
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "proxy", "mcp", "rmcp"]
categories = ["development-tools"]
+publish = false
[dependencies]
sacp = { version = "1.0.0", path = "../sacp" }
diff --git a/src/sacp-tee/Cargo.toml b/src/sacp-tee/Cargo.toml
index f6ae2b0..9d11a70 100644
--- a/src/sacp-tee/Cargo.toml
+++ b/src/sacp-tee/Cargo.toml
@@ -2,6 +2,7 @@
name = "sacp-tee"
version = "0.1.0"
edition = "2024"
+publish = false
[dependencies]
anyhow.workspace = true
diff --git a/src/sacp-test/Cargo.toml b/src/sacp-test/Cargo.toml
index a6065d6..de882e2 100644
--- a/src/sacp-test/Cargo.toml
+++ b/src/sacp-test/Cargo.toml
@@ -2,6 +2,7 @@
name = "sacp-test"
version = "1.0.0"
edition = "2024"
+publish = false
[dependencies]
sacp = { path = "../sacp" }
diff --git a/src/sacp-tokio/Cargo.toml b/src/sacp-tokio/Cargo.toml
index 95cfd4e..a290129 100644
--- a/src/sacp-tokio/Cargo.toml
+++ b/src/sacp-tokio/Cargo.toml
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "protocol", "ai", "tokio"]
categories = ["development-tools"]
+publish = false
[dependencies]
sacp = { version = "1.0.0", path = "../sacp" }
diff --git a/src/sacp/Cargo.toml b/src/sacp/Cargo.toml
index 3fca638..74be659 100644
--- a/src/sacp/Cargo.toml
+++ b/src/sacp/Cargo.toml
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "protocol", "ai"]
categories = ["development-tools"]
+publish = false
[features]
unstable = ["agent-client-protocol-schema/unstable"]
diff --git a/src/yopo/Cargo.toml b/src/yopo/Cargo.toml
index 514323f..8a1993d 100644
--- a/src/yopo/Cargo.toml
+++ b/src/yopo/Cargo.toml
@@ -5,6 +5,7 @@ edition = "2024"
description = "YOPO (You Only Prompt Once) - A simple ACP client for one-shot prompts"
license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
+publish = false
[dependencies]
sacp = { version = "1.0.0", path = "../sacp" }