Hands-on · Chapter 24 of 63
Beginner Tutorial
Install Kiro, have your first agent conversation, and build a tiny real project with a spec, step by step. No experience assumed.
Beginner friendly 6 min read last reviewed 2026-09-04
◎ Learning objective
Install Kiro, hold a productive first conversation in Supervised mode, and complete one small spec-driven project end to end.
This tutorial takes you from nothing to a working mini-project. Plan for about an hour. Every step tells you what to do, what you should see, and what it means.
What do I need before I start?
You need three things:
- A computer Kiro supports: macOS (Intel or Apple silicon), Windows 10/11 (64-bit only; ARM isn’t supported), or Linux with glibc 2.39+ (Ubuntu 24+, Fedora 40+, Debian 13+, Mint 22+, Arch).
- An account to sign in with: any of Google, GitHub, AWS Builder ID, or your organization’s identity.
- No credit card. Kiro has a free tier, and this small tutorial fits comfortably inside it. (Plans and limits change over time, so kiro.dev/pricing is always the current source.)
How do I install Kiro?
- Go to kiro.dev and download the installer for your operating system.
- Run it and launch Kiro. It looks like VS Code on purpose: Kiro IDE is built on Code OSS, the open-source base of VS Code, so existing instincts transfer.
- Wait for the first launch to finish. Kiro opens on a welcome page.
If you want the terminal instead of, or as well as, the desktop app, Kiro CLI installs separately and the CLI Guide covers it. The CLI needs Windows 11 specifically, which is narrower than the IDE’s Windows 10 and 11 support.
How do I sign in?
- Sign in when Kiro prompts you. The options are Google, GitHub, AWS Builder ID, or your organization’s identity (SSO).
- Answer the first-run questions:
- Import VS Code settings and extensions? Yes if you use VS Code; otherwise skip.
- Theme: pick what’s comfortable; you can change it later.
- Shell integration: authorize it. This is what lets the agent run commands (like starting your app) with your knowledge.
- Create an empty folder somewhere (call it
tip-calculator) and open it via File → Open Folder.
How do I have my first conversation?
Open the chat panel (the conversation icon in Kiro’s side area). Before typing anything, find the Autopilot toggle in the chat interface and make sure you’re in Supervised mode.
Why this matters: in Supervised mode the agent must show you its file changes and wait for your approval, hunk by hunk. In Autopilot it acts end-to-end on its own. Autopilot is great, but only after you’ve built judgment about what the agent does well. Learn in Supervised.
Leave the model on Auto while you learn. Auto routes to a frontier model for you and carries the lowest credit multiplier. Change the default model explains when to move off it.
Now try three conversations, in order:
1. Ask for information (nothing changes):
What would be a sensible file structure for a one-page
tip calculator website with no frameworks?
You get advice, no action. Kiro detects from your phrasing whether you want explanation or modification.
2. Ask for action (something changes):
Create index.html, style.css, and script.js for an empty
page titled "Tip Calculator" that links them together.
Watch what happens: the agent proposes file creations, and because you’re in Supervised mode, you review and accept each change. Open the files afterward and read them. Always read them.
3. Point at context with #:
Explain #file index.html line by line, for a beginner.
The # symbol opens Kiro’s context menu: #file, #folder, #codebase, #problems, #terminal and friends. This is how you point the agent at exactly the right material instead of pasting code into the chat box.
How do I undo something the agent did?
Kiro takes a checkpoint automatically every time you send a prompt. If a change goes wrong, restore the checkpoint from before that prompt instead of un-picking edits by hand. Checkpoints cover files the agent changed with its own tools, not your manual edits, so commit to git before anything risky. Undo with checkpoints and rewind has the full picture.
How do I write my first spec?
So far this resembles other AI tools. Specs are what make Kiro different.
A spec turns an idea into three reviewed documents before code gets written: requirements.md (what), design.md (how), tasks.md (the work list). Let’s build the actual calculator with one.
-
Start a spec session for this feature: open the Kiro panel (or the Command Palette) and create a new Feature Spec. When asked to pick a workflow, choose Requirements-First. That’s the flow this tutorial follows.
-
Describe the feature plainly:
A tip calculator: the user enters a bill amount, picks a tip percentage (10/15/20 or custom), and optionally a number of people to split between. Show tip amount, total, and per-person total, updating live. Handle silly inputs gracefully. -
Review
requirements.md. Kiro drafts user stories with acceptance criteria in EARS notation Easy Approach to Requirements Syntax: requirement sentences shaped like WHEN <condition> THE SYSTEM SHALL <behavior>. . Expect lines shaped like:WHEN the user enters a bill amount and selects a tip percentage THE SYSTEM SHALL display the tip amount and total immediately IF the bill amount is not a positive number THEN THE SYSTEM SHALL show an inline error and clear the resultsRead them like a checklist of promises. Wrong promise? Say so in chat now: changing a sentence is free; changing shipped code isn’t. (Notice what you’re doing here: this is requirements review, a senior-engineer skill, and Kiro just made you practice it on day one.)
-
Review
design.md. For a project this small it will be short: structure, how values flow, edge cases. Skim it; ask about anything surprising. -
Open
tasks.mdand execute the first task. Stay in Supervised mode and accept changes one by one. Continue task by task until the list is done. -
Try the result. Open
index.htmlin your browser (or ask the agent to serve it). Enter a bill, change the tip, split between 3 people. Then test a promise from the requirements: type-50as the bill. Does the error behavior match whatrequirements.mdsaid? That’s spec-driven development in one sentence: the documentation and the behavior agree.
How do I make Kiro remember my project?
New chat sessions start fresh unless you give the project memory.
-
In the Kiro panel, find the Steering section and create a workspace steering file (it lives in
.kiro/steering/inside your project). -
Write something true and useful:
# Project: Tip Calculator - Plain HTML/CSS/JS only: no frameworks, no build step. - All money values are rounded to 2 decimals at display time only. - Keep functions small and commented for a beginner to read. -
Test it: start a new chat session and ask for a small change (“add a 25% tip button”). The agent should respect your no-frameworks rule without being told. That’s steering working.
Create your first steering file covers the three foundational files and the inclusion modes when you’re ready for them.
How do I keep secrets away from the agent?
Anything the agent reads goes into the model’s context, so keep the sensitive files out of reach from the start. Add a .kiroignore file to your project root with lines like .env, *.pem, and *.key. It uses the same syntax as .gitignore. This tutorial’s project has no secrets, but the habit is worth forming now, on a project where nothing can go wrong. Keep secrets out with .kiroignore has the details.
Where do I stand now?
You’ve now done, in miniature, the loop professionals use: describe → review requirements → review design → execute tasks → verify against requirements → encode conventions in steering. Everything after this is the same loop applied to bigger projects.
Next steps, in order of usefulness: the Core Concepts chapter if you skipped it, then Use Cases to see this loop applied to real situations, then the Practice Exercises to build muscle memory.
Frequently asked questions
How do I install Kiro?
Download the installer for your operating system from kiro.dev and run it. Kiro supports macOS on Intel and Apple silicon, Windows 10 and 11 on 64-bit only with no ARM support, and Linux with glibc 2.39 or later, which covers Ubuntu 24+, Debian 13+, Fedora 40+, Arch, and Mint 22+. On first run you sign in, optionally import your VS Code settings, pick a theme, and open a folder.
Is Kiro free to use?
Yes, there is a free plan. It gives 50 credits a month and access to open-weight models plus Claude Sonnet 4.5. This whole tutorial fits inside it and needs no credit card. Paid plans start at Pro for $20 a month with 1,000 credits. Check kiro.dev/pricing for the current numbers.
Which model should a beginner use?
Leave it on Auto. Auto is a router that picks a frontier model for you, carries the lowest credit multiplier at 1.0x, and never routes to experimental models. Change it only when you have a specific reason, such as needing a very large context window.
Can I use Kiro in VS Code?
Not as a VS Code extension. Kiro IDE is its own application built on Code OSS, the open-source base of VS Code, and it offers to import your VS Code settings, extensions, and keybindings on first run. Kiro CLI works in any terminal, and JetBrains and Zed can drive Kiro's agent through the Agent Client Protocol.
How long does this tutorial take?
About an hour, including the download and the first-run setup. Parts 1 and 2 take roughly twenty minutes. The first spec in Part 3 takes the rest, and it is the part worth slowing down for.
☰ Chapter summary
- Install from kiro.dev (macOS, Windows 10/11 64-bit, modern Linux); sign in with Google, GitHub, AWS Builder ID, or SSO.
- Start in Supervised mode so every change waits for your approval while you learn.
- Use # context providers (#file, #codebase) instead of pasting code into chat.
- Your first spec turns a one-line idea into requirements.md, design.md, and tasks.md that you approve before code.
- A small steering file makes the agent remember your project's basics across sessions.
- You can complete this entire tutorial on Kiro's free tier, no credit card needed.
All chapter summaries are collected on the revision page.
Related chapters
- Start hereWhat is Kiro?Kiro for beginners: a plain-language guide to Amazon's agentic AI development tool, its five surfaces, and what it does that a chatbot cannot.
- Core knowledgeCore ConceptsThe twelve ideas that make up Kiro, each in one paragraph with a link to its full page, plus permissions, checkpoints, compaction, and a surface matrix.
- RecipesCreate Your First Steering FileCreate product.md, tech.md, and structure.md in .kiro/steering/, set inclusion modes in front matter, and check that the agent obeys them.
- RecipesChange the Default ModelChange Kiro's model in the IDE chat input or the CLI, understand what Auto does, and set effort defaults in chat.modelDefaults.
- RecipesKeep Secrets Out With .kiroignoreWrite a .kiroignore file so Kiro's agent never reads .env, keys, or customer data, and know which surfaces honour it today.
- Hands-onAdvanced TutorialA production-shaped workflow that combines specs, steering, hooks, MCP, custom agents, and skills, written for engineers who already know the basics.