diff --git a/CHANGELOG.md b/CHANGELOG.md index 0335ab3..71ffa08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +## v0.8.1 (2026-07-30) + +### Feat + +- ctrl-c interrupts ongoing prompt in a session, but lets the user inject more instructions mid-stream +- improved function calling performance by allowing parallel tool calling +- created the architect and gatekeeper agents for dramatically improved coding performance +- Improved readability of session message exchange replays +- apply --agent/--role/--rag/--model flags in --acp-server mode +- add headless profile to sbx-kit spec +- implement ACP user-interaction to request_permission bridge +- implement ACP session/load and session/cancel +- implement ACP session/prompt +- add ACP server skeleton with stdout-purity test +- add --headless flag for unattended operation + +### Fix + +- ctrl-c interruption doesn't discard session messages when throbber is showing +- improper handling of fd-style globbing for directories in fs_glob +- properly templated architect design doc path in starter commands +- .copy works when sessions are resumed +- ACP session/prompt now drives the full tool-execution loop +- ACP spec conformance — ContentBlock prompt params and protocolVersion type +- restore stdout output for standalone --headless mode +- suppress tool-call display in headless mode; initialize session on session/new +- skip stdin drain and set silent render mode when --acp-server is active +- include graph-agent descriptions in .agent completions + +### Refactor + +- move ACP server dispatch into run() for shared flag setup + ## v0.8.0 (2026-07-25) ### Feat diff --git a/Cargo.lock b/Cargo.lock index ca3532d..51d4f32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1453,7 +1453,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "coyote-ai" -version = "0.8.0" +version = "0.8.1" dependencies = [ "ansi_colours", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 661640c..294d651 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coyote-ai" -version = "0.8.0" +version = "0.8.1" edition = "2024" authors = ["Alex Clarke "] description = "An all-in-one, batteries included LLM CLI Tool"