Kiro Release Notes

Last updated: Jan 17, 2026

  • Jan 15, 2026
    • Parsed from source:
      Jan 15, 2026
    • Detected by Releasebot:
      Jan 17, 2026
    Kiro logo

    Kiro

    Skills, Custom Diff Tools, Improved Code Intelligence, and Conversation Compaction

    New release delivers custom diff tools, out‑of‑the‑box code intelligence for 18 languages, progressive context loading with skills, granular web_fetch URL permissions, remote authentication, and conversation compaction for long chats. It also introduces quick workspace insight with /code overview.

    Overview

    This release brings custom diff tools, built-in code intelligence for 18 languages, skills for progressive context loading, remote authentication, granular web_fetch tool permissions, and conversation compaction to keep long sessions running smoothly.

    Progressive Context Loading with Skills

    Progressive Context Loading with Skills
    Skills are a new resource type designed for large documentation sets. Only metadata (name and description) loads at startup — full content loads on demand when the agent needs it. Skill files require YAML frontmatter with descriptive metadata. Write specific descriptions so the agent reliably knows when to load the full content.
    Learn more ->

    Custom diff tools

    Custom diff tools
    View code changes your way. Configure external diff tools like delta, difftastic, or VS Code instead of the built-in inline diff. Set your preference with chat.diffTool in your settings. Popular options include delta for syntax highlighting with side-by-side view, difftastic for structural diffs that understand code syntax, and GUI diff tools for visual comparison.
    Learn more ->

    Precise Refactoring with AST Pattern Tools

    Precise Refactoring with AST Pattern Tools
    New pattern-search and pattern-rewrite tools let the agent find and transform code using syntax-tree patterns rather than text regex. No more false matches on string literals or comments.

    Improved Code Intelligence

    Improved Code Intelligence
    Out-of-the-box code understanding for 18 languages — no LSP setup required. Agents can now search symbols, navigate definitions, and perform structural code searches immediately. The new /code overview command gives you a complete picture of any workspace in seconds. Use --silent for cleaner output when diving into unfamiliar packages. Built-in support includes Bash, C, C++, C#, Elixir, Go, Java, JavaScript, Kotlin, Lua, PHP, Python, Ruby, Rust, Scala, Swift, TSX, and TypeScript.
    Learn more ->

    Conversation Compaction

    Conversation Compaction
    Free up context space with the /compact command. When you're approaching context limits, compaction summarizes your conversation history while preserving key information. Compaction also triggers automatically when your context window overflows. Configure retention with compaction.excludeMessages (minimum message pairs to keep) and compaction.excludeContextWindowPercent (minimum % to retain). Compaction creates a new session — resume the original anytime via /chat resume.
    Learn more ->

    Granular URL Permissions for web_fetch tool

    Granular URL Permissions for web_fetch tool
    Control which URLs agents can access through your agent configuration. Use regex patterns to auto-allow trusted domains or block specific sites. Blocked patterns take precedence over trusted ones. URLs not matching trusted patterns will prompt for approval.
    Learn more ->

    Remote Authentication

    Remote Authentication
    Sign in with Google or GitHub when running Kiro CLI on remote machines. Whether you're connected via SSH, SSM, or containers, authentication now works with port forwarding. For Builder ID and IAM Identity Center, device code authentication works out of the box — just enter the URL and code in your local browser.
    Learn more ->

    Original source Report a problem
  • Dec 17, 2025
    • Parsed from source:
      Dec 17, 2025
    • Detected by Releasebot:
      Dec 19, 2025
    • Modified by Releasebot:
      Jan 15, 2026
    Kiro logo

    Kiro

    1.23.0 CLI

    New subagents enable task delegation with live progress and a built‑in Plan agent for structured roadmaps. Fast grep and glob tools boost file search, multi‑session chat picker improves workflow, and MCP registry adds governance.

    Subagents

    This release introduces subagents for delegating complex tasks with live progress tracking, a built-in Plan agent for breaking down complex tasks into structured implementation plans, new grep and glob tools for fast file searching, multi-session support with an interactive session picker, and MCP registry support for governance.

    Delegate complex tasks to specialized agents with live progress tracking. Subagents run autonomously with their own context, enabling parallel task execution while keeping the main agent context focused. A default subagent is included for general-purpose tasks. You can also spawn subagents using your own agent configurations, allowing you to create specialized subagents tailored to specific workflows. Subagents have access to core tools including file read/write, shell commands, and MCP tools.

    This feature introduces a new built-in tool: subagent. If you have an existing agent configuration that restricts available tools, add subagent to your allowed tools list.

    Plan agent

    The Plan agent is a specialized built-in agent that transforms ideas into structured implementation plans. Access it with Shift + Tab or the /plan command. Here's the workflow:

    • Requirements gathering - Structured questions with multiple choice options to refine your idea
    • Research & analysis - Explores your codebase using code intelligence, grep, and glob tools
    • Implementation plan - Creates detailed task breakdowns with clear objectives and demo descriptions
    • Handoff - Transfers the approved plan to the execution agent

    The Planning agent operates in read-only mode—it can explore your codebase but cannot modify files, keeping focus on planning.

    Grep and Glob Tools

    Two new built-in tools for fast file searching:

    • grep - Fast content search using regex. Respects .gitignore. Use instead of grep, rg, or ag commands in bash.
    • glob - Fast file discovery using glob patterns. Respects .gitignore. Use instead of find command in bash.

    Both tools are trusted by default in the current working directory and can be configured with allowedPaths and deniedPaths in your agent configuration.

    Multi-Session Support

    Work across multiple chat sessions with the new interactive session picker:

    • kiro-cli chat --resume-picker - Open the session picker from command line
    • kiro-cli chat --list-sessions - List all saved sessions
    • /chat resume - Open session picker from within a chat

    Sessions are automatically saved on every turn. The picker shows session name, last activity, and message preview.

    MCP Registry Support

    MCP registry support adds governance capabilities for MCP tools. Organizations can manage and control which MCP tools are available, ensuring consistency and security across teams.

    Original source Report a problem
  • Dec 17, 2025
    • Parsed from source:
      Dec 17, 2025
    • Detected by Releasebot:
      Dec 19, 2025
    • Modified by Releasebot:
      Jan 15, 2026
    Kiro logo

    Kiro

    0.8 IDE

    Kiro introduces web tools for live internet searches, enhanced contextual hooks, parallel subagents, and granular supervised mode with per-file reviews. New capabilities fetch URLs in chat, run parallel tasks, and review each code change before acceptance.

    Web tools

    This release introduces web tools for searching and fetching content from the internet, enhanced hooks with new action types, subagents for parallel task execution, and improved supervised mode with per-file review capabilities.

    Kiro can now search the web and fetch content from URLs directly in chat. Use web tools to look up current documentation, find the latest library versions, or research solutions to technical problems. This keeps your development workflow in one place without switching to a browser.

    Contextual hooks

    Introducing contextual hooks with two new triggers: Prompt Submit and Agent Stop. These hooks fire at key moments in the agent workflow, letting you inject context or run commands before the agent acts. Choose between Agent Prompt actions to instruct the agent with natural language, or Shell Command actions to run commands locally without consuming credits.

    Subagents

    Introducing subagents for parallel task execution. Kiro can now run multiple tasks simultaneously or delegate to specialized subagents. Two built-in subagents are available: a context gatherer for exploring projects and a general-purpose agent for parallelizing tasks. Each subagent has its own context window, keeping the main agent context clean. Use subagents to investigate multiple data sources in parallel, analyze GitHub issues across repositories, or extend your context window limits without requiring summarization.

    Enhanced Supervised Mode

    Supervised mode now offers granular control over code changes with per-file review capabilities. When Kiro makes changes to multiple files, you can review each file individually and selectively accept or reject changes. This turn-based approach works in both vibe chat and spec chat sessions, giving you full visibility into each modification.

    Original source Report a problem
  • Dec 11, 2025
    • Parsed from source:
      Dec 11, 2025
    • Detected by Releasebot:
      Dec 17, 2025
    Kiro logo

    Kiro

    Code Intelligence and Knowledge Index

    This release delivers Code Intelligence via LSP in the Kiro CLI, enabling go-to-definition, references, hover, and diagnostics across your codebase. It adds Knowledge Index with agent schema configuration for auto-indexing and domain-specific knowledge sources, plus improvements to auto-compaction and file-reading guardrails.

    Release Highlights

    This release introduces code intelligence through LSP integration, knowledge index with agent schema configuration, enhanced auto-compaction, and improved guardrails for file reading.

    Code Intelligence

    Introducing Code Intelligence, bringing Language Server Protocol (LSP) integration to the Kiro CLI. The agent now has access to the same code understanding that powers Kiro IDE—go-to-definition, find references, hover information, and diagnostics. This enables more accurate code navigation, refactoring suggestions, and context-aware assistance across your entire codebase.

    Knowledge Index with agent schema configuration

    Adds Knowledge Index with agent schema configuration for Knowledge Bases and auto-indexing support. Define custom knowledge sources in your agent configuration to give it domain-specific context that automatically stays in sync with your codebase.

    Original source Report a problem
  • Dec 11, 2025
    • Parsed from source:
      Dec 11, 2025
    • Detected by Releasebot:
      Dec 17, 2025
    • Modified by Releasebot:
      Jan 15, 2026
    Kiro logo

    Kiro

    Models

    We've added support for Claude Opus 4.5 to AWS IAM Identity Center users in both us-east-1 and eu-central-1 regions. Claude Opus 4.5 is available in both the Kiro IDE and Kiro CLI for Pro, Pro+, and Power tier subscribers.

    Original source Report a problem
  • Dec 3, 2025
    • Parsed from source:
      Dec 3, 2025
    • Detected by Releasebot:
      Dec 17, 2025
    • Modified by Releasebot:
      Jan 15, 2026
    Kiro logo

    Kiro

    0.7 IDE

    Kiro unveils Powers for on demand MCP tool loading, dynamic bundles and partner integrations, plus automatic conversation summarization to trim context as chats grow. A new context usage meter and slash commands give quick access to hooks and steering files for tests and guidance.

    This release introduces Powers for dynamic MCP tool loading, conversation summarization to manage context windows, and slash commands for quick access to hooks and steering files.

    Powers

    Introducing Powers, a new way to give Kiro's agent instant expertise for any framework or tool. Powers package MCP servers, steering files, and hooks into reusable bundles that activate on-demand based on your conversation context. Instead of loading all MCP tools upfront and overwhelming your context window, powers load dynamically when you mention relevant keywords. Browse curated powers from launch partners including Datadog, Dynatrace, Figma, Neon, Netlify, Postman, Supabase, Stripe, and more—or create your own.

    • Datadog
    • Dynatrace
    • Figma
    • Neon
    • Netlify
    • Postman
    • Supabase
    • Stripe
    • and more

    Summarization

    Adds automatic conversation summarization to manage long conversations. When your conversation reaches 80% of the model's context window limit, Kiro automatically summarizes previous messages to bring context usage back below the limit. A new context usage meter in the chat panel shows what percentage of the model's context is being used.

    Slash commands

    Introducing slash commands for quick access to hooks and steering files directly from the chat input. Type / to see available commands and execute them instantly. Hooks with manual triggers and steering files configured with manual inclusion appear in the slash command menu, letting you run tests, sync documentation, or pull in specific guidance on demand.

    Original source Report a problem
  • Dec 1, 2025
    • Parsed from source:
      Dec 1, 2025
    • Detected by Releasebot:
      Jan 15, 2026
    • Modified by Releasebot:
      Jan 17, 2026
    Kiro logo

    Kiro

    Introducing Kiro autonomous agent

    Kiro autonomous agent

    Kiro autonomous agent works independently on development tasks, from implementing features to fixing bugs. It operates asynchronously in isolated sandbox environments, learning from your code reviews and building deep understanding of your codebase and patterns.

    Kiro autonomous agent is starting to roll out for individual developers in preview to Kiro Pro, Pro+, and Power subscribers. There's no cost during the preview period, and usage is subject to weekly limits. Teams can join the waitlist to get early access.
    Learn more ->

    Original source Report a problem
  • Nov 25, 2025
    • Parsed from source:
      Nov 25, 2025
    • Detected by Releasebot:
      Dec 17, 2025
    Kiro logo

    Kiro

    Improvements to context management and todo lists

    Improvements to context management and todo lists

    Original source Report a problem
  • Nov 25, 2025
    • Parsed from source:
      Nov 25, 2025
    • Detected by Releasebot:
      Jan 8, 2026
    Kiro logo

    Kiro

    Improvements to context management and todo lists

    Improvements (4)

    Fixes (1)

    Original source Report a problem
  • Nov 24, 2025
    • Parsed from source:
      Nov 24, 2025
    • Detected by Releasebot:
      Dec 17, 2025
    Kiro logo

    Kiro

    Fixes for agents, MCP with workspaces, and code block styling

    Fixes for agents, MCP with workspaces, and code block styling

    Original source Report a problem

Related vendors