Skip to content
ISSUE 001·LIVE·03:34 IL
← Journal/2026-06-23·9 min·ai builder

What Is an AI Builder? The Role Nobody Had a Job Title For

AI builders write agents, ship prototypes, and own systems that run while they sleep. Here's what the role actually involves — from someone who does it every day.

By Harel Asaf·AI Builder·Tel Aviv

People ask me what I do. I say I build AI agents. They nod. Then they ask if I do "the ChatGPT thing." That's where the conversation usually stalls.

So let me be direct: an AI builder is someone who takes language models, Claude, GPT-4o, Gemini, whatever is sharp enough for the job, and turns them into systems that do actual work. Not demos. Not slides. Systems that send emails, analyze contracts, route WhatsApp messages, audit codebases, and do it without someone clicking a button every five minutes.

That's the job. Now let me tell you what it actually looks like.

The Title Didn't Exist Two Years Ago

I've been doing this work since before there was a clean label for it. In 2022 I was "a developer who uses AI." In 2023 I was "doing some automation stuff with GPT." In 2024 someone handed me a business card that said "AI Engineer" and that felt closer, but still not quite right.

"AI builder" is the term that fits, and it's fitting because the work is fundamentally about building. Not researching. Not advising from a distance. Building things that run in production and break in production and get fixed at 11 PM when the webhook stops responding.

The role sits at the intersection of three things most people treat as separate disciplines:

1. Software engineering — you have to understand APIs, deployment, state management, error handling

2. LLM systems design — you have to understand how models reason, where they hallucinate, how context windows work, when to use tools vs. when to just prompt harder

3. Product thinking — you have to understand what the person actually needs, not what they asked for

You can't be weak at any of the three. I learned this the hard way building ctxauditor, a tool that reads repositories and surfaces the exact context a developer needs before touching a file. The engineering was the easy part. The LLM systems design, figuring out how to pass 40,000 tokens of repo context without losing coherence, took three weeks of iteration. And the product part, understanding that developers don't want a "context dump" but rather answers to implicit questions they haven't asked yet, that realization rewrote the interface entirely.

What AI Builders Actually Build

Let me get specific, because "AI systems" is vague enough to mean nothing.

Agents. An agent is an LLM given a goal and a set of tools, then left to figure out the path. I've built agents that audit production infrastructure and write Slack summaries, agents that monitor competitor pricing and flag anomalies, agents that run multi-step research pipelines and deliver structured reports. The defining feature isn't intelligence. It's autonomy. The agent acts without being prompted each step.

Pipelines. Not every AI system needs to be agentic. Some problems are better solved with a deterministic sequence: input, classify, route, process, output. I built a pipeline for AI Mafia, a community with hundreds of active members, that processes WhatsApp messages, detects intent, routes to appropriate handlers, and logs everything for analytics. It runs on Cloud Run, handles several hundred messages per session, and has been running reliably for months. Scratch that, it had one bad week when a model API changed response formats without warning. Fixed in four hours once I found it.

Evaluation systems. This one surprises people. A significant chunk of my time goes into building things that measure other AI systems. LLM Cost Lens, one of my prototypes, tracks token usage, model selection, and cost per task across different agent configurations. Without this kind of instrumentation, you're flying blind. You don't know if GPT-4o is actually better than Claude 3.5 Sonnet for your specific task, or just more expensive.

Interfaces. Sometimes the hardest part isn't the AI. It's the surface. A powerful agent with a confusing interface gets ignored. I've learned to think carefully about where outputs land: in a WhatsApp message, in a Google Doc, in a Slack thread, in an email. The format changes everything about whether someone trusts the output.

The Skills That Actually Matter

I want to be honest about what makes someone good at this, because there's a lot of noise in the "become an AI developer in 30 days" content.

Prompt engineering is real, but it's not what people think. It's not about magic words. It's about understanding how a model processes a request, what context it weights, where attention degrades, how to structure instructions so they survive long conversations. I spent two weeks getting ctxauditor's system prompt right. One wrong phrase in the instructions caused it to summarize instead of analyze. That distinction mattered enormously to users.

Context management is the core skill. Language models have context windows. Everything you send them costs money and affects quality. Knowing what to include, what to exclude, how to compress, when to chunk: this is where the real craft lives. I track this obsessively. LLM Cost Lens exists specifically because I was wrong about this for a week. I assumed adding more context always improved outputs. It doesn't. After a certain threshold, more context introduces noise.

Failure modes matter more than happy paths. Agents fail in ways that are hard to predict and embarrassing to explain. I build every system with the assumption that the model will hallucinate something plausible-sounding at the worst moment. That means explicit validation steps, human checkpoints for high-stakes decisions, and fallback behaviors that degrade gracefully instead of silently producing garbage.

Knowing when NOT to use AI. This sounds obvious. It isn't. I've seen systems where someone used an LLM to do something a regular regex would handle in 2 milliseconds at zero cost. I've seen agents introduced where a simple form would have done better. Part of being a good AI builder is having a strong filter for when the complexity is actually worth it.

What the Work Looks Like Day to Day

There's no typical day, but there are recurring patterns.

I spend a lot of time reading. Model release notes, benchmark papers, API changelogs. Not because I'm a researcher, but because the tooling changes fast enough that ignoring it for two weeks means you miss something material. Gemini 1.5 Pro's two-million-token context window, for instance, changed how I thought about entire categories of document analysis problems.

