Skip to content

🚀 CodeBuddy Code v2.129.0 Release

📦 Version Information

ComponentVersion
CodeBuddy Code CLIv2.129.0
Agent SDK JSv0.3.234
Agent SDK Pythonv0.3.233

✨ New Features

Monitor Tool

Added the Monitor tool, which can run a command in the background. When the command produces new output, you no longer need to poll TaskOutput / BashOutput — you are proactively woken up when idle, and when busy, you will also see incremental content after the current turn naturally ends, making it easier to follow logs, test progress, and other long-running tasks.

  • Supports timeout_ms for automatic stop on timeout, and persistent for long-term monitoring
  • Can be stopped early at any time via TaskStop
  • Enabled by default; can be disabled via the CODEBUDDY_MONITOR_ENABLED=false environment variable

Added the ShareLinkUnpublish tool, which can revoke public share links previously generated via ShareLink, completing the sharing lifecycle for sensitive documents within the CLI — no need to log in to the web console or contact the backend.

  • Supports passing the share link URL directly or its nodeId (the identifier after the /p/ segment in the link)
  • ShareLink now includes the nodeId in its return result and reminds you that it can be revoked at any time

🐛 Bug Fixes

  • Web UI session switch freeze: Fixed an issue where switching sessions during a running task required closing and reopening the browser to recover. Session switching now takes effect immediately.
  • Web UI streaming content duplication: Fixed an issue where, after a network reconnection, thinking / body content appeared duplicated character-by-character (e.g., "review review summary summary" style).
  • Web UI cross-session content leakage: Fixed an issue where output from other clients, backend sessions, or previously switched-away old sessions would leak into the current page. Session content is now strictly isolated per session.
  • /resume polluting session history: The /resume command text is no longer written to session history; refreshing the timeline no longer shows spurious user bubbles.