Good software
is still
a craft.

Learn the framework, skills, and guardrails that turn AI agents into a real engineering team.

Get access

Free access. Sign in with your email.

agent.ts
1import { LLMClient, Tool, Memory from "./core";
2
3const agent = new LLMClient({ model: "claude-opus-4" });
4
5async function runAgent(task: string) {
6 const memory = new Memory();
7
8 while (true) {
9 const { action } = await agent.think({
10 task,
11 context: memory.get(),
12 });
13
14 if (action.type === "tool_call") {
15 const result = await Tool.run(action);
16 memory.append("tool", result);
17 continue;
18 }
19
20 return action.content; // final answer
21 }
22}

Theory → practice → pain → cure → mastery.

A five-part progression. The discipline never changes.

5-Phase Framework

Requirements → Architecture → Tasks → TDD → Review. A repeatable pipeline for every project.

Claude Code & Skills

The CLI, slash commands, .claude/ directory, and custom skills that automate your workflow.

Agent Architecture

Design agents that decompose work into sequential skills and parallel subagents.

LLM Fundamentals

How transformers work, token prediction, context windows, and the limits of LLMs.

Precision Prompting

Write explicit prompts, use thinking modes, and design skills Claude follows every time.

Cost Controls & Guardrails

External scripts, hooks, built-in read-only agents, and token-saving patterns.

Everything inside.

1 module. 5 lessons. 0m of content.

Course content is actively being added

5

Lessons

0m

Total

1

Modules

Fareal Ahmed

Fareal Ahmed

Software engineer with 4+ years of experience building for the education sector — passionate about edtech, schools, and the everyday work of students and teachers. I build practical, approachable courses that turn modern web development into something teachers can teach and learners can ship, focused on the tools and habits that hold up in real classrooms and real products.

Process beats prompts.

Free access to every lesson — sign in with your email and start watching.

Free
  • 5 video lessons (and growing)
  • 0m of content so far
  • Lifetime access
  • All future updates
Get access