50%
Chapter 1 of 9 ~4 min read

Welcome & Choose Your Path

Why this curriculum exists, what's inside, and three paths through it.

Start here

Let's build your first agent — in about 10 minutes.

You don't need to read this page top to bottom. Open the Playground in another tab, follow the three steps below, and come back here when something doesn't make sense. The vocabulary is easier to absorb after you've broken something with it.

Important — read this first

What is AgentSwarms?

AgentSwarms is a hands-on learning platform for Agentic AI. It teaches you how AI agents work — prompts, tools, RAG, memory, guardrails, multi-agent orchestration — by letting you build and test them live in your browser. No local setup, no API keys to start.

What it can do

  • Teach you the core concepts behind every major agent framework
  • Let you prototype agents and swarms with real models in a safe sandbox
  • Give you pattern literacy — routers, loops, tool-use, evals, cost control — so you recognise them in any SDK

What it is not

  • It is not a production deployment platform — you won't ship customer-facing agents from here
  • It does not replace cloud-specific SDKs, IAM policies, or enterprise compliance tooling

How it prepares you for production

Every concept you learn here maps directly to production agent platforms. Once you're comfortable building agents in AgentSwarms, the next step is deploying them on services like AWS Bedrock Agents, Google Cloud Vertex AI Agents, Azure AI Agent Service, OCI Generative AI Agents, or open-source frameworks like LangGraph and CrewAI. The patterns are the same — system prompts, tool schemas, retrieval, orchestration, guardrails — only the deployment target changes. AgentSwarms gives you the transferable mental model so you're not starting from scratch on any of them.

Your first 10 minutes
  1. 1

    Talk to a model. See what raw output looks like.

    Open the Playground and ask: "Plan a 3-day Lisbon trip for two people who love food and walking." That's it. No tools, no memory, no swarm — just you and a model. Notice the response is confident, well-formatted, and has no idea what's actually open this weekend.

    Open the Playground
  2. 2

    Give it a job and a personality.

    Now create an Agent: same model, but with a system prompt like "You're a skeptical travel planner. Always ask one clarifying question before suggesting anything." Send the same trip request. The reply changes shape — and that's the entire idea behind agents in one move.

    Create an agent
  3. 3

    Come back and read whichever section confused you.

    Wondered why the agent forgot what you said two turns ago? That's memory. Wondered why it can't actually check restaurant hours? That's tools. The chapters below answer those questions in roughly the order they come up.

What you're looking at

AgentSwarms is two things in one place: a playground where you actually build agents (left sidebar) and a reference book that explains what you're building (this page). Most chapters end with a "Try it in the lab" button that drops you into the matching tool with a sensible default loaded.

What it isn't

It isn't a video course you watch beginning-to-end. It also isn't a list of vocabulary you have to memorise — if a term appears once in passing and you don't reach for it again, you don't need it. Skim, build, look things up. That's the whole loop.

Loading your progress…
Pick your path

Three ways through this curriculum

Field manuals · Read these if you want senior depth

Five field manuals sit at the end of Chapters 3, 4, 5, 6, and 7.

The body of each chapter teaches you the vocabulary and the happy path. The field manuals — Foundations, Engineering Rigor, SQL & BI, Production & Business, and RAG & Frameworks — go one level deeper into the internals that surface in real incidents, real interviews, and real architecture reviews: tokenization economics, KV-cache math, schema-linking failure modes, EU AI Act obligations, Reciprocal Rank Fusion, embedding lifecycle, framework lock-in. Each section is long-form prose with worked numerical examples and primary-source citations. If you only have time for one pass through this curriculum, the manuals are the difference between knowing the words and knowing the system.

Weekend 1

Total Beginner — 'I've used ChatGPT, that's it'

  1. 1Read concept 01 (Prompts) — try changing the system prompt of a template
  2. 2Read concept 02 (RAG) — upload a PDF, ask 5 questions
  3. 3Skim concept 03 (Tools) — run the demo Research agent
  4. 4Stop. You now know more than 90% of people talking about agents.
Week 1-2

Builder — 'I've shipped a chatbot, want to go deeper'

  1. 1All 6 concepts, in order, do every example
  2. 2Fork a template, swap models, compare traces
  3. 3Build your own swarm with 3 agents
  4. 4Add guardrails + an HITL approval gate
  5. 5Write your first 10-case eval suite
Ongoing

Advanced — 'I'm taking agents to production'

  1. 1Compare 3 providers on the same eval set — pick by cost+latency, not vibes
  2. 2Build a multi-tenant RAG with namespaced vector stores
  3. 3Wire OpenTelemetry from your traces into your APM
  4. 4Design a HITL approval flow with <2-min p95 latency
  5. 5Run shadow-mode evals on every prompt change