15 Aug 2026 · 7 min read

Four types of AI learner, and the trap each one falls into

My feed is full of the same question in slightly different clothes: where do I start with AI. The replies are always a list of tools, a course link, or someone telling you to learn Python. None of that is wrong, and none of it helps, because 'where do I start' isn't one question. It depends entirely on how you already learn, and what you're going to do with it on Monday morning.

Here's my take, and it's the thing I'd argue about in the comments: most people are learning the wrong layer. They learn prompts when they should be learning workflows. A prompt is a sentence you'll forget by next week. A workflow is a thing that keeps running when you're asleep. Everything below is really about how each type of learner gets stuck one layer short of the one that pays.

1. The collector

The collector has 40 saved posts of prompts, a bookmarks folder called AI, three newsletters, and a Notion page of tools they intend to try. They know more AI vocabulary than most engineers. They have shipped nothing.

The collecting feels like progress because it genuinely is learning - it's just learning about the field instead of learning the field. Knowing that RAG exists and having debugged a retrieval step that returns the wrong chunk are separated by about four hours of work and an enormous gap in understanding.

The trap: input is infinite and free, so it never forces a decision. The way out is to pick one saved thing - literally the top one - and use it on a real task today. Then delete the rest of the folder. You will not miss it.

2. The tool hopper

The hopper does build things. They built something in Zapier, then rebuilt it in Make, then rebuilt it in n8n, then read that Lovable was better and started again. Every rebuild teaches them the same lesson at a slightly different UI.

What they're missing is that the tool is the least transferable part of the knowledge. Triggers, payloads, auth, retries, idempotency, what to do when the third step fails at 3am - those concepts survive every migration. The node names don't. If you can draw your automation on paper before you open the tool, you've learned the durable part; if you can't, you've learned an interface.

The trap: novelty is mistaken for depth. The way out is to stay on one tool until something in production breaks and you have to fix it. That failure teaches more than the next four tutorials.

3. The sceptic

The sceptic has tried ChatGPT, got a confidently wrong answer, and concluded the whole thing is autocomplete with a marketing budget. They're not lazy - they're usually the most technically careful person in the room, and their objection is correct on its own terms. Models do hallucinate. Outputs are not deterministic. Demos are edited.

The error is scope, not judgement. They tested AI as an oracle - a thing that should give correct answers unsupervised - and it failed, because that's the one job it's worst at. Used as a component inside a system that has validation, structured output, and a deterministic spine around it, the same model is extremely useful. The sceptic is right that you can't trust it. They're wrong that trust is required.

The trap: one bad demo becomes a permanent conclusion. The way out is to give it a job with a checkable answer - classify these 200 inbound emails, and let me review the output as a table. Correctness becomes measurable instead of anecdotal.

4. The builder

The builder gets it working. Something real runs, saves them time, and impresses their team. This is the good outcome, and it has its own failure mode: they never look inside.

The generated code works, so it's never read. The agent's decision step is a black box, so nobody knows why it picked branch B. Then a customer edge case appears, or the API changes, or the output quietly degrades, and there's no mental model to debug against - only the prompt that produced it. What they built isn't a system, it's a lottery ticket that happened to win.

The trap: working is confused with understood. The way out is the discipline I keep repeating: take a moment and read what the AI gave you. Not to rewrite it - to be able to explain each step out loud. If you can't explain it, you don't own it, and the day it breaks you'll be starting from zero.

The layer that actually pays

Cutting across all four types, there's a progression, and almost everyone stalls at step two:

  1. Prompting. You get better answers out of a chat box. Useful, personal, entirely non-compounding - it stops when you stop typing.
  2. Tooling. You know what the tools do and can follow a tutorial. Feels like the destination. Isn't.
  3. Workflows. A trigger fires, data moves, something is written to a system of record, and it runs without you. This is where the hours start coming back.
  4. Systems. Multiple workflows with error handling, logging, and a way to tell when they've silently stopped working. This is the part nobody makes content about, and the only part that survives contact with a real business.

My own jump happened at step three, and not gracefully. My first genuinely useful automation was a lead intake flow: form comes in, model enriches and classifies it, record lands in the CRM. It worked beautifully for a week and then broke, because a field came through empty and the model happily invented a plausible answer for it. The fix wasn't a better prompt. It was validation, a fallback branch, and a notification when the fallback fires. That's the moment the whole thing stopped being a trick and started being infrastructure.

So where do you start

Not with a course. Start with something in your own week that you do more than twice, that has a clear input and a clear output, and where being wrong is cheap. Inbox triage. Meeting notes into a task list. Lead research. Then build the smallest possible version, run it on real data, and watch specifically for the case where it fails.

Then, whichever type you are, do the one thing your type avoids. Collector: ship one. Hopper: stay put and fix a break. Sceptic: give it a scoreable job. Builder: read the code. The interesting part is that all four corrections point at the same place - the boring middle, where things run repeatedly and occasionally fail. That's not the part of AI anyone posts about. It's the only part that compounds.

Share this

← All writing