A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
An introduction to the world of AI Agents

This repository contains code for both my live course: O'Reilly Live Online Training for AI Agents A-Z and my video series: Modern Automated AI Agents: Building Agentic AI to Perform Complex Tasks
This course provides a comprehensive guide to understanding, implementing, and managing AI agents both at the prototype stage and in production. Attendees will start with foundational concepts and progressively delve into more advanced topics, including various frameworks like CrewAI, LangChain, and AutoGen as well as building agents from scratch using powerful prompt engineering techniques. The course emphasizes practical application, guiding participants through hands-on exercises to implement and deploy AI agents, evaluate their performance, and iterate on their designs. We will go over key aspects like cost projections, open versus closed source options, and best practices are thoroughly covered to equip attendees with the knowledge to make informed decisions in their AI projects.
At the time of writing, we need a Python virtual environment with Python 3.11.
python3.11 --version
python3.11 -m venv .venv
This creates a .venv folder in your current directory.
macOS/Linux:
source .venv/bin/activate
Windows:
.venv\Scripts\activate
You should see (.venv) in your terminal prompt.
python --version
pip install -r requirements.txt
deactivate
If you don’t have Python 3.11, follow the steps below for your OS.
brew install python@3.11
sudo apt update
sudo apt install python3.11 python3.11-venv
python3.11 --version
In the activated environment, run
python3 -m jupyter notebook
Using 3rd party agent frameworks
Intro to SmolAgents - An introductory notebook for HuggingFace's SmolAgents
Intro to Google ADK - An introductory notebook for Google's Agent Development Kit with Google Search and custom tools
Intro to CrewAI - An introductory notebook for CrewAI
Intro to Autogen - An introductory notebook for Microsoft's Autogen
OpenAI
Intro to OpenAI Swarm - An introductory notebook for OpenAI's Swarm
Intro to OpenAI Agents - An introductory notebook for OpenAI's newer Agents SDK
LangGraph
LangGraph Workflows 101 - An introductory notebook for LangGraph making a RAG workflow
Simple ReAct Agents in LangGraph - Simple ReAct Agent with tools in Langgraph.
ReAct Agents in LangGraph + MCP + Tool Positional Bias - Integrating MCP with a ReAct Agent in Langgraph + Testing for Positional Bias
Simple MCP Integration - Connecting a ReAct Agent to an MCP server for tool use
LangGraph Agents playing Chess - An implementation of two ReAct Agents playing Chess with each other
LangGraph Middleware - Chat compression, guardrails, and more!
Reasoning LLM Agents - Using reasoning-capable LLMs (e.g. o1, o3) as ReAct agents
Evaluating Agents
Evaluating Agent Output with Rubrics - Exploring a rubric prompt to evaluate generative output. This notebook also notes positional biases when choosing between agent responses.
Evaluating Tool Selection - Calculating the accuracy of tool selection between different LLMs and quantifying the positional bias present in auto-regressive LLMs. See the additions here for V3 + DeepSeek Distilled Models and here for DeepSeek R1 and here for Llama 4
Multi-Agent Systems
Parallel Node Execution - Running LangGraph nodes in parallel with fan-out/fan-in patterns
Dynamic Agent Network - A dynamic multi-agent network where agents can route to each other using a generic handoff tool
Supervisor Pattern - A supervisor agent that delegates tasks to specialized sub-agents
Building our own agent framework
First Steps with our own Agent - Working towards building our own agent framework
See Squad Goals for a very simple example of my own agent framework
Modern Agent Paradigms
Plan & Execute Agents - Plan & Execute Agents use a planner to create multi-step plans with an LLM and an executor to complete each step by invoking tools.
Reflection Agents - Reflection Agents combine a generator to perform tasks and a reflector to provide feedback and guide improvements.
Using open source Qwen VL 72B to grab bounding boxes of elements
Amazon's Nova Act for Browser Use in Action
python nova_apt.py --caltrain_city "Dogpatch" --bedrooms 2 --baths 2 in the notebooks directoryComputer Use with Reasoning LLMs - Choose a reasoning LLM and let it try to use my machine by pointing and clicking (🚨WARNING THIS CODE WILL ALLOW AN AI TO USE YOUR LOCAL MACHINE🚨)
Computer Use Reasoning Agent - A LangGraph-based agent for GUI automation with PyAutoGUI and vision models (🚨WARNING THIS CODE WILL ALLOW AN AI TO USE YOUR LOCAL MACHINE🚨)
Sinan Ozdemir Sinan is a former lecturer of Data Science at Johns Hopkins University and the author of multiple textbooks on data science and machine learning. Additionally, he is the founder of the recently acquired Kylie.ai, an enterprise-grade conversational AI platform with RPA capabilities. He holds a master’s degree in Pure Mathematics from Johns Hopkins University and is based in San Francisco, CA.
A trilingual (繁中 / English / 简中) learning roadmap for agentic AI: from LLM basics to multi-agent systems, with 240+ cura
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio