Skip to main content

Scrimba AI Engineer Path

Quick verdict. For a JS dev wanting to ship LLM features: 11.4 hours, agents/RAG/MCP/Vercel AI SDK, the smallest career path on Scrimba and the fastest on-ramp it has.

Path size, framed honestly. The AI Engineer Path is the smallest and fastest-moving on Scrimba. It runs 11.4 hours today, and new modules ship as the tooling evolves (the Intro and Deployment modules already carry an "updated" tag; MCP and Context Engineering were added recently). If you already ship in TypeScript, this is your on-ramp. It is not a complete AI curriculum yet.

Realistic time budget. A focused weekend or roughly two weeks at an hour a day clears the lesson runtime. Add a small portfolio project on top (a retrieval app, a tool-using agent, a Cloudflare deploy) and budget another week.

Last reviewed: May 28, 2026. Duration, lesson count, and modules verified against Scrimba's live course page.

The AI Engineer Path

Pro

Agents, RAG, MCP, Vercel AI SDK, embeddings, Cloudflare deployment, and multimodal patterns. JS-first, no PyTorch.

Duration: 11.4 hrsLevel: Intermediate9 modules257 lessons
View on Scrimba (opens in a new tab)
Who this is for, and who should skip

Take it if you ship JavaScript or TypeScript today and want the shortest credible on-ramp to agents, RAG, and MCP inside the apps you already build. Skip it if your goal is research, model training, or a Python-first ML track. Python is the dominant language in AI/ML, and this path does not pretend otherwise; Python learners should look at DeepLearning.AI, fast.ai, or the Hugging Face course instead. Also skip if you do not yet know React and basic web app structure; start with the Frontend or Fullstack path first.

What it actually is. Roughly 11.4 hours of interactive lessons that teach a working JavaScript developer how to wire LLMs, agents, retrieval, and the Model Context Protocol into web apps. Applied AI engineering for people who already ship code, not a data science degree.

The path is taught by Scrimba's in-house instructors. Per Borgen, who runs Scrimba, described the structure on the Scrimba Podcast like this: "It starts with Tom Chant, our teacher, who takes you through the AI engineering basics, and that's based upon the OpenAI APIs because that's the most common ones you'll use out in the industry." After that, Borgen says, "we take a deep dive into AI agents, building these features or products that can act on your behalf, not just generate text back to you." Arsala Khan teaches the Open Source Models and Context Engineering modules; Bob Ziroll and Guil Hernandez contribute later sections.

This review covers what the path actually contains, where it fits in the JS vs Python debate for AI engineering in 2026, and the limits of an 11-hour course in a field that ships breaking changes weekly. Pro is required. Live prices, including regional discounts, are at scrimba.com/our-pricing.

What the path actually covers

The marketing copy lists agents, RAG, and MCP. Here is the actual module breakdown, with the framing that matters once you start clicking through:

ModuleLengthWhat you really do
Intro to AI Engineering (updated)~2.4 hrsOpenAI API basics, key handling, prompt structure. Taught with Tom Chant.
Deployment (updated)~52 minOne end-to-end deploy via Cloudflare Workers.
Open-source ModelsincludedHugging Face APIs and JS interop, with Arsala Khan.
Embeddings and Vector Databases~95 minThe data side of RAG: what gets stored, what gets queried.
Agents~117 minTool-calling loops, retries, where they fail in production.
Context Engineering~58 minToken budgets, system prompt design, what to send vs. what to pay for. Taught by Arsala Khan.
Vercel AI SDK~113 minStreaming UI, useChat, the patterns Vercel has propagated across the JS ecosystem.
Model Context Protocol~37 minMCP: the emerging standard for exposing tools and data to models.
Multimodality~62 minImages and audio inputs alongside text.

Total: about 11.4 hours across roughly 257 lessons (Scrimba counts each short scrim as a lesson, so the number is large relative to runtime).

The order is the useful part. You learn the API surface first, deploy something early, then build the data layer for retrieval, then add tool-calling, then learn to manage context across it all. That is roughly the order a real project is built in, which is rare for an introductory course.

Why a JavaScript-first AI path matters (and where it pinches)

Python is the dominant language for AI and ML. Scrimba does not pretend otherwise. Even Scrimba's own How to Become an AI Engineer roadmap calls Python "the foundation of AI engineering" and lists LangChain, RAG, and PyTorch as the most common AI engineer skills on LinkedIn. The 2025 Stack Overflow Developer Survey put Python usage at 57.9% of professional developers, and most published AI research code is Python.

So why a JS-first path? Because the people building AI features in production web apps are mostly the same people who were building those web apps last year. The Vercel AI SDK, LangChain.js, and the official OpenAI and Anthropic JS clients exist precisely because that is where the deployment surface lives. The New Stack's Tech Hiring in 2026 piece notes that AI skills now appear in 42% of software job descriptions, up from 8% in 2022, and that the demand split is roughly between research-track ML roles (Python-heavy, PhD-friendly) and applied AI engineering roles (full-stack, integration-heavy, often JavaScript on the deployment side).

