Detailed Curriculum

Thirty-two weeks, four phases, two tracks running side by side.

Every week you build something technical and practise the consulting judgement that gets it bought, scoped and defended. Each phase returns to the same delivery questions with more demanding constraints.

Phase
01
Weeks
1—4

Foundations

Goal: learn the language and working habits of production AI.

By week 4 you can cost a model, call one through an API with structured output, build a deterministic chain, and run a discovery interview that ends in a RAPID sheet.

Tools you work in
Python
Python
Supabase
Supabase
Vercel
Vercel
GitHub
GitHub
OpenAI API
OpenAI API
OpenRouter
LangChain and LCEL
LangChain and LCEL
Pydantic
Pydantic
Masterclasses in this phase
Practical prompt engineering
Low-code agent building with n8n
Week
</>
Technical track
Consulting track
W1
Ship a first AI app
Technical track

LLM foundations-1. Build the working mental model: tokens, context window, temperature, hallucination.

Vibe coding-1 and -2. Build a backend on Supabase and ship the frontend on Vercel.

Hackathon-1. Build in your pod over the weekend, judged on a working deploy.

Consulting track
The FDE Landscape
Context-setting

Map your skills against the FDE competency matrix.

W2
Cost a model before you pick it
Technical track

AI landscape-1 and -2. Place any client request on the GenAI map; cost a feature from tokens and calls per day.

Prompt engineering-1. Structure prompts with roles, examples and JSON output; first calls through the OpenAI API and OpenRouter.

Consulting track
Client Psychology

Read a sponsor, a champion, a user and a blocker, and write the update each one needs.

W3
Build your first chain
Technical track

LangChain-1. See what makes a system agentic and run a first chain.

LangChain-2. Compose with LCEL and Runnables; enforce structured output with fallbacks.

LangChain-3. Build a multi-step chain on a business case, with retries.

Consulting track
Discovery Mastery

Run a SPIN discovery in pairs, recorded and debriefed.

W4
Choose the right workflow pattern
Technical track

Workflow patterns-1 to -3. Route, parallelise and self-correct; pick patterns with the selection matrix.

Consulting track
RAPID Framework

Turn a vague brief into requirements, assumptions, priorities, implications and dependencies.

You produce:

A first working AI app, a costed model choice, a multi-step chain and a RAPID sheet from a live discovery interview.

Phase
02
Weeks
5—12

Core Build

Goal: move from individual tools to a dependable, deployed application.

By week 12 you can ship a traced, guardrailed agent on AWS AgentCore, ground it with retrieval, and write the PRD, estimate and priced proposal that go with it.

Tools you work in
LangChain tools and create_agent
LangChain tools and create_agent
LangSmith
LangSmith
AWS AgentCore
AWS AgentCore
Amazon Bedrock Knowledge Bases
Amazon Bedrock Knowledge Bases
S3 Vectors
S3 Vectors
Local vector store
Local vector store
Masterclasses in this phase
Claude Code
OpenAI Agents SDK (W8)
Codex, full-stack
Week
</>
Technical track
Consulting track
W5
Ship Mini Project 1
Technical track

Mini Project 1. Build a multi-pattern workflow on an ops case and defend each pattern choice.

Consulting track
How Organizations Actually Buy AI
Context-setting

Score an organisation's AI readiness on five dimensions.

W6
Give the agent tools and memory
Technical track

Tool calling-1 and -2. Turn client APIs into tools the model can call safely.

Memory-1. Add conversation memory with trimming and summarisation.

Consulting track
Advanced Discovery and Client Simulation #1

Lead a 45-minute simulated engagement with a difficult client.

W7
Make it observable and testable
Technical track

Observability-1. Trace every run in LangSmith with cost and latency.

Guardrails-1. Validate inputs and outputs; learn the guardrail-as-a-tool pattern.

Evals-1. Build a golden set and prove one change with numbers.

Consulting track
PRD Fundamentals

Write a PRD with user stories and acceptance criteria.

W8
Deploy it on AWS
Technical track

AgentCore-1 and -2. Learn the AgentCore primitives and deploy the agent as a service.

The loop, assembled. Review the six parts of the agentic loop as one system.

Consulting track
PRD Advanced

Harden acceptance criteria and defend the PRD in a stakeholder review.

W9
Ship Mini Project 2, week 1 of 2
Technical track

Mini Project 2. Ship the full loop on AgentCore: tools, memory, tracing, guardrails.

