Skip to main content
← Career Tracks

Applied / Agentic AI Engineer

Software engineers have wired up third-party APIs for two decades. What changed recently is that the API can now reason, call other tools, and act mostly on its own. That new shape of work got its name from an essay, not a job posting: Shawn "swyx" Wang’s 2023 piece "The Rise of the AI Engineer" argued this would become its own discipline, separate from ML research, and the label stuck. What never stuck was any agreement on what to call it. Postings for the same job now scatter across AI Engineer, Applied AI Engineer, GenAI Engineer, LLM Engineer, Agent Engineer, and RAG Engineer, sometimes at the same company for the same team. This guide treats them as one role, the person who builds RAG pipelines and tool-using agents into real products, and walks through what the job actually looks like day to day, who gets hired, what to learn first, and how the interview goes, grounded in real postings, comp data, and firsthand interview accounts, not guesswork.

$150K–$245KTypical base salary
Often 1–3 yrs; 4–8+ yrs at frontier labsExperience floor
Minimal to none, a build role, not a deployment roleTravel
System design & agent architecture, not LeetCodeInterview weight

What the job actually is

Beyond the elevator pitch, this is a product engineer whose core building blocks are a foundation model API, a retrieval layer, and a set of tools the model can call, not a researcher training models from scratch, and not a data scientist running offline experiments in a notebook. The shorthand that keeps showing up across sources: drop the word “Applied” and you are describing someone building the models; keep it, and you are describing someone building on top of them.

That distinction sounds clean until you look at the job titles actually doing this work. Plenty of “AI Engineer” postings are really MLOps roles in disguise, and plenty of “Machine Learning Engineer” postings are really this job wearing an older label.

Background: The Rise of the AI Engineer by swyx, and The AI Job Title Reference Guide 2026 by Ivan Turkovic.

Applied/Agentic vs. the adjacent titles

Is this really the role you want?

The title chaos runs both directions: plenty of Data Scientist and classical ML Engineer postings quietly describe this same work too. Here is the actual gut check, by scope and primary skillset:

RoleScopePrimary skillset
Data ScientistAnalysis and experimentation, often stops at a notebook rather than a shipped featureStatistics, pandas, classical ML
ML Engineer (classical)Trains, tunes, and serves custom models from scratch, owns the training pipeline itselfDeep learning, GPU training infra, MLOps
Applied / Agentic AI EngineerBuilds product features on top of existing foundation models, RAG, tool-using agents, orchestration, and ships them to productionAPI integration, retrieval, evals, agent frameworks

Compensation for this title cluster now regularly outpaces classical ML Engineer postings at the same company, a reflection of how far demand has outrun supply for people who can ship a reliable agent rather than train one.

Assuming this still checks out as the role you actually want, the next question is blunter: what does the job look like once you are in it?

A day in the life

Per postings and interview accounts, the split runs roughly half building and shipping, a third on evaluation and debugging, and the rest on cross-functional work with product and support. The pitch companies make to candidates: getting a demo working against a clean example is maybe a fifth of the job. The rest is retrieval that breaks on real documents, a tool call that loops, and an eval set that has to catch a regression before a user does.

Building & shipping50%
Writing the actual RAG and agent code: retrieval logic, tool definitions, orchestration, and endless prompt iteration.
Evaluation & debugging30%
Reading agent traces, tracking down why a tool call looped or retrieval missed, tightening the eval set that gates every change before it ships.
Cross-functional work20%
Working with product and design on what the agent should actually do, and with support on what real users are hitting in production.

Most of the job, in other words, happens after the first working prototype, not before it. That is the real reason this hiring bar looks nothing like a typical SWE loop, starting with who even gets in the door.

Who actually gets hired

This is not, in practice, a title you walk into straight out of a bootcamp, despite how much beginner-facing content frames “AI Engineer” as an entry-level path. Real experience floors, pulled directly from current postings and interview guides:

CompanyExperience floor
Anthropic (Applied AI Engineer)4+ yrs typical, 3+ yrs on the FDE-flavored entry track, 8+ yrs for senior/Labs roles
Sierra (Agent Engineer)Senior-SWE bar, roughly 5+ yrs for leadership-leaning openings
General market / product startups1–3 yrs typical
Select startup apprentice programs0–1 yr, a named but uncommon exception

A few named exceptions to that floor:

Backend or full-stack transition

The single most common path into this title: a working software engineer who added an LLM API, a vector database, and an agent framework to an existing toolkit, not a research background.

Data science or classical ML transition

Data scientists and classical ML engineers moving toward product-facing work, trading notebook experimentation for a shipped feature with real users.

Founding or early engineer at an AI-native startup

Someone who already built the eval harness and the agent because the startup needed one, not because a course taught them to, the same pattern of doing the job before it had a name that FDE hiring rewards too.

The single best-predictor background across sources: someone who already shipped a feature using an LLM API at their current job, on their own initiative, before the title existed on their team. Other common entry paths: backend or full-stack engineering, data science, classical ML, or a lateral move from a data platform or analytics engineering role, since all three already carry the muscle of turning something messy into something reliable.

If any of that describes you, the next question is what to actually go learn. The technical bar, unlike the hiring bar, is fairly explicit in the postings.

Skills you’ll actually need

Five categories show up again and again, roughly in this order of how often postings check for them.

Languages: Python is the overwhelming default, with TypeScript or JavaScript a common second for teams building an agent-facing UI alongside the backend.

Retrieval and data: vector databases (pgvector, Pinecone, Weaviate, or similar), embedding models, chunking strategy, and hybrid search combining keyword and semantic retrieval.

Orchestration and agent frameworks: LangGraph, LangChain, CrewAI, DSPy, or a raw tool-calling loop written by hand. Most postings care less about the specific framework than whether you understand what it is actually doing underneath.