Tom Chant frames the motivation honestly on the Scrimba Podcast: "Most people are learning TypeScript not because they specifically had a use for it themselves, but because it makes them more employable. I think with AI it's the complete opposite. You're learning AI because it gives you just so much more power." If you already write TypeScript daily and you want to add LLM features to the apps you already ship, this path takes you from "I have read about agents" to "I have built one" without forcing a Python detour.

The pinch is real, though. If your end goal is a research-engineer role at a frontier lab, this path is not enough on its own. You will need Python, math, and exposure to model training, not just inference and orchestration.

The 2026 AI engineer job market, with real numbers

A lot of AI salary content circulates without sources. The honest picture from primary trackers:

  • levels.fyi lists the median AI/ML software engineer in the US at roughly $245,000 total compensation, with the standard caveat that levels.fyi skews toward higher-paying companies because that is who self-reports.
  • levels.fyi's dedicated AI Engineer title page shows mainstream-employer comp clustering in the $134k-$193k range, with frontier labs pulling the top of the distribution dramatically higher. OpenAI L2 to L6 runs from roughly $251k to $1.28M total comp, median around $555k. That bifurcation, enterprise vs. frontier lab, is the most important shape to understand in the current market.
  • PwC's 2025 Global AI Jobs Barometer found a 56% wage premium for AI skills, up from 25% the year before.
  • Stack Overflow's 2025 Developer Survey confirmed that AI tool fluency now correlates with measurable comp lift across general software roles, not only specialised ML titles.

What employers actually want from candidates targeting the applied side (the side Scrimba's path serves) is a small portfolio: a retrieval app over real documents, a tool-using agent with at least one external API, a deployment that handles streaming responses, and an honest writeup of where the system failed and what you did about it. The Scrimba path is sized to give you the components for exactly that. It is not sized to give you a research portfolio.

How the path compares to the obvious alternatives

vs. DeepLearning.AI short courses. DeepLearning.AI's catalog is the gold standard for free, focused AI courses, mostly Python notebooks against OpenAI or Anthropic APIs. If you are comfortable in Python and want depth on one topic at a time, start there. Scrimba's advantage is sequence and JavaScript; DeepLearning.AI's is depth, instructor pedigree, and price.

vs. official Anthropic and OpenAI cookbooks. The Anthropic Cookbook and OpenAI Cookbook are reference implementations from the vendors. They are not pedagogical and assume you already know the language. Scrimba's path gives you scaffolding so the cookbooks make sense afterward.

vs. Python-first ML tracks (fast.ai, Hugging Face course, Coursera ML). Those teach you how the models work, not just how to call them. If your aim is to train, fine-tune, or interpret models, start there. The Scrimba path treats models as services.

Honest limits

  • Eleven hours is small. The Frontend Path is roughly 82 hours, the Fullstack Path is closer to 108. The AI Engineer Path is the smallest path on the platform by a wide margin. That is partly because the discipline is young and partly because Scrimba is still building it out. Treat it as a structured first pass, not a complete curriculum.
  • The field moves fast and some parts will date. MCP is still emerging. Vercel AI SDK had breaking changes through 2025. Whatever is recorded today will need a refresh in twelve months. Scrimba does re-record modules (the Intro and Deployment modules carry an "updated" tag at the time of writing), but you should expect to chase release notes between updates.
  • No math, no statistics depth. You will finish without knowing why a particular embedding model produces 1536 dimensions or what a softmax actually does. For applied work that is often fine. For interviews at ML-heavy companies it is not.
  • Web-app focused, not ML research. Inference and orchestration only. Training, evaluation, and fine-tuning beyond a surface mention are out of scope.
  • You need Pro. The free Intro to AI Engineering tutorial with Thomas Chant is available without paying (free intro course), but the full path lives behind Pro.

Who should take it

Take this path if you ship JavaScript or TypeScript today and you want the shortest credible on-ramp to building agentic, retrieval-backed features in the apps you already work on. The sequence is well chosen, the JS focus is honest about its tradeoffs, and the deploy module gets you to a live URL instead of leaving you in a notebook.

Skip it if your goal is research or model training (use Python tracks), if you do not yet know React or basic backend patterns (do the Frontend or Fullstack path first), or if you want a degree credential rather than a portfolio.

Try before subscribing

You can preview the format on the free intro AI scrim without an account. Click into Tom Chant's code, change something, run it. If the scrim format clicks for you, the rest of the path follows the same shape.

Courses in this path

These standalone AI courses sit alongside or feed into the path, roughly beginner to advanced. Read any review or take just one:

Ship AI features on top of your web skills

Preview the free AI intros on Scrimba to test the format. Pro unlocks the full AI Engineer Path and the advanced modules.

Try Scrimba Free (opens in a new tab)