Self-paced. Cover deep learning basics and embeddings before the RAG block.

Consulting track
The Architecture Mindset
Context-setting

Sketch a solution on the Solution Architecture Canvas before any code.

W10
Ship Mini Project 2, week 2 of 2
Technical track

Mini Project 2. Polish, deploy and record; join the open review of common failure patterns.

Consulting track
Solution Architecture Canvas and Trade-off Analysis

Defend an architecture in a trade-off tribunal.

W11
Ground the agent in documents
Technical track

RAG-1 and -2. Build a RAG chain with loaders, a vector store and citations.

RAG-3. Use Bedrock Knowledge Bases and S3 Vectors for managed retrieval.

Consulting track
Effort Estimation

Estimate five AI projects and see where the estimates diverge.

W12
Chunk for enterprise scale
Technical track

Enterprise RAG-1 to -3. Design ingestion for real corpora; compare chunking strategies and recommend one.

Consulting track
Costing and Pricing Models

Price one project under fixed, time-and-material and outcome models.

You produce:

Two shipped mini projects, a traced and guardrailed agent on AgentCore, a PRD, an estimate and a priced proposal.

Phase
03
Weeks
13—20

Deployment Depth

Goal: work through the conditions in which promising AI systems usually fail.

By week 20 you can measure an enterprise RAG pipeline, run an agent on LangGraph with durable memory, and hold a scope through a hard client conversation.

Tools you work in
LangGraph
LangGraph
RAGAS
RAGAS
BM25 and hybrid retrieval
BM25 and hybrid retrieval
Cross-encoder rerankers
Cross-encoder rerankers
Knowledge graphs
Knowledge graphs
AgentCore Memory
AgentCore Memory
Masterclasses in this phase
RAG variants-1 (W15)
RAG variants-2 (W16)
Data lakes and Databricks
CrewAI introduction (W18)
Week
</>
Technical track
Consulting track
W13
Build the enterprise RAG pipeline
Technical track

Enterprise RAG-4 to -6. Design the pipeline, then build ingestion, indexing, retrieval and generation in two guided sessions.

Consulting track
ROI That Boards Actually Believe
Context-setting

Build an ROI model a CFO would sign.

W14
Ship Mini Project 3
Technical track

Mini Project 3. Plug the pipeline into your agent so it answers with citations, deployed.

Consulting track
Domain Context Mapping

Map a Client Zero unit into bounded contexts within a week.

W15
Retrieve with more precision
Technical track

Advanced retrieval-1 to -3. Add knowledge graphs, hybrid search and reranking; measure each against the baseline.

Consulting track
Objection Handling

Answer the seven objections to AI projects, recorded.

W16
Measure retrieval
Technical track

RAG evaluation-1 and -2. Score faithfulness and recall with RAGAS; fix the worst offender.

Enterprise RAG-7. Enrich chunks with metadata and filter at query time.

Consulting track
Proposal Writing

Draft Proposal 1 and take it through peer review.

W17
Move to LangGraph
Technical track

LangGraph-1 to -3. Model agents as graphs with typed state; rebuild the week 4 patterns.

Consulting track
Implementation Roadmaps
Context-setting

Plan pilot, scale and optimise with a change plan.

W18
Give the agent durable memory
Technical track

Agent memory-1 to -3. Checkpoint, resume and replay; keep memory across threads with a store.

Consulting track
SOW Fundamentals

Write an SOW with AI-specific clauses.

W19
Compose and remember at scale
Technical track

LangGraph-4. Compose subgraphs without tangling shared state.

Agent memory-4 and -5. Build a support agent that remembers a user across threads under retention rules.

Consulting track
Scope Protection and Change Management

Hold your SOW through a live scope creep simulation.

W20
Ship Mini Project 4, week 1 of 2
Technical track

Mini Project 4. Rebuild your agent on LangGraph with durable state and long-term memory.

Consulting track
Delivery Confidence Index and Phase 2 Synthesis

Score project health; review your portfolio and resume.

You produce:

A measured enterprise RAG pipeline, an agent on LangGraph with durable memory, Proposal 1, an SOW and a delivery confidence score.

Phase
04
Weeks
21—32

Capstone Engagement

Goal: run one engagement end to end and defend it in front of a panel.

By demo week you can run one engagement end to end: MCP tools, policies, a production deployment, a multi-agent design and an SLM you trained and served.