Evaluation: precision and recall at k, LLM-as-judge, and a regression eval set that gates every change before it ships, cited repeatedly across sources as the actual differentiator between a demo and a shipped feature.

Cloud and deployment: one major cloud provider, Docker, and basic observability or tracing (LangSmith, Langfuse, or an equivalent), enough to see what an agent actually did in production, not just what it was supposed to do.

The category that actually separates candidates isn’t technical at all: evaluation discipline, catching a regression before a user does, plus knowing when not to add another agent or another tool. The simplest system that solves the problem beats the most sophisticated one almost every time this comes up in an interview.

Weighting differs by company: Sierra leans hardest on debugging an existing agent codebase and live system design, Anthropic weights evals and a customer-conversation simulation heavily enough that it reportedly filters out a majority of candidates who already passed the coding stages.

That’s a lot to learn cold. Here is specifically which parts of it this curriculum already covers, and which parts it deliberately doesn’t.

Curriculum mapping

How Few-Shot Academy gets you there

Intermediate

The chunking, retrieval, tool-use, and eval depth this exact job is built on, arguably the core of the role rather than a supporting skill.

Advanced

Multi-agent orchestration, guardrails, observability, and production concerns: the difference between a demo agent and one a company will actually ship.

What this curriculum doesn’t cover

  • Fine-tuning and training custom models, this curriculum treats foundation models as an API you call, not something you train yourself
  • Production-scale MLOps and GPU serving infra: Kubernetes-based model serving, distributed training, GPU cluster scheduling
  • Classical ML fundamentals some postings still test for: regression, classification, and feature engineering outside the LLM/agent context
  • General production software-engineering fundamentals most postings assume as a floor (this curriculum assumes zero prior CS background by design, it is the AI-specific layer, not a CS-degree substitute)
  • Live, ambiguous system-design performance under interviewer pushback. A chapter can teach the concepts; it cannot teach the improvisation.

With the technical bar covered, or at least mapped, the remaining unknown is the interview itself, which looks unlike almost any other engineering loop.

The interview

This isn’t a standard SWE loop either. System design and agent architecture carry the most weight, not raw coding speed, at both Sierra and Anthropic, the two companies with the most documented interview processes for this exact title.

  1. 1

    Recruiter screen

    Standard fit and background conversation, sometimes including a quick check on how you think about AI reliability and safety.

  2. 2

    Coding / technical round

    LLM-adjacent coding: a retrieval scorer, a token-budget allocator, a tool-use orchestrator, or a debugging pass through a buggy agent codebase.

    What to expect, how to prepare, and two things to have ready

  3. 3

    System design round

    You design an agent or RAG system live, often on a whiteboard or in a tool like Excalidraw, while the interviewer pushes on your architecture and trade-offs.

    Highest weight in the loop, the round that actually decides most offers

    The framework, plus 3 full end-to-end walkthroughs

  4. 4

    Behavioral round

    Shipping under ambiguity, handling a regression a user found before your eval set did, and working with product and support on what the agent should actually do.

    Sample questions and how to structure your answers

  5. 5

    Take-home or live build (some companies)

    A 3–4 hour build against a fictional customer or product brief, common at Sierra and Anthropic specifically.

Timelines vary: Sierra reports an average of about 14 days from screen to offer, while Anthropic’s loop typically runs several weeks given the number of stages. The most-cited failure mode is treating the system design round like a whiteboard algorithm problem instead of a real architecture conversation with trade-offs.

Once you’ve cleared that, the practical question gets a lot more mundane: what do you actually search for, and where?

Actually landing one

Search for these titles, all of them describe some version of the same job, and read the responsibilities section rather than the title itself; use the comparison table earlier as your gut check.

AI EngineerApplied AI EngineerAgentic AI EngineerGenAI EngineerLLM EngineerAgent EngineerRAG EngineerAI Software EngineerFounding Engineer (AI)

Once you know what to search for, here’s where those postings actually live:

Direct career pages

Anthropic, OpenAI, Sierra, Scale AI, and most well-funded startups building products on top of foundation models.

Search by responsibilities, not title

Since the same job hides under six or more overlapping titles, search for RAG, tool-using agents, evals, and orchestration in the responsibilities section rather than filtering by title alone.

Job boards

Wellfound’s AI-tagged listings, YC’s Work at a Startup, and a responsibilities-based search on LinkedIn rather than a title-based one.

Recruiting agencies

KORE1 has started running dedicated agentic AI engineer searches specifically, a signal of how fast this title cluster is growing, not necessarily a recommendation to use them.

No standardized cross-company certification exists for this title, the role moves too fast for a testable exam body to keep up. What actually helps as a baseline: a cloud AI certification like AWS Certified AI Practitioner or Azure AI Engineer Associate (AI-102), paired with a public, deployed project that actually uses retrieval and a tool-calling agent, not just a wrapped chat completion call.

Every source is emphatic that certs are a distant second to a shipped project and a documented eval set, don’t lead with certs.

One more number before you decide this is worth all that: what it actually pays.

Context, not a headline number

Compensation

SourceRange
Glassdoor, Applied AI Engineer (US)$129,856–$198,385 base (25th–75th pct), avg $159,392
Levels.fyi, AI Engineer (title page)$153,750 median base
Levels.fyi, ML/AI Software Engineer focus$245,000 average total comp
KORE1, 2026 Agentic AI Engineering Hiring Survey$185K–$320K base specifically for agentic AI engineer postings
ZipRecruiter, AI Engineer (general market)~$140K–$185K base typical

Bottom line: base clusters $150K to $245K broadly across the general market, with the agentic-specific high end and frontier-lab total comp both running well above that as outlier headline numbers, not the median reality.

Go deeper