The Certification Path
Every resource, technology, and course topic you need for the Claude Certified Architect exam — plus what to skip so you do not waste study time on out-of-scope material.
Quick Reference
- →Anthropic Skilljar offers 15+ free courses — start with Claude 101 and work through Agent Skills and Subagents
- →Claude Cookbooks repo (github.com/anthropics/claude-cookbooks) has working examples for tool use, agents, and structured output
- →Official docs at docs.anthropic.com cover Claude Code, Agent SDK, MCP, Tool Use, and Prompt Engineering
- →Core technologies: Claude API, Agent SDK, MCP, Claude Code, Message Batches API, JSON Schema, Pydantic
- →Out of scope: fine-tuning, billing, cloud configs, embeddings, computer use, vision, streaming, rate limiting, OAuth
- →Each topic in this course maps directly to one of the five exam domains
- →Domain weights guide your study time allocation: 27% agentic architecture, 20% Claude Code, 20% prompt engineering, 18% MCP/tools, 15% context management
- →The cookbooks repo is the closest thing to exam-style practice — run the notebooks, do not just read them
In this article
Learning Resources
Anthropic provides three categories of free learning materials that directly map to exam content. You do not need to purchase any third-party courses or books — everything you need is available at no cost between Anthropic's own platforms and this course.
| Resource | URL / Location | What It Covers |
|---|---|---|
| Anthropic Skilljar | Anthropic's learning platform (free enrollment) | 15+ structured courses: Claude 101, Claude Code in Action, Building with Claude API, Intro to MCP, Agent Skills, Subagents, and more |
| Claude Cookbooks | github.com/anthropics/claude-cookbooks | Working code examples: tool use patterns, agent implementations, structured output, MCP integrations, prompt engineering techniques |
| Official Documentation | docs.anthropic.com | API reference, Claude Code docs, Agent SDK guide, MCP specification, Tool Use guide, Prompt Engineering best practices |
| This Course | You are here | Exam-focused coverage of all 5 domains with scenario-based exercises mapped to the 6 exam scenarios |
Start with Anthropic Skilljar for foundational concepts (Claude 101 first, then Building with Claude API). Move to the official docs for reference depth. Use this course for exam-specific preparation and scenario practice. Treat the Cookbooks as your hands-on lab — run every notebook, modify the code, and break things on purpose.
The Skilljar courses are designed as self-paced modules, typically 30-90 minutes each. The most exam-relevant courses are: Claude 101 (foundational concepts and API basics), Building with Claude API (Messages API, tool_use, structured output), Intro to MCP (Model Context Protocol architecture), Agent Skills (building agents with tool calling and orchestration), Subagents (multi-agent patterns and coordination), and Claude Code in Action (CLAUDE.md, hooks, slash commands, CI integration).
Anthropic Skilljar Course Breakdown
Not all Skilljar courses carry equal weight for the exam. Here is a prioritized breakdown of the courses most relevant to each exam domain, so you can allocate your time effectively.
| Skilljar Course | Maps to Domain | Priority |
|---|---|---|
| Claude 101 | All domains (foundational) | Start here |
| Building with Claude API | Domain 4: Prompt Engineering & Structured Output | High |
| Intro to MCP | Domain 2: Tool Design & MCP Integration | High |
| Agent Skills | Domain 1: Agentic Architecture & Orchestration | High |
| Subagents | Domain 1: Agentic Architecture & Orchestration | High |
| Claude Code in Action | Domain 3: Claude Code Configuration & Workflows | High |
| Tool Use | Domain 2: Tool Design & MCP Integration | Medium |
| Prompt Engineering | Domain 4: Prompt Engineering & Structured Output | Medium |
You do not need to complete Skilljar courses to sit for the exam. However, Skilljar content is authored by Anthropic and closely mirrors the concepts tested. Skipping it means you are relying entirely on docs and hands-on experience, which is viable but slower for most people.
Technologies You Need to Know
The exam tests a specific set of technologies. For each one, you need both conceptual understanding (what it is, when to use it) and practical fluency (how to configure and use it). Here is what is in scope.
- ▸Claude API (Messages API) — The core HTTP API for interacting with Claude. You must understand the message format, system prompts, multi-turn conversations, tool_use blocks, stop reasons, and how to handle API responses. This is the foundation everything else builds on.
- ▸Claude Agent SDK — The official SDK for building agentic applications. Know how to define agent loops, register tools, implement handoffs between agents, configure guardrails, and handle lifecycle events (hooks). Understand the difference between single-agent and multi-agent architectures.
- ▸MCP (Model Context Protocol) — The protocol for connecting Claude to external tools and data sources. Understand the server/client architecture, tool schema definitions, resource types, and transport layers (stdio, HTTP). Know when to use MCP versus direct tool_use.
- ▸Claude Code — Anthropic's CLI tool for code-aware AI assistance. Master CLAUDE.md file structure, the settings hierarchy (project vs user vs enterprise), slash commands, hooks (pre/post), non-interactive mode for CI/CD, and repository conventions.
- ▸Message Batches API — The API for processing multiple requests efficiently. Know when batch processing is appropriate (high volume, latency-tolerant workloads) versus when to use individual requests.
- ▸JSON Schema — The standard for defining structured output formats. Understand required fields, type definitions, nested objects, arrays, enums, and how Claude uses schemas to produce validated output.
- ▸Pydantic — Python's data validation library used with Claude for structured output. Know how to define models, use field types and validators, handle validation errors, and integrate Pydantic with Claude API responses.
For each technology, aim to be comfortable building something real with it — not just recognizing the name. The exam presents scenario questions where you must choose the right technology for a given constraint. That requires understanding tradeoffs, not just definitions.
What's NOT on the Exam
Knowing what is out of scope is just as valuable as knowing what is in scope. The following topics will not appear on the exam. If you encounter an answer choice that references one of these, it is almost certainly a distractor.
Fine-tuning (Claude does not support fine-tuning). Billing and pricing details. Cloud provider configurations (AWS Bedrock, GCP Vertex, Azure setup). Embeddings (Claude's embedding models are separate from the architect exam). Computer use (beta feature, not tested). Vision capabilities (image input/analysis). Streaming implementation details (SSE, event handling). Rate limiting and throttle management. OAuth and authentication protocols.
- ▸Fine-tuning — Claude does not support fine-tuning. Any answer mentioning 'fine-tune the model' is wrong.
- ▸Billing & pricing — You will not be asked about token costs, pricing tiers, or usage limits.
- ▸Cloud provider configs — AWS Bedrock setup, GCP Vertex AI configuration, and Azure deployment are not tested.
- ▸Embeddings — While Anthropic offers embedding capabilities, they are outside this exam's scope.
- ▸Computer use — The computer use beta (controlling desktop applications) is not covered.
- ▸Vision — Image input and multimodal analysis are not tested on this exam.
- ▸Streaming — Server-sent events, streaming token handling, and real-time response rendering are out of scope.
- ▸Rate limiting — Throttling strategies, retry-after headers, and quota management are not tested.
- ▸OAuth — Authentication protocols and identity management are outside the exam boundary.
Exam distractors frequently reference out-of-scope technologies as solutions. For example, a question about improving extraction accuracy might offer 'fine-tune the model on your dataset' as an option. This sounds plausible but is always wrong on this exam — Claude does not support fine-tuning, and it is out of scope regardless.
How to Use This Course
This course is structured to map directly to the five exam domains. Each topic covers one domain in depth, with articles that explain concepts, provide working examples, and include scenario-based exercises. Here is how to work through it effectively.
Start with this Introduction topic
You are here. Understand the exam format, domains, scenarios, and what is in and out of scope. This gives you a mental map for everything that follows.
Work through Agentic Architecture & Orchestration (Domain 1, 27%)
This is the highest-weighted domain. Learn agent loops, orchestration patterns (single agent, supervisor, swarm), the Claude Agent SDK, subagent spawning, human-in-the-loop, and error handling. Build at least one agent as you go.
Study Tool Design & MCP Integration (Domain 2, 18%)
Learn the MCP protocol architecture, tool schema design, when to use MCP versus direct tool_use, and how to build reliable tool interfaces. Implement an MCP server with multiple tools.
Master Claude Code Configuration & Workflows (Domain 3, 20%)
Configure CLAUDE.md files, understand the settings hierarchy, create custom slash commands, set up hooks, and run Claude Code in CI/CD pipelines. Practice in a real repository.
Learn Prompt Engineering & Structured Output (Domain 4, 20%)
Master system prompt design, prefilling techniques, JSON Schema output enforcement, Pydantic validation, few-shot prompting, and chain-of-thought. Practice extracting structured data from unstructured text.
Cover Context Management & Reliability (Domain 5, 15%)
Understand context window budgeting, summarization strategies, the Message Batches API, error propagation patterns, retry strategies, and guardrails. Learn how to keep agents on track across long conversations.
Drill all six scenarios
After completing the domain topics, return to the six exam scenarios and practice end-to-end: Customer Support Agent, Code Generation with Claude Code, Multi-Agent Research System, Developer Productivity, Claude Code for CI, and Structured Data Extraction. For each, sketch the architecture and answer practice questions.
Every article includes exercises. Do them. The exam tests your ability to make decisions under constraints, not your ability to recall paragraphs. Building muscle memory through exercises is the single biggest predictor of passing on the first attempt.
Suggested Study Timeline
How long you need depends on your starting experience. Here are three profiles with recommended timelines.
| Experience Level | Timeline | Focus Areas |
|---|---|---|
| 6+ months with Claude APIs and Agent SDK | 2-3 weeks | Fill gaps in weaker domains, drill scenarios, review MCP and Claude Code specifics |
| Some Claude API experience, new to Agent SDK/MCP | 4-6 weeks | Complete Skilljar courses first, build an agent and MCP server, then work through this course |
| New to Anthropic stack (but experienced developer) | 8-10 weeks | Start with Claude 101, work through all Skilljar courses, build 2-3 projects, then focus on exam prep |
Spend roughly 60% of your study time building things (agents, MCP servers, Claude Code configs, structured output pipelines) and 40% reading and reviewing concepts. The exam heavily favors practical understanding over theoretical knowledge.
Using Claude Cookbooks as Your Lab
The Claude Cookbooks repository at github.com/anthropics/claude-cookbooks is the most underutilized exam preparation resource. It contains working Jupyter notebooks and Python scripts that demonstrate the exact patterns tested on the exam. Here is how to get maximum value from it.
- ▸Clone the repo and run notebooks locally — reading code on GitHub is not the same as executing and modifying it
- ▸Focus on these cookbook categories: tool use (tool schemas, handling tool results), agents (agent loops, multi-step workflows), and structured output (JSON extraction, Pydantic validation)
- ▸After running each notebook, modify it: change the tool schemas, alter the system prompt, swap the orchestration pattern, and observe how behavior changes
- ▸Break things intentionally: remove error handling, exceed context limits, send malformed tool results — understanding failure modes is essential for the exam
- ▸Compare cookbook implementations against what you learn in this course — the cookbooks show one way to solve a problem, this course explains why that approach was chosen over alternatives
As you work through cookbooks, mentally tag each one to an exam scenario. A tool use cookbook maps to the Customer Support Agent scenario. An agent orchestration cookbook maps to the Multi-Agent Research System. A structured output cookbook maps to the Structured Data Extraction scenario. This mental mapping accelerates exam readiness.
Best Practices
Do
- ✓Combine this course with Anthropic Skilljar courses and Claude Cookbooks for complete coverage
- ✓Run cookbook notebooks locally and modify the code — do not just read them
- ✓Focus your study time on in-scope technologies: Claude API, Agent SDK, MCP, Claude Code, Message Batches API, JSON Schema, Pydantic
- ✓Map each cookbook and exercise to one of the six exam scenarios
- ✓Allocate study time proportional to domain weights
- ✓Build at least one project per domain to develop practical fluency
Don’t
- ✗Don't study out-of-scope topics — fine-tuning, embeddings, computer use, billing, and cloud configs are not tested
- ✗Don't skip hands-on exercises in favor of passive reading
- ✗Don't rely on a single resource — combine Skilljar, docs, cookbooks, and this course
- ✗Don't assume familiarity with one domain compensates for weakness in another
- ✗Don't ignore the cookbooks repo — it is the closest thing to exam-style practice available for free
Key Takeaways
- ✓Three free resource platforms cover everything: Anthropic Skilljar (structured courses), Claude Cookbooks (working code), and docs.anthropic.com (reference).
- ✓Seven technologies are in scope: Claude API, Agent SDK, MCP, Claude Code, Message Batches API, JSON Schema, and Pydantic.
- ✓Nine topic categories are explicitly out of scope: fine-tuning, billing, cloud configs, embeddings, computer use, vision, streaming, rate limiting, and OAuth.
- ✓Each topic in this course maps directly to one of the five exam domains — work through them in order.
- ✓The Claude Cookbooks repo is the most underutilized study resource — run the notebooks, do not just read them.
- ✓Spend 60% of study time building and 40% reading — the exam heavily favors practical understanding.
- ✓Study timeline varies by experience: 2-3 weeks for experienced users, 8-10 weeks if new to the Anthropic stack.
- ✓Map every resource and exercise to an exam scenario to maximize retention and exam readiness.
Video on this topic
Your Claude Architect Study Plan in 60 Seconds
tiktok