Module 03 — AI Agents
Time estimate: 4 hours total
Prerequisite: Module 01 — Getting Started
What you’ll be able to do after Module 03
Section titled “What you’ll be able to do after Module 03”- Build a Python AI agent that uses Claude as its reasoning engine
- Define and connect tools so the agent can take real-world action (search the web, send emails, read databases, call APIs)
- Design system prompts that turn a generic LLM into a specialized assistant for one specific job
- Handle errors, retries and edge cases so your agent is reliable enough to deploy
The mental model
Section titled “The mental model”A web app is a thing your user navigates. An agent is a thing that decides what to do.
You give it a goal (“research this prospect, summarize their last 3 funding rounds, draft an intro email”), give it tools (web search, your CRM, Gmail) and let it figure out the sequence. The agent reasons, calls tools, reasons on the results, calls more tools and produces an answer.
Most “AI products” in the market right now are agents wrapped in a UI. After Module 03, you can build those.
Your executive builds in this module
Section titled “Your executive builds in this module”Three agent builds, executive-flavored:
- The prospect research agent — give it a name and company, it pulls news, funding, LinkedIn profile, recent press, and produces a one-page intel brief in 30 seconds
- The meeting prep agent — takes a calendar invite + attendee names + your CRM history, and produces a one-page “what you need to know before this meeting” doc
- The HR ticket triage agent (or your function’s equivalent) — reads incoming emails, classifies them, routes to the right person and drafts the first-pass response
You’ll build all three. Same architecture, different tools. Once you’ve shipped one agent, you can ship any agent.
Lessons in this module
Section titled “Lessons in this module”- Python agents — The Anthropic SDK, the agent loop, your first working agent
- Tool use patterns — Defining tools, handling results, chaining actions
- Agent architecture — Production patterns: state, retries, observability, multi-agent