That last step is the one most learning paths leave out. Watching tutorials builds familiarity. Finishing and proving builds value, which is what employers and clients pay for.
Why most people get stuck
Three patterns show up again and again:
- Tool hopping. A week on one platform, a week on another, never finishing anything on either.
- Starting with agents. Agents are the most exciting and the hardest to debug. Without workflow fundamentals, you can't tell why one misbehaves.
- Building demos, not solutions. A workflow that summarizes a sample email proves you followed a tutorial. A workflow that cut a real team's response time proves you can create value.
The path below is designed to avoid all three. It follows MitHub's journey (Discover → Learn → Build → Create value → Prove → Earn → Improve) and applies it to AI automation.
The MitHub path: seven stages, each with a proof
Each stage ends with a small proof: something you finished, not something you watched. Don't move on until you have it.
| Stage | What you learn | Proof to finish |
|---|---|---|
| 1. Read data | APIs, webhooks, JSON | Explain a real JSON payload field by field |
| 2. Map processes | Follow the money, R-J-A tagging | One process map with numbers |
| 3. Build with rules | Triggers, conditions, errors | A working rules-only workflow |
| 4. Add AI steps | Prompts, structured output | One AI step with validated output |
| 5. Test and measure | Evaluation sets, accuracy | A test set and a score |
| 6. Agents, carefully | Tools, context, limits, approvals | A bounded, read-only agent |
| 7. Solve and prove | Real problem, real numbers | A documented case with evidence |
Stage 1: Learn to read data
Every automation moves data between systems. Before any tool, get comfortable with three things:
- JSON, the format almost all of that data uses. MDN's guide to JSON describes it as a standard text-based format for structured data and is a solid, free place to start.
- APIs: how one system asks another for data or asks it to do something.
- Webhooks: how a system notifies another the moment something happens.
You don't need to write code yet. You need to open a payload and know what each field means.
Proof: take a real webhook payload (from a form tool or a test service) and write one sentence explaining each field and where it would go in a CRM.
Stage 2: Map a process before automating it
This is the stage that separates builders from button-pushers. Pick a real process: lead follow-up, invoice reminders, onboarding a customer. Map it backwards from the money, the method taught in MitHub's Follow the money chapter: payment → decision → conversations → first contact → source.
Then tag each step:
- R (Rule): predictable, could be written as a condition.
- J (Judgment): needs reading or interpretation. An AI candidate.
- A (Approval): a mistake is costly. A human decides.
Add numbers wherever you can: volume per week, time per step, how often it goes wrong.
Proof: a one-page map with every step tagged R, J or A and at least three numbers on it. The full method is in MitHub's guide to AI automation.
Stage 3: Build with rules first
Choose one workflow tool and commit to it. MitHub uses n8n because it's visual, handles webhooks and APIs well and has AI building blocks built in, but the concepts transfer.
Build only the R steps of your map. Learn:
- Triggers. For webhooks in n8n, understand the difference between the test and production URLs: one for building, one for the published workflow.
- Conditions and routing (IF, Switch).
- Transforming data from one system's shape to another's.
- Error handling: what happens when a step fails, and who finds out.
Proof: a rules-only workflow that runs end to end on test data, fails gracefully and notifies you when it breaks.
Stage 4: Add one AI step
Now take one J step and give it to a model. Keep it narrow: classify a reply, extract fields from a message, summarize a transcript into three fields.
Two habits make or break this stage:
- Define success before writing the prompt. Anthropic's prompt engineering overview says it assumes you already have clear success criteria and a way to test against them before you start refining prompts. That order matters.
- Demand structured output. A fixed label or a set of fields, never a paragraph. Then validate it: if the model returns something outside the allowed values, route it to a human.
Proof: your workflow now includes one AI step whose output is checked before the workflow continues.
Stage 5: Test and measure
This is the most skipped stage and the one that makes your work credible.
n8n's documentation on evaluations explains why: models behave like black boxes, so you build confidence by running a dataset of test cases through the workflow rather than trusting a single successful run.
Do this:
- Collect 30–50 real examples (anonymize anything personal).
- Write the correct answer for each by hand.
- Run them through your AI step and count matches.
- Change one thing (the prompt, the examples, the model) and rerun.
- Keep a simple log of each version and its score.
Proof: a test set, a score and a short note on what you changed to improve it.
Stage 6: Agents, carefully
Only now are you ready for agents: systems where the model picks which tools to use. Read Anthropic's Building effective agents, which separates fixed workflows from agents that direct their own process and recommends adding complexity only when it clearly helps. Then read our explainers on what an AI agent is and when to use one.
Build a bounded first agent: a clear goal, two or three tools, read-only access, a step limit and an output that goes to a person, not a customer. A meeting-prep brief or an account research summary works well.
Proof: an agent with a written job description (goal, tools, limits, handoff) and a handful of runs you reviewed.
Stage 7: Solve a real problem and prove it
Everything so far was practice. This stage is the point.
Find a real problem with a real owner: a small business, a nonprofit, a team at your job, a friend's company. Use Stage 2 to map it, then build the smallest thing that measurably helps. MitHub's Prove value fast chapter covers how to choose that quick win.
Then document it the way MitHub structures case studies in Your case study:
- Situation: what was broken, with numbers.
- Path: what you mapped, what you built and why.
- Result: what changed, with before and after numbers.
- Evidence: screenshots, logs, the test score, and permission from the owner to share.
Proof: a documented case someone else can verify. This is the piece that goes in your portfolio. For how to present it, see How to build a portfolio without experience.
Your first project, if you need one (hypothetical)
Imagine a local business with a contact form where messages sit in an inbox for a day before anyone replies.
- Stage 2: map it. Say about 40 messages a week, a mix of quotes, questions and spam, and replies that often take a day.
- Stage 3: webhook → dedupe → log every message → alert if the workflow fails.
- Stage 4: AI step labels each message
quote,questionorspamwith a one-line summary. - Stage 5: label 40 past messages by hand and measure accuracy.
- Act: quotes notify the owner immediately with the summary; questions get a drafted reply the owner approves.
- Stage 7: after a few weeks, compare time to first reply before and after.
The numbers above are for illustration. Yours will come from the real process, and that's exactly what makes them proof.
Habits that speed everything up
- One tool, deep. Master one workflow tool before sampling others.
- Write as you build. A short note per build: what, why, what broke, what you learned.
- Name nodes like sentences. "Check if lead already exists" beats "HTTP Request 3."
- Keep your test sets. They become the evidence behind your claims.
- Show your work. Share builds and lessons publicly. Proof compounds.
From learning to earning
AI automation skills are valuable because they change what a company can do with the people it already has. That value only becomes visible to others when you can show it. As MitHub puts it: learn, build, create value, prove, then earn. More on that in Learn, build, prove, earn.
If you want structure, feedback and a community doing the same path, the foundations of MitHub's Revenue Reverse Engineering faculty are free, and every chapter ends with a proof.
