Agentic Software Engineering — The Complete Course
Speed without
discipline
is not engineering.
A three-act course on building real software with AI agents — the 5-phase framework, the skills that drive it, and the operating environment that keeps it safe.
One-time payment. Lifetime access.
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.
4 modules. 51 lessons. 5h 24m of content.
51
Lessons
5h 24m
Total
4
Modules

ABOUT THE INSTRUCTOR
Foyzul Karim
Senior Software Engineer with over 15 years of experience, specializing in architecting high-performance, scalable systems that power modern web applications. Expertise at the intersection of robust backend development with Node.js, dynamic frontend experiences with React and TypeScript, and resilient cloud infrastructure on AWS.
Process beats prompts.
One course. One payment. Lifetime access to the framework, updates, and the community.
- 51 video lessons (and growing)
- 5h 24m of content so far
- Lifetime access
- All future updates
- Community access
