The visual masterclass your coding agents deserve. Anatomy, ReAct & ReWOO, 15+ frameworks, MCP/A2A protocols, and five runnable examples — every concept animated.
python examples/minimal_react_agent.py
Every framework is a different harness around the same loop: reason, act, observe, repeat. Learn the model once and read them all.
An assistant answers. An agent reasons, acts, and self-corrects toward a goal. These are the six muscles that make the difference.
Break a goal into steps and decide what to do next from the current state.
Call tools, APIs, and code — turning thoughts into real-world side effects.
Read tool results and environment feedback to ground the next decision.
Sequence multi-step work, with ReWOO-style upfront plans when it helps.
Hand off to other agents over A2A — single brain or a coordinated fleet.
Critique its own output, retry, and pass eval gates before finishing.
The two dominant loops. ReAct interleaves thought and action; ReWOO plans everything first, then executes. Watch both run.


Eighteen diagram GIFs and seven terminal walkthroughs. No static slides — every idea animates.




The minimal ReAct agent runs out of the box. Then graduate to LangGraph, CrewAI, the OpenAI SDK, and typed Pydantic AI agents.
# A tiny ReAct loop — reason, act, observe, repeat def run(goal): state = {"goal": goal, "scratch": []} while not done(state): thought = reason(state) # LLM picks next action result = act(thought.tool) # call a tool state["scratch"].append(observe(result)) return finalize(state) if __name__ == "__main__": print(run("What's 17% of 2,480?"))
Grab the ecosystem repo with every guide and asset.
git clone https://github.com/Ayush7614/agentic-ai-ecosystem.gitCreate a venv inside the masterclass guide folder.
cd guides/ai-agents-masterclass && python -m venv .venvLaunch the minimal ReAct agent — no API key needed.
python examples/minimal_react_agent.pyThirty-five parts, five frameworks, every concept animated. Your agents deserve a real mental model.