AgentKits

The YouTube Channels That'll Teach You AI Agent Development (No PhD Required) (Updated June 2026)

The channels we'd actually point a developer to in 2026 — grouped by foundations, building, and specific skills — plus a six-week learning path that beats binge-watching.

You don't need a computer science degree to learn how to build AI agents, but you do need the right teachers — and YouTube is full of both excellent ones and hype reels that teach you nothing. We've sorted through them so you don't have to. These are the channels we'd actually point a developer to in 2026, grouped by what they're good for, plus a learning order that beats binge-watching tutorials and building nothing.

One principle before the list, echoed by nearly everyone who's learned this well: don't try to learn everything before you start. Pick one channel, pick one framework, follow a quickstart, and ship something small — a meeting-notes summarizer, a tiny RAG app, a simple research agent. The build-while-you-watch loop beats the "watch 20 hours then try" approach by a wide margin.

For the foundations (understand the model)

Andrej Karpathy teaches LLM internals from first principles. His "Let's build GPT" walkthrough is the closest thing to understanding what's actually happening inside the models you call. You don't need to write the code yourself the first time — just watch and absorb the mental model. 3Blue1Brown (Grant Sanderson) is the companion to that: his neural-network and transformer series turn the underlying math into animations that actually make the ideas click. Reach for these when you've built a few agents and started wondering why prompt phrasing has the effects it does. IBM Technology rounds out the conceptual tier with short, clear explainers on agents, RAG, ReAct, and chain-of-thought — useful when you want a crisp definition rather than a code walkthrough.

For building agents (write the code)

Cole Medin is the standout for production agents in 2026. The focus is on agentic workflows businesses actually pay for — research agents, support agents, content pipelines, integration-heavy automations — and the architecture diagrams he draws before writing code are worth the watch even if you skip the implementation. Start with his "AI agents from scratch" material, then a LangGraph deep-dive. The official LangChain channel is underrated: produced by the core team, it teaches idiomatic patterns for retrieval, multi-step agents, evaluation, and the LangGraph state-machine model the way the maintainers intend. Since LangChain/LangGraph is the most widely deployed agent stack in 2026, this is canonical. Sam Witteveen remains one of the most comprehensive hands-on LangChain teachers, with detailed Python walkthroughs across experience levels.

For specific skills

AssemblyAI goes deeper than most vendor channels because it treats the content as engineering education, not marketing — building voice agents, real-time transcription, function calling across providers, and rigorous evaluation methodology. The voice and multimodal patterns (voice → LLM → voice) are uniquely valuable, since most tutorials are text-only and multimodal interfaces are increasingly the production default. Mervin Praison is good for fast, practical agent-framework comparisons when you're deciding between CrewAI, LangGraph, and the rest. David Ondrej covers more low-code and business-oriented agent builds, a useful counterweight if you're not living in a codebase all day.

A learning path that works

PhaseWatchGoal
Weeks 1–2: foundationsKarpathy "Let's build GPT" + 3Blue1Brown transformersUnderstand what's inside the model (don't code yet)
Weeks 3–4: first agentCole Medin "agents from scratch" + LangChain quickstartShip one small working agent end-to-end
Weeks 5–6: depthLangChain LangGraph playlist + AssemblyAI evalsAdd state, tools, and evaluation
OngoingIBM Technology + Mervin Praison for new patternsKeep current without chasing hype

The mistake most AI-curious engineers make is jumping straight to LangChain on day one without understanding the model underneath. A better order is foundations first, then build, then add depth. And the meta-advice that matters more than any channel choice: pick two channels, ship something small, and let your repo — not your watch history — be the proof you learned something.

From watching to building safely

Tutorials teach you to make an agent work. They rarely teach you to make one safe to deploy, which is the harder and more valuable half. Once you've built a few agents from these channels and you're thinking about putting one in front of real users or real data, the next thing to learn is the boundary layer — what the agent is allowed to do, what its worst-case action is, and how a human stays in the loop. For that, see our guide to designing safe AI agents, and for the bigger picture of how the pieces fit together, the agent engineering stack.

Frequently asked questions

Keep reading

← All posts