AI
The AI Compendium
a Build Labs guide
The roadmap

Seven steps from curious to capable.

Not a syllabus — a path. Each step is something to do, not just read. The 'proof' for each is what tells you you're ready for the next.

Your progress
0 of 7 · 0%
Step 01

Have a real conversation with a model

Open Claude or ChatGPT and use it for a real task today — a draft, a tricky email, an unfamiliar code error. Notice where it shines and where it stumbles. This shapes your intuition more than any tutorial.

Done whenYou've used an LLM to do something you'd have done yourself.
Step 02

Learn prompt engineering by feedback

Write a prompt. Read the output. Find one thing that's wrong. Edit the prompt to fix it. Repeat. After ten rounds you'll have internalized more than any course will teach.

Done whenYou can reliably get the output shape you want.
Step 03

Use AI in your daily workflow

Install Claude Code or Cursor. Use it for a week of real work. The skill of collaborating with an agent — what to delegate, what to keep — only develops by doing.

Done whenYou'd be slower without it.
Step 04

Build something small with the API

Pick a tiny project — summarize your inbox, tag your photos, draft replies. Call the API directly. You'll learn more from 50 lines of glue code than from any framework tutorial.

Done whenYou've shipped a script that calls an LLM.
Step 05

Add retrieval (RAG)

Give your model access to your own documents. Chunk them, embed them, search them, paste the top results into the prompt. This unlocks 80% of useful business apps.

Done whenYour app answers questions about your own data.
Step 06

Add tools and a loop

Let the model call functions — read a file, hit an API, run a query — and let it loop until done. Congratulations: you've built an agent.

Done whenYour app takes multi-step actions on its own.
Step 07

Add evals before you scale

Write 20 test cases with expected behaviors. Run them every time you change a prompt. Without this, every 'improvement' is a guess.

Done whenYou can prove a change made things better.
Next

Pick a tool and start.

The shortest path through this guide is to pick one chat assistant and one coding tool, then use them every day this week.