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
Features
Subagents
Scheduling
Artifacts
Multi-instance
Task Runner
Memory
Knowledge
Snapshot & restore
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. Features
  4. Snapshot & restore

Snapshot & restore


Snapshots let you back up everything Crew knows and does — memory, crons, skills, config, agent settings — into a single portable file. Use them to move to a new machine, recover from a problem, or keep two instances in sync.

Create a snapshot

From the dashboard (recommended)

Open Settings → Backup & Restore and click Create Snapshot. The dashboard shows existing snapshots with timestamps and sizes.

From the CLI

bash
kirocrew snapshot # → ~/.kiro/crew/snapshots/ kirocrew snapshot ~/my-snapshots --keep 3 # custom dir, prune to 3 kirocrew snapshot --list # list existing snapshots

What's included

ComponentWhat it covers
MemoryEpisodic memory, semantic memory, FTS index
WorkspacePreferences, projects, history, knowledge library
CronsAll scheduled jobs
ConfigSettings, session map, hooks, project/workspace paths
SkillsCustom skill definitions
NotificationsDashboard notification history

Restore from a snapshot

From the dashboard

Open Settings → Backup & Restore and click Restore. Select a snapshot file.

From the CLI

bash
kirocrew restore snapshot.tar.gz # auto-detect mode kirocrew restore snapshot.tar.gz --components memory,crons # selective kirocrew restore snapshot.tar.gz --dry-run # preview without writing

Two restore modes

  • Replace (no existing data at target) — overwrites with snapshot contents
  • Merge (existing data found) — adds new data without overwriting what's already there

The mode is auto-detected. Override with --mode replace or --mode merge.

Daily automatic snapshots

A built-in cron job runs at 08:00 UTC and keeps the last 7 snapshots:

kirocrew-daily-snapshot → kirocrew snapshot --keep 7

Disable or adjust from the Schedule panel.

Warning

Snapshots contain sensitive data (security keys used for audit-log integrity). Treat snapshot files like credentials — store with restrictive permissions and don't share over insecure channels.

Common patterns

Move to a new machine

bash
# On the source kirocrew snapshot ~/migrate # Copy the tarball to the new machine, then: kirocrew restore ~/migrate/snapshot-*.tar.gz kirocrew doctor

Point-in-time recovery

bash
kirocrew snapshot --list kirocrew restore ~/.kiro/crew/snapshots/kirocrew-2026-07-15.tar.gz --mode replace

Selective restore

Only want the crons from a snapshot, not the memory?

bash
kirocrew restore snapshot.tar.gz --components crons

What snapshots don't cover

Some things live outside the data home and aren't included:

  • kiro-cli credentials — log in on the target machine separately
  • AWS credentials — ~/.aws/*
  • Slack/Discord/Telegram app definitions — regenerated per workspace
  • Installed apps — their state files are covered, but app code needs to be re-installed via the App Store

For a full migration: snapshot + kirocrew setup on the new machine + re-install apps.

Page updated: August 4, 2026
Knowledge
Interfaces