Configuration scopes - Features - Docs - Kiro
https://kiro.dev/docs/configuration/ • 224 KB fetched
Open original page
Configuration scopes - Features - Docs - Kiro
Loading image... 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
*
*
*
*
*
*
*
English
Site Terms License Responsible AI Policy Legal Privacy Policy Cookie Preferences English
Loading image...
* Apps
* CLI
* Web
* Enterprise
* Pricing
* Docs
* Community
* Resources
SIGN IN DOWNLOADS
Loading image...
Get Started
Installation Authentication Your first project
Models
Overview Available models Reasoning effort
Features
How Kiro works Specs
Steering Hooks
MCP
Permissions Custom agents
Agent Skills Powers
Cloud sessions Compaction Kiroignore Checkpoints and rewind Built-in tools
Configuration scopes
IDE 1.x
What's new in 1.0
Setup & First Run Editor
Chat
Experimental
Troubleshooting 0.x reference
CLI
What's new in 3.0
Setup & First Run Terminal UI
Chat
Voice mode Headless mode ACP Auto complete Experimental
2.x reference
Crew
Quick start Installation Running 24/7 Chat
Agent Capabilities
Features
Interfaces
Apps
System & storage Configuration Security Troubleshooting
Web
Setup & First Run Identity Center Connect your repositories
Working with the agent
Autonomous mode Automations Memory Configuration Sync Sandbox
Mobile - Preview
Overview
Commands and Reference
CLI commands Slash commands Built-in tools Exit codes Settings
Billing
Overview Managing your subscription Upgrading your plan Downgrading your plan Cancelling your plan Purchasing add-on credits Managing your payments Managing usage notifications Managing your taxes Contacting billing support Deleting your account Related questions
Enterprise
Concepts Onboarding quickstart Connecting your identity provider
Deployment options Subscribe your team Manage subscriptions Governance
Monitor and track
Settings Managed updates Billing IAM Supported regions
Privacy and Security
Overview Data protection Code references Compliance validation Infrastructure security IAM permissions Firewalls, proxies, and data perimeters VPC endpoints (AWS PrivateLink)
Guides
Overview Language support
Learn by playing
Migration
Migrating from Q Developer Migrating from VSCode Upgrading from Q CLI
* Docs
*
* Features
*
* Configuration scopes
Copy page View as Markdown
Configuration scopes
Copy page View as Markdown
Kiro uses a layered configuration system with three scopes. Configuration closer to your current context takes priority over broader settings.
Capability IDE CLI Web Mobile
Global scope ( ~/.kiro/ ) ✓ ✓ — —
Project scope ( .kiro/ ) ✓ ✓ ✓ ✓
Agent scope ( .kiro/agents/ or ~/.kiro/agents/ ) ✓ ✓ — —
Scopes
* Global — applies across all projects. Stored in ~/.kiro/ .
* Project — specific to a workspace. Stored in <project-root>/.kiro/ .
* Agent — defined per agent in ~/.kiro/agents/ (global) or .kiro/agents/ (project).
Override the global directory with KIRO_HOME
Set the KIRO_HOME environment variable to redirect the global ~/.kiro directory to a different location. Agents, skills, steering, settings, and sessions all resolve against KIRO_HOME when it's set — useful for keeping separate Kiro profiles on the same machine.
Inspect configuration in V3
In a local or cloud V3 session, run /config to review the configuration used by that session:
bash
# Open the category summary
/config
# Open a category directly
/config steering
The summary covers agents, MCP servers, Powers, Steering, Skills, and Hooks. It shows the number or status of configured items and lets you open each category. /config is not available in V1 or V2.
Source labels
When Kiro has configuration-origin information, the Source column identifies items as local , cloud , or local + cloud . If a local session has no source information for any item, Kiro omits the column instead of labeling every item by guesswork. In a cloud session, the session's configuration is shown as cloud-sourced.
A cloud label reports where the active configuration came from. Opening /config does not upload your local files or synchronize them with cloud configuration. If cloud configuration is not enabled for your account, the panel remains available and shows local configuration without cloud-backed items.
Apply cloud configuration to local sessions
Use Configuration Sync in Kiro Web to upload supported folders from your personal .kiro directory. The uploaded configuration applies to cloud sessions automatically.
To use the cloud copy in local work, enable Apply your cloud configuration to local sessions on the Configuration Sync page. New local CLI sessions then load your cloud Steering files, custom agents, Skills, Powers, and Hooks. This option does not write cloud content to your local .kiro directory or replace existing local files.
Read-only and routed views
The category summary and the in-panel Powers, Steering, and Skills lists are read-only. Selecting Agents opens the existing agent picker, where you can switch agents. MCP servers and Hooks open their existing panels. /config does not edit or upload configuration files itself, but some linked views are interactive.
File paths
Configuration Global scope Project scope
MCP servers ~/.kiro/settings/mcp.json .kiro/settings/mcp.json
Permissions ~/.kiro/settings/permissions.yaml ~/.kiro/workspace-roots/<hash>/permissions.yaml (per-user, outside the repo)
Custom agents ~/.kiro/agents/ .kiro/agents/
Steering ~/.kiro/steering/ .kiro/steering/
Skills ~/.kiro/skills/ .kiro/skills/
Hooks ~/.kiro/hooks/ .kiro/hooks/
Powers ~/.kiro/powers/ —
Specs — .kiro/specs/
Settings (CLI) ~/.kiro/settings/cli.json —
What each scope supports
Not every feature is available at every scope. The table below shows where each configuration can be defined and whether it can be embedded in an agent profile.
Configuration Global Project Agent scope
MCP servers ✓ ✓ ✓ ( mcpServers field or includeMcpJson )
Permissions ✓ ✓ ✓ ( permissions field)
Custom agents ✓ ✓ N/A
Steering ✓ ✓ ✓ ( resources field)
Skills ✓ ✓ ✓ ( resources field)
Hooks ✓ ✓ ✓ (CLI only, hooks field)
Powers ✓ — ✓ ( includePowers field)
Specs — ✓ —
Settings ✓ — —
Resolving conflicts
When the same configuration exists in multiple scopes, the scope closest to your current context wins:
Configuration Priority (highest → lowest)
MCP servers Agent > Project > Global
Permissions deny wins regardless of scope (deny-overrides algorithm)
Custom agents Project > Global (same-name: project wins with warning)
Steering All scopes merged (not overridden)
Skills All scopes merged
Hooks All scopes merged
Tip
Permissions use a deny-overrides algorithm — a deny rule in any scope blocks the action regardless of allow rules elsewhere. See Permissions for details.
Since MCP servers can be configured in three scopes and agents have an includeMcpJson setting, MCP server resolution has additional rules. See MCP server loading priority for details.
Web and Mobile
Web and Mobile read project configuration committed to the repository, but their coverage differs: Mobile reads project steering and skills, while Kiro Web additionally reads project MCP servers, custom agents, and Hooks (see the table below). Neither surface reads global ~/.kiro/ configuration, since there is no local filesystem. Kiro Web can also use selected personal configuration that you upload through Configuration Sync .
Configuration Web Mobile
Project steering ( .kiro/steering/ ) ✓ ✓
Project skills ( .kiro/skills/ ) ✓ ✓
Project MCP servers ( .kiro/settings/mcp.json ) ✓ —
Project custom agents ( .kiro/agents/ , sub-agent delegation) ✓ —
Project Hooks ( .kiro/hooks/ ) ✓ —
Sandbox MCP (configured via Web settings) ✓ —
Permissions YAML and interactive approvals — —
For cloud sessions, open Settings > Sync in Kiro Web to upload personal Steering, custom agents, Skills, and Hooks. Manage the uploaded items from their feature-specific settings pages. This managed cloud configuration is separate from the ~/.kiro/ directory on your computer and does not modify your local files.
See Custom agents: surface behavior for details on Web and Mobile limitations.
Next steps
* Configuration Sync - upload personal configuration for cloud sessions
* Custom agents — create and configure specialized agents
* Steering — project context and conventions
* Permissions — capability-based access control
* MCP configuration — connect external tools
* Hooks — automate workflows with event-driven actions
* Skills — reusable instruction packages
* Powers — extend with packaged MCP servers and docs
Page updated: September 2, 2026
Code intelligence
IDE 1.x
Links found on this page
- About Kiro [direct]
- IDE [direct]
- CLI [direct]
- Web [direct]
- Mobile [direct]
- Crew [direct]
- Pricing [direct]
- Downloads [direct]
- Enterprise [direct]
- Startups [direct]
- Students [direct]
- Overview [direct]
- Ambassadors [direct]
- Discord [direct]
- Events [direct]
- Powers [direct]
- Shop [direct]
- Showcase [direct]
- Docs [direct]
- Blog [direct]
- Changelog [direct]
- FAQs [direct]
- Report a bug [direct]
- Suggest an idea [direct]
- Billing support [direct]
- Site Terms [direct]
- License [direct]
- Responsible AI Policy [direct]
- Legal [direct]
- Privacy Policy [direct]
- Cookie Preferences [direct]
- Loading image... [direct]
- SIGN IN [direct]
- Installation [direct]
- Authentication [direct]
- Your first project [direct]
- Overview [direct]
- Available models [direct]
- Reasoning effort [direct]
- How Kiro works [direct]
- Specs [direct]
- Steering [direct]
- Hooks [direct]
- MCP [direct]
- Permissions [direct]
- Custom agents [direct]
- Agent Skills [direct]
- Powers [direct]
- Cloud sessions [direct]
- Compaction [direct]
- Kiroignore [direct]
- Checkpoints and rewind [direct]
- Built-in tools [direct]
- What's new in 1.0 [direct]
- Setup & First Run [direct]
- Editor [direct]
- Chat [direct]
- Experimental [direct]
- Troubleshooting [direct]
- 0.x reference [direct]
- What's new in 3.0 [direct]
- Setup & First Run [direct]
- Terminal UI [direct]
- Chat [direct]
- Voice mode [direct]
- Headless mode [direct]
- ACP [direct]
- Auto complete [direct]
- Experimental [direct]
- 2.x reference [direct]
- Quick start [direct]
- Installation [direct]
- Running 24/7 [direct]
- Chat [direct]
- Agent Capabilities [direct]
- Features [direct]
- Interfaces [direct]
- Apps [direct]
- System & storage [direct]
- Configuration [direct]