Good software
is still
a craft.
Learn the framework, skills, and guardrails that turn AI agents into a real engineering team.
Free access. Sign in with your email.
1import { LLMClient, Tool, Memory from "./core";23const agent = new LLMClient({ model: "claude-opus-4" });45async function runAgent(task: string) {6 const memory = new Memory();78 while (true) {9 const { action } = await agent.think({10 task,11 context: memory.get(),12 });1314 if (action.type === "tool_call") {15 const result = await Tool.run(action);16 memory.append("tool", result);17 continue;18 }1920 return action.content; // final answer21 }22}
WHAT YOU'LL LEARN
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.
COURSE CURRICULUM
Everything inside.
1 module. 5 lessons. 0m of content.
5
Lessons
0m
Total
1
Modules

ABOUT THE INSTRUCTOR
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.
