Loading image...Kiro

Product

  • About Kiro
  • IDE
  • CLI
  • Web
  • Mobile
  • Crew
  • Pricing
  • Downloads

For

  • Enterprise
  • Startups
  • Students

Community

  • Overview
  • Ambassadors
  • Discord
  • Events
  • Powers
  • Shop
  • Showcase

Resources

  • Docs
  • Blog
  • Changelog
  • FAQs
  • Report a bug
  • Suggest an idea
  • Billing support

Social

Site TermsLicenseResponsible AI PolicyLegalPrivacy PolicyCookie Preferences
Loading image...Kiro
  • Enterprise
  • Pricing
  • Docs
SIGN INDOWNLOADS
Loading image...Kiro

Get Started

InstallationAuthenticationYour first project

Models

OverviewAvailable modelsReasoning effort

Features

How Kiro works
Specs
Steering
Hooks
MCP
Permissions
Custom agents
Agent Skills
Powers
CompactionKiroignoreCheckpoints and rewind
Built-in tools
Configuration scopes

IDE 1.x

What's new in 1.0
Setup & First Run
Editor
Chat
Experimental
Troubleshooting0.x reference

CLI

What's new in 3.0
Setup & First Run
Terminal UI
Chat
Headless modeACPAuto complete
Experimental
2.x reference

Crew

Quick startInstallationRunning 24/7
Chat
Agent Capabilities
Agents
Agent Templates
Integrations (MCP)
Skills
Steering
Hooks
Prompts
Features
Interfaces
Apps
ConfigurationSecurityTroubleshooting

Web - Preview

Setup & First RunIdentity Center
Connect your repositories
Working with the agent
Autonomous modeAutomations
Sandbox

Mobile - Preview

Overview

Commands and Reference

CLI commandsSlash commandsBuilt-in toolsExit codesSettingsIDE keyboard shortcuts

Billing

OverviewManaging your subscriptionUpgrading your planDowngrading your planCancelling your planPurchasing add-on creditsManaging your paymentsManaging usage notificationsManaging your taxesContacting billing supportDeleting your accountRelated questions

Enterprise

ConceptsOnboarding quickstart
Connecting your identity provider
Subscribe your teamManage subscriptions
Governance
Monitor and track
SettingsManaged updatesBillingIAMSupported regions

Privacy and Security

OverviewData protectionCode referencesCompliance validationInfrastructure securityIAM permissionsFirewalls, proxies, and data perimetersVPC endpoints (AWS PrivateLink)

Guides

Overview
Language support
Learn by playing

Migration

Migrating from Q DeveloperMigrating from VSCodeUpgrading from Q CLI
  1. Docs
  2. Crew
  3. Agent Capabilities
  4. Agents

Agents


An agent is a configuration that tells Crew how to behave: which model to use, what system prompt to follow, which tools it can call, and which MCP servers to spawn. Every session runs under an agent.

Managing agents

From the dashboard (recommended)

Open Agent Capabilities → Agents. You can:

  • View all configured agents
  • Edit any agent's model, prompt, and tool list
  • Create new agents
  • Switch the active agent for a session
  • Reset a managed agent to its defaults

The default agent

Crew ships with a kirocrew agent that includes:

  • Model — auto (uses the model configured in kiro-cli)
  • System prompt — general-purpose assistant behavior
  • MCP servers — kirocrew-core (spawn, learn, task, wait, messaging) and kirocrew-cron (scheduling tools)
  • Tools — full tool access (file read/write, shell, web, MCP)

This is what runs when you don't specify an agent. It covers most use cases.

Creating a custom agent

From the Agents panel, click Create. Set:

  • Name — identifier used to reference the agent
  • Model — which LLM to use (or auto for the default)
  • Prompt — the system prompt that shapes behavior
  • Tools — which tools the agent can call

For file-based configuration, create a JSON file:

json
{ "name": "reviewer", "description": "Independent code reviewer", "model": "auto", "prompt": "You are a code reviewer. Focus on correctness, security, and clarity.", "tools": ["fs_read", "grep"] }

Place it under ~/.kiro/agents/ or reference it from the dashboard.

Approval modes

Control how the agent gets tool permission. Set globally from Settings → Security or per-session with the Autopilot toggle.

ModeBehavior
Interactive (default)Every tool call prompts for approval
Trust this commandSession-scoped, exact match auto-approval
Trust this toolSession-scoped, any-args auto-approval
AutopilotAll tools auto-approved for this session

Denied commands and sensitive-path blocks always apply, even in Autopilot.

When to create a custom agent

  • Narrower tool access — a "reviewer" agent that can only read files, not write them
  • Different prompt — an agent tuned for a specific domain (data analysis, writing, ops)
  • Different model — use a specific model for certain types of work
  • Restricted scope — limit what the agent can do for safety-sensitive workflows
Page updated: August 4, 2026
Agent Capabilities
Agent Templates