From 793d716fbf2ebc8ceaa4b9ed5e6ec7962ce04477 Mon Sep 17 00:00:00 2001 From: Tulga Tsogtgerel Date: Tue, 2 Dec 2025 13:10:58 -0800 Subject: [PATCH 1/2] change log updated for 0.10 version --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bebe29..7f2fe93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +### 0.10.0 + +#### TUI Features +- **Bash Mode**: Added Bash mode (!) to run shell commands directly in chat and see output in transcript +- **Session Switching**: Added `/resume` command to switch between sessions without restarting CLI +- **Shell Configuration**: Added `/config` command to configure default shell and startup script +- **Keyboard Shortcuts**: Added Ctrl+/ for undo and Ctrl+Y for redo in normal edit mode +- **Verbose Thinking**: Added verbose output mode for thinking summaries to show full agent reasoning +- **Terminal Focus Tracking**: Added focus detection to hide cursor when terminal window loses focus + +#### Session Management +- Show session ID when closing sessions with command to resume by ID +- Support resuming sessions by ID prefix (unambiguous matches) +- Added `-f` flag to filter session list to current workspace only +- Reversed session list order to show newest sessions first + +#### Hooks System +- Integrated hooks system into CLI/TUI for tool execution and session lifecycle events + +#### UI Improvements +- Fixed text wrapping in tool result summaries +- Truncate web fetch results to 150 characters for better readability +- Increased max length for thinking summary titles to reduce truncation +- Truncate large file views to prevent excessive memory usage + +#### Bug Fixes +- Fixed escape key behavior in ask mode (now properly exits to normal mode) +- Fixed race condition in terminal focus tracking that caused escape sequences to leak +- Fixed ACP login flow path identification +- Removed duplicate error messages in output +- Suppressed verbose npm output during auto-upgrade failures for cleaner error messages + ### 0.9.1 - Fixed issue with extraneous git processes spawning after indexing From 940aa9e690a799e3bdc5bdcc09e1b52f4db04c3b Mon Sep 17 00:00:00 2001 From: Tulga Tsogtgerel Date: Tue, 2 Dec 2025 13:10:58 -0800 Subject: [PATCH 2/2] correct misleading changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f2fe93..b171cf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ #### TUI Features - **Bash Mode**: Added Bash mode (!) to run shell commands directly in chat and see output in transcript -- **Session Switching**: Added `/resume` command to switch between sessions without restarting CLI +- **Session Switching**: Added `/sessions` command to switch between sessions without restarting CLI - **Shell Configuration**: Added `/config` command to configure default shell and startup script - **Keyboard Shortcuts**: Added Ctrl+/ for undo and Ctrl+Y for redo in normal edit mode - **Verbose Thinking**: Added verbose output mode for thinking summaries to show full agent reasoning