Skip to content
Draft
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
4 changes: 2 additions & 2 deletions crates/goose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ tokio-stream = "0.1.17"
tempfile = "3.15.0"
dashmap = "6.1"
ahash = "0.8"
tokio-util = "0.7.15"
tokio-util = { version = "0.7.15", features = ["compat"] }
sacp = "10.0.0-alpha.3"
unicode-normalization = "0.1"
zip = "0.6"
sys-info = "0.9"
Expand All @@ -121,7 +122,6 @@ unbinder = "0.1.7"
winapi = { version = "0.3", features = ["wincred"] }

[dev-dependencies]
sacp = "10.0.0-alpha.3"
agent-client-protocol-schema = "0.10.5"
criterion = "0.5"
serial_test = "3.2.0"
Expand Down
8 changes: 8 additions & 0 deletions crates/goose/src/providers/acp/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//! ACP (Agent Client Protocol) provider implementation
//!
//! This provider acts as an ACP client, spawning an ACP agent process
//! (like claude-code-acp) and communicating with it via the ACP protocol.

mod provider;

pub use provider::AcpProvider;
Loading
Loading