Pick a real workflow from your team, choose a workflow pattern, and design the full agent using the Agent Design Canvas.
โฑ 45 minutes + 30 minutes presentationsThis is the capstone exercise of the workshop. You'll work in teams to design an AI agent for a real workflow from your own team โ using everything you learned on Day 2 (prompt engineering) and Day 3 (agent patterns).
| Step | What you do | Duration |
|---|---|---|
| Step 1 | Pick your workflow | 5 min |
| Step 2 | Choose a workflow pattern | 5 min |
| Step 3 | Design the agent (fill the canvas) | 25 min |
| Step 4 | Build a prototype skill in Kiro | 10 min |
| Presentations | Each team presents (5 min each) | 30 min |
Choose a real workflow from your team that you'd like to automate. Use the homework you identified at the end of Day 2, or pick from these ideas:
| Workflow | What the agent would do | Pattern |
|---|---|---|
| Invoice processing | Extract โ validate โ flag mismatches โ route for approval | Chaining |
| Fraud monitoring | Analyze from 3 angles โ majority vote โ case file | Parallelization |
| Customer complaints | Classify type โ route to correct team โ draft response | Routing |
| Credit applications | Assess โ auto-decide if small โ human review if large | Orchestration |
| Regulatory updates | Scan new circular โ assess impact โ notify compliance | Chaining |
| Monthly reporting | Pull data โ generate narrative โ create presentation | Chaining |
| KYC verification | Parse documents โ extract fields โ check against rules | Chaining |
| Merchant onboarding | Review application โ risk check โ compliance check โ approve/reject | Orchestration |
Match your workflow to one of the four patterns from the Day 3 presentation:
| Pattern | How it works | Best for |
|---|---|---|
| Chaining | Step A โ Step B โ Step C (sequential) | Linear processes: extract โ validate โ report |
| Parallelization | Run 3 analyses simultaneously โ combine | Multi-perspective reviews: risk + product + compliance |
| Routing | Classify first โ route to correct workflow | Incoming documents/requests with multiple types |
| Orchestration | Complex flow with decision points + human review | High-stakes processes with approval thresholds |
Use Kiro to help you design the agent. Paste this canvas template and ask Kiro to help you fill it in:
Pick the most important step from your workflow and build it as a working SKILL.md in Kiro:
Each team presents their Agent Design Canvas to the group (5 minutes per team):
| Cover this | Time |
|---|---|
| The problem: What workflow are you automating? How long does it take today? | 1 min |
| The design: Which pattern? What are the steps? What skills are needed? | 2 min |
| The guardrails: What must the agent NOT do? When does a human take over? | 1 min |
| The impact: How much time/cost does this save? What's the success metric? | 1 min |
Everything you built today is portable. Here's how the concepts translate:
| Concept | In Kiro (workshop) | In Claude Cowork (your desk) |
|---|---|---|
| Skills | .kiro/skills/*/SKILL.md | SKILL.md in project folder |
| Always-on rules | .kiro/steering/*.md | CLAUDE.md project instructions |
| Auto triggers | Hooks (.kiro/hooks/) | Scheduled tasks (built-in) |
| External tools | MCP servers | Cowork plugins (Slack, email) |