Kilo Code Weekly Product Roundup
Extension versions 4.125.1 – 4.131.2 | CLI versions 0.10.1 – 0.13.1
Welcome back to the weekly product roundup! This week brings session sharing, improved managed indexing, a massive upstream sync from Roo, and three major feature launches.
New Features
Kilo Deploy
Ship Next.js apps to a live URL without leaving Kilo. Connect your GitHub repo, click Deploy, and watch your project build and go live in moments. Every push to your connected branch triggers an automatic rebuild—no YAML, no CI/CD pipelines to maintain.
Kilo Deploy detects your package manager, generates deployment settings automatically, and gives you full deployment history with logs and one-click redeploys. Read the full announcement →
Code Reviews
Code Reviews is an AI-powered review agent that analyzes your diffs, understands changes in context, and delivers structured feedback as inline GitHub comments.
Configure review styles (Strict, Balanced, or Lenient) and focus areas like security, performance, bug detection, and test coverage. No more waiting hours for feedback—reviews appear while the context is still fresh. Read the full announcement →
AI Adoption Dashboard
Track how your team is adopting AI coding with the new Adoption Dashboard, which scores your team’s adoption from 0 to 100.
The score combines three dimensions: frequency (how often devs use AI), depth (how integrated AI is into real work), and coverage (how broadly AI has spread across your team). Switch between distribution view and timeline view, drill into each dimension, and track your team’s progression from Minimal (0–20) to AI-first (91–100). Find it in the Usage tab of your Organization Dashboard.
Extension
Session Sharing & Forking
You can now share and fork sessions directly from the extension. Share your conversation context with teammates, and they can fork it to explore different approaches.
Upstream Sync (Roo Code v3.32.1–v3.34.7)
This release includes a substantial sync from Roo Code, bringing:
Native tool calling for Moonshot and Mistral providers
Browser Use 2.0 with enhanced browser interaction capabilities
Baseten provider support
Tool protocol selector in advanced settings with dynamic resolution
Streaming for native tool calls providing real-time feedback during execution
AWS Bedrock embeddings support for code indexing
Git status information now included in environment details
Fixes & Polish
Diff buttons now properly appear after task completion
JetBrains and VS Code webview asset fixes
Improved reliability of Opus with Claude Code
Gemini 3 Pro Preview added to Gemini CLI provider (deprecated models removed)
CLI
Session Management Improvements
The session manager received a significant refactor to better handle asynchronous file save events. New features include the /session show command, and fixes for session cleanup race conditions that could cause duplicated sessions.
Additional Improvements
/model listcommand now supports pagination, filters, and sortingA new JSON stdin handler enables bidirectional CLI communication—useful for integrating Kilo CLI into automated pipelines and toolchains.
Install & Update:
npm install -g @kilocode/cli
View All Latest Releases
CLI: 0.10.1 • 0.10.2 • 0.11.0 • 0.12.0 • 0.12.1 • 0.13.0 • 0.13.1
Extension: 4.125.1 • 4.126.0 • 4.126.1 • 4.127.0 • 4.128.0 • 4.129.0 • 4.130.0 • 4.130.1 • 4.131.0 • 4.131.1 • 4.131.2




Solid work on the async file save refactor for session management. The race condition fix is clutch since session duplication was probably causing headaches in CI workflows. One thing I'm curiuos about tho is how the forking mechanism handles large conversation contexts - does it copy the entire history or just reference pointers to keep things light?