I prototype fast and throw a lot away. Most ideas don't survive contact with real data. I'll build a first version of something in a day, test it on real inputs, and usually discover that the actual problem is different from what I thought. ctxauditor went through four complete architectural rebuilds before the current version.

I write. A lot. Documentation, system prompts, evaluation rubrics, explanations for clients. Writing is not separate from the technical work. It's how I think through what an agent should do and catch the ambiguities before they become bugs.

And I ship. The systems I build are running in production, handling real requests from real people. That accountability keeps the work honest in a way that internal tooling or demo projects don't.

Why "AI Builder" and Not "AI Engineer"

I've thought about this. "Engineer" implies a level of rigor and formalism that doesn't describe most of what I do. Engineers specify systems before building them. They work from requirements. They have review processes.

AI builders often don't have the luxury of that structure. The field moves too fast. The requirements are often unclear because clients don't know what's possible. You're figuring out what can be built and building it simultaneously.

"Builder" also carries a different connotation around ownership. I don't hand off to someone else's team to implement. I own the full stack: design, implementation, deployment, monitoring. The WhatsApp bot for AI Mafia runs on Cloud Run infrastructure I set up and maintain. The prompts, the routing logic, the webhook handlers, all of it.

There's also something honest about "builder" that "engineer" sometimes obscures. I build things. Some of them break. I fix them and build better ones. The cycle is tighter than traditional software and the feedback is faster.

Who Hires AI Builders

The honest answer: anyone with a workflow that involves repetitive judgment calls.

Law firms that review contracts. Marketplaces that moderate listings. Startups that need to process user feedback at scale. SaaS companies that want to add AI-native features without a six-month engineering project. Communities that want intelligent automation in their communication channels.

What these clients have in common is that they have real data, real volume, and a specific task they want done reliably. They're not buying an experiment. They want something that works by the end of the engagement.

The clients I work best with understand that building with LLMs involves uncertainty. Models behave in ways that are hard to predict, APIs change, edge cases surface after launch. They're willing to iterate. They want a partner who can adapt, not a vendor who disappears after delivery.

The Part Nobody Talks About

Building AI systems is genuinely exciting. I mean that without irony. There's something different about shipping a system that can reason, that can handle inputs you didn't anticipate, that can produce outputs you didn't explicitly program.

But it's also, and I want to be clear about this, a lot of mundane work. JSON parsing. Error logging. Retry logic. Rate limit handling. Figuring out why a webhook returns 200 but doesn't actually process. The AI is maybe 20% of the job on a good day. The other 80% is software engineering that happens to have a language model somewhere in the middle of it.

Anyone who tells you AI development is all prompts and magic is selling something. The builders who ship reliable systems are the ones who treat the boring parts with as much care as the interesting ones.

That's what I do. That's what an AI builder is.


FAQ

What is an AI builder?

An AI builder is a developer who designs, builds, and deploys systems powered by large language models, including agents, pipelines, and evaluation tools. Unlike a data scientist or ML engineer, an AI builder typically owns the full stack from system design to production deployment, focusing on practical applications that solve specific business problems.

How is an AI builder different from an AI engineer?

AI engineers typically work within larger teams on ML infrastructure, model training, or platform-level tooling. AI builders tend to work closer to the product layer, designing agent behavior, integrating APIs, and shipping systems that non-technical stakeholders interact with directly. The distinction is partly about scope and partly about working style.

What skills does an AI builder need?

Core skills include LLM API integration (OpenAI, Anthropic, Google), prompt engineering, context management, agent architecture design, backend development (APIs, webhooks, Cloud Run or similar), and evaluation methodology. Strong product thinking is equally important. Knowing what to build matters as much as knowing how to build it.

What kinds of projects do AI builders work on?

Common projects include autonomous agents that handle research or monitoring tasks, pipeline automation for document processing or content moderation, WhatsApp or Slack bots with LLM-powered routing, custom evaluation frameworks for existing AI systems, and AI feature integration for SaaS products.

How long does it take to build an AI agent?

A focused, well-scoped agent can be built and deployed in one to four weeks. More complex multi-agent systems with custom tooling and thorough evaluation typically take six to twelve weeks. The biggest time variables are requirements clarity, how much real data is available for testing, and how many edge cases the agent needs to handle reliably.

Do AI builders write code?

Yes. AI builders write substantial amounts of code, Python primarily, plus whatever the deployment environment requires (Node.js for webhooks, TypeScript for Next.js integrations, shell scripts for infrastructure). Prompt engineering is part of the job, but it happens inside codebases, not instead of them.

What is an AI agent, exactly?

An AI agent is a system where a language model is given a goal and a set of tools (web search, code execution, database access, API calls), then allowed to plan and execute multi-step tasks to reach that goal without step-by-step human instruction. The key property is autonomous action, not just generating text.

How do I hire an AI builder for my company?

Look for someone with a portfolio of shipped systems, not just demos. Ask about failure modes and how they handle them. Request specifics on past projects: what model, what architecture, what scale, what broke. A good AI builder will talk more about constraints, tradeoffs, and monitoring than about how powerful the underlying model is.

Build log

Get an email when I ship a new prototype or essay. No funnel — just the work.