From 875b6749c2edd22f5e73fe2d079f595504f2c6f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 30 Jul 2026 22:37:15 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.8.0=20=E2=86=92=200.8.1=20[?= =?UTF-8?q?skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) 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"