Introduction I recently attended an AWS event where we built our first AI agent using the Strands Agents SDK and Amazon Bedrock . The quickstart guide looked simple enough — a few lines of Python, some tools, and a running agent. But the real learning happened in the errors. This article walks you through what I built, every error I hit, and exactly how I fixed them. What We Built A simple AI agent that can: Tell you the current time Perform calculations Count letters in a word Three tools. One agent. Sounds easy. It wasn't — but that's what made it worth writing about. Project Structure Here's the folder structure I used: Agent/ ├── .venv/ ├── agent.py └── requirements.txt Enter fullscreen mode Exit fullscreen mode Setting Up the Environment First, create and activate a virtual environment: python -m venv . venv .…