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. Steering

Steering


Steering files are markdown rules that apply to every session launched from a workspace. They're the recommended way to give project-specific context without editing agent configs or repeating yourself in every message.

How it works

Place .md files in your project's .kiro/steering/ directory:

my-project/ └── .kiro/ └── steering/ ├── coding-standards.md ├── deployment-rules.md └── team-conventions.md

When the gateway launches from this workspace (or when you set the active project to this directory), every session automatically inherits the content of these files. The agent sees them as persistent instructions.

What to put in steering files

Steering is best for rules that should always apply:

  • Coding standards — "always use TypeScript strict mode," "prefer named exports"
  • Deployment conventions — "run tests before marking work done," "never push to main directly"
  • Team context — "we use Jira for tickets," "the staging URL is staging.example.com"
  • Workflow rules — "always create a branch before making changes," "commit messages follow conventional commits"
  • Boundaries — "don't modify files in the /vendor directory," "ask before deleting anything"

Managing steering files

From the dashboard

Open Agent Capabilities → Steering. You can view, edit, and add steering files directly from the browser.

From the filesystem

Create or edit .kiro/steering/*.md files in your project directory. Changes take effect on the next session — no restart needed.

Example

.kiro/steering/coding-standards.md:

markdown
# Coding standards - Use TypeScript strict mode in all files - Prefer functional components with hooks over class components - All exported functions must have JSDoc comments - Tests go in __tests__/ next to the source file - Use `pnpm` as the package manager, not `npm` or `yarn`

Every session in this workspace follows these rules without you mentioning them.

Page updated: August 4, 2026
Skills
Hooks