Tools you work in
MCP
MCP
LangSmith evaluators
LangSmith evaluators
Amazon Bedrock Guardrails
Amazon Bedrock Guardrails
IAM for agents
IAM for agents
CrewAI
CrewAI
Agno
Agno
LoRA and QLoRA
LoRA and QLoRA
RAFT-style tuning
RAFT-style tuning
Local inference runtime
Local inference runtime
Masterclasses in this phase
MCP end to end, grand masterclass (W22)
AI system design (W26)
Azure for agentic AI (W27)
GCP with Google ADK (W28)
Week
</>
Technical track
Consulting track
W21
Ship Mini Project 4, week 2 of 2
Technical track

Mini Project 4. Deploy, record and defend the migration in a design note.

Consulting track
Resource Planning and Partnerships
Context-setting

Design the team, then redesign it with 40 percent less budget.

W22
Speak MCP
Technical track

MCP-1 to -3. Build an MCP server, test it with the inspector, and wire it into your agent with enterprise scoping.

Consulting track
Project Delivery

Build a WBS, a RACI and a sprint plan for an AI agent project.

W23
Run it like production
Technical track

Observability-2 and Evals-2. Trace graphs and run regression evals on every change.

Guardrails-2. Add validation nodes, moderation checks and human-in-the-loop interrupts.

Consulting track
Stakeholder Alignment and Conflict Resolution

Resolve the three-way standoff between CTO, VP Ops and CFO.

W24
Harden against attack
Technical track

Guardrails-3. Defend against prompt injection using the OWASP LLM Top 10.

Policies-1 and -2. Enforce role, spend and approval policies as middleware; run failure drills.

Consulting track
Difficult Conversations and Client Close-out

Deliver bad news and close a project out, recorded.

W25
Govern and deploy at platform level
Technical track

Platform governance-1. Layer Bedrock Guardrails over framework guardrails.

Deployment-1 and -2. Take the full pipeline live on AWS with a runbook.

Consulting track
CDIO and CTO Playbooks
Context-setting

Distil a programme into one board slide that earns a decision.

W26
Ship Project 5
Technical track

Project 5. Deploy a LangGraph agent with MCP tools, guardrails, policies and observability against a production checklist.

Consulting track
End-to-End Engagement Simulation and Case Study Writing

Own a full engagement in one simulation; write case study 1.

W27
Design with more than one agent
Technical track

Multi-agent-1. Choose a topology, diagram first.

CrewAI-1 and -2. Build a crew with tools and delegation; sketch its LangGraph supervisor twin.

Consulting track
Case Studies, Portfolio Narrative and Interview Preparation

Draft five case studies and your portfolio narrative.

W28
Judge, vote and compare frameworks
Technical track

Multi-agent-2. Use councils and LLM-as-judge with their biases known.

Agno-1 and -2. Rebuild the case in Agno; score LangGraph, CrewAI and Agno.

Consulting track
Mock Interviews and Salary Negotiation

Run the mock interview gauntlet and negotiate with a BATNA.

W29
Choose a small model
Technical track

SLM-1 to -3. Match deployment topology to data residency; select a small model on task fit.

Consulting track
Capstone Integration
Context-setting

Defend the AI transformation workbook and brief the capstone client.

W30
Train and tune it
Technical track

SLM-4 to -6. Fine-tune with LoRA and QLoRA; pair the model with retrieval in the RAFT style; serve it.

Consulting track
Capstone Client Update

Deliver an update under pressure when the requirement changes.

W31
Ship Project 6
Technical track

Project 6. Train, tune and serve your own SLM; compare it with a hosted baseline.

Consulting track
Capstone Presentation Rehearsal

Rehearse the panel and finalise the case studies.

Sprints
Build the capstone
Technical track

Loop and harness engineering. Learn the two closing concepts and apply them to your scope.

Sprints 1 to 3. Freeze scope, build the core, harden and rehearse, with random-pick reviews each week.

Consulting track
Capstone mentoring

Work with the consulting mentors in the sprint reviews.

W32
Demo and defend
Technical track

Demo dry-runs, Demo days 1 and 2. Present a live system to the evaluation panel.

Consulting track
Graduation and Industry Panel

Complete final mock interviews and the consulting readiness evaluation.

You produce:

Projects 5 and 6, five written case studies, a portfolio narrative, and a capstone system demonstrated live to the evaluation panel.

Admissions open

Ready to apply?

Leave your number and an admissions lead will call you back to walk through eligibility, cohort dates and fees.