Skip to content
CLI

🚀 CodeBuddy Code v2.136.0 Release

📦 Version Information

ComponentVersion
CodeBuddy Code CLIv2.136.0
Agent SDK JSv0.3.242
Agent SDK Pythonv0.3.241

✨ New Features

Configurable Auto-Compaction Window

A new autoCompactWindow setting lets you customize the context window baseline used to calculate automatic compaction. By default, it follows the model's context window. It can be configured in three ways:

  • Set the autoCompactWindow field in settings.json; the CODEBUDDY_AUTO_COMPACT_WINDOW environment variable can override it
  • Pass the --autocompact startup option with either auto or a specific token count, such as 400k or 1m
  • Use the /autocompact slash command during a session to adjust it at any time, with changes taking effect immediately

🔧 Improvements

  • Reduced startup memory usage: The command parser now uses a pure TypeScript implementation and no longer loads the WASM runtime, making one-shot conversations lighter to start and faster to parse.

🐛 Bug Fixes

  • Child process cleanup: Fixed LSP and ripgrep child processes remaining as orphaned processes on certain exit paths; also fixed Ctrl+Break on Windows not triggering child process cleanup.
  • Message display: Fixed an issue where the final response could be incorrectly identified as a duplicate and not displayed after tool calls.
  • MCP stability: Fixed an issue where an MCP Server could be enumerated more than once during dynamic connection, causing tool calls to fail.
  • Streaming output: Fixed invalid concatenation of streaming tool call arguments with some compatible models.
  • Windows file completion: Fixed @ file completion returning no suggestions inside Git repositories on Windows.