Skip to content
Open
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
3 changes: 1 addition & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-v
yopo = { package = "agent-client-protocol-yopo", path = "src/yopo" }

# Protocol
agent-client-protocol-schema = { version = "=1.7.0", features = ["tracing"] }
agent-client-protocol-schema = { git = "https://github.com/danielkov/agent-client-protocol", rev = "6e7e044f9464c4fd652d90699a09e9edc8b3bbad", features = ["tracing"] }

# Core async runtime
tokio = { version = "1.52", default-features = false }
Expand Down
3 changes: 3 additions & 0 deletions src/agent-client-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Added

- *(unstable-v2)* Expose pending session injection through the
`unstable_session_inject` feature, including typed JSON-RPC dispatch and
`V2Session` helpers to inject, replace, and revoke typed content.
- *(unstable-v2)* Add runnable draft-v2 agent and one-shot client examples. The
agent implements the complete baseline session lifecycle; the client handles
permissions, projects chunk and snapshot updates by message ID, and waits for
Expand Down
4 changes: 4 additions & 0 deletions src/agent-client-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ unstable_mcp_over_acp = ["agent-client-protocol-schema/unstable_mcp_over_acp"]
unstable_plan_operations = ["agent-client-protocol-schema/unstable_plan_operations"]
unstable_session_compaction = ["agent-client-protocol-schema/unstable_session_compaction"]
unstable_session_fork = ["agent-client-protocol-schema/unstable_session_fork"]
unstable_session_inject = [
"unstable_protocol_v2",
"agent-client-protocol-schema/unstable_session_inject",
]
unstable_tool_call_name = ["agent-client-protocol-schema/unstable_tool_call_name"]
unstable_protocol_v2 = ["agent-client-protocol-schema/unstable_protocol_v2"]

Expand Down
Loading