Skip to content

Commit 6384181

Browse files
authored
chore: More explicit publish settings (#22)
1 parent 3c4095b commit 6384181

File tree

14 files changed

+40
-57
lines changed

14 files changed

+40
-57
lines changed

.release-plz.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
[workspace]
22
git_release_type = "auto"
3-
publish = false
43

54
[[package]]
65
name = "agent-client-protocol"
76
git_tag_name = "v{{ version }}"
8-
publish = true

src/agent-client-protocol/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ documentation = "https://docs.rs/agent-client-protocol"
1111
readme = "README.md"
1212
keywords = ["agent", "client", "protocol", "ai", "editor"]
1313
categories = ["development-tools", "api-bindings"]
14-
include = ["/src/**/*.rs", "/README.md", "/LICENSE", "/Cargo.toml"]
1514

1615
[features]
1716
unstable = ["agent-client-protocol-schema/unstable"]

src/agent-client-protocol/LICENSE

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/agent-client-protocol/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<a href="https://agentclientprotocol.com/" >
2+
<img alt="Agent Client Protocol" src="https://zed.dev/img/acp/banner-dark.webp">
3+
</a>
4+
5+
# Agent Client Protocol
6+
7+
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).
8+
9+
Learn more at [agentclientprotocol.com](https://agentclientprotocol.com/).
10+
11+
## Integrations
12+
13+
- [Schema](./schema/schema.json)
14+
- [Agents](https://agentclientprotocol.com/overview/agents)
15+
- [Clients](https://agentclientprotocol.com/overview/clients)
16+
- Official Libraries
17+
- **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)
18+
- **Python**: [`python-sdk`](https://github.com/agentclientprotocol/python-sdk) - See [examples](https://github.com/agentclientprotocol/python-sdk/tree/main/examples)
19+
- **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)
20+
- **TypeScript**: [`@agentclientprotocol/sdk`](https://www.npmjs.com/package/@agentclientprotocol/sdk) - See [examples/](https://github.com/agentclientprotocol/typescript-sdk/tree/main/src/examples)
21+
- [Community Libraries](https://agentclientprotocol.com/libraries/community)
22+
23+
## Contributing
24+
25+
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.
26+
27+
## Contribution Policy
28+
29+
This project does not require a Contributor License Agreement (CLA). Instead, contributions are accepted under the following terms:
30+
31+
> 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).

src/elizacp/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ keywords = ["acp", "agent", "eliza", "testing"]
99
categories = ["development-tools"]
1010
authors = ["Niko Matsakis <[email protected]>"]
1111
readme = "README.md"
12+
publish = false
1213

1314
[[bin]]
1415
name = "elizacp"

src/sacp-conductor/.github/workflows/release-plz.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/sacp-conductor/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
77
repository = "https://github.com/symposium-dev/symposium-acp"
88
keywords = ["acp", "agent", "conductor", "ai"]
99
categories = ["development-tools"]
10+
publish = false
1011

1112
[features]
1213
test-support = []

src/sacp-proxy/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
77
repository = "https://github.com/symposium-dev/symposium-acp"
88
keywords = ["acp", "agent", "proxy", "ai"]
99
categories = ["development-tools"]
10+
publish = false
1011

1112
[dependencies]
1213
agent-client-protocol-schema.workspace = true

src/sacp-rmcp/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
77
repository = "https://github.com/symposium-dev/symposium-acp"
88
keywords = ["acp", "agent", "proxy", "mcp", "rmcp"]
99
categories = ["development-tools"]
10+
publish = false
1011

1112
[dependencies]
1213
sacp = { version = "1.0.0", path = "../sacp" }

0 commit comments

Comments
 (0)