The flagship project

The Jarvis Build πŸ€–

Build your own AI assistant from an empty folder, in 12 chapters, with every step explained. It will remember your conversations, run code you wrote, read your own notes, and refuse to spend more than you allow. About 5 hours of work, and less than the price of a coffee in API costs.

1Stowaway 0 XP

Each chapter is 150 XP. Finishing all 12 unlocks the It's Alive achievement and the Jarvis milestone.

🧭 This is a build, not a lesson Every chapter ends with a program that runs, so you are never left holding half a thing. Type the code rather than pasting it, and do not move on while something is broken: chapter N+1 assumes chapter N works. Every chapter finishes with the three things that actually go wrong.
πŸŽ’ What you need first Roughly Lessons 1 to 30: functions, loops, dictionaries and files. Python 3.10+, a terminal, and an Anthropic account with a few dollars of credit. Chapter 2 walks through the setup properly, including how to keep your API key out of your code. Level 6 explains the ideas underneath in more depth, and is a good companion, but you do not need it first.
πŸ’Έ What it costs, honestly This build defaults to claude-haiku-4-5, the cheapest current model, at $1 per million tokens in and $5 out. A hundred back-and-forth messages costs about twenty cents. Chapter 12 adds a hard daily cap so it cannot quietly become more. Prices and model names change; the chapters say so rather than pretending otherwise.

Part 1 Get it talking chapters 1 to 4

An assistant that answers you and remembers the conversation.

Part 2 Make it feel real chapters 5 to 7

Streaming, a character of its own, and memory that survives a restart.

Part 3 Give it hands chapters 8 to 10

Tools it can call, tools you wrote safely, and your own notes.

Part 4 Make it yours chapters 11 to 12

A real installed command, a spending cap, and where to go next.

🧱 What you will have built

Not "an AI app". A while loop, a list, a dictionary of functions, a search, and a spending cap. Every AI agent you meet from now on, however impressive the marketing, is made of those parts. That is the actual point of this project: after it, none of this is mysterious.