Free certification prep · 2026 blueprint

Claude Certified Architect – Foundations: the complete prep course

Every domain, every task statement, every anti-pattern in Anthropic's first official certification — taught with real code, animated architecture diagrams, and an exam-style readiness score out of 1000.

Free · no signup60 questions120 minutesPass at 720/10005 domains · 6 scenariosProctored · closed book · $125

Unofficial study resource.This free course is published by ShieldSync Security and is not affiliated with, endorsed by, or sponsored by Anthropic. "Claude" and "Claude Certified Architect" are trademarks of Anthropic, PBC. Register for the real exam at Anthropic Academy. Exam access launched via the Claude Partner Network; wider public access is expected during 2026.

How the exam is weighted — and how this course mirrors it

1 · Agentic Architecture & Orchestration27%
3 · Claude Code Configuration & Workflows20%
4 · Prompt Engineering & Structured Output20%
2 · Tool Design & MCP Integration18%
5 · Context Management & Reliability15%

Lesson depth is proportional to exam weight — Domain 1 gets the most pages, Domain 5 the fewest. Every question in the real exam is anchored to one of six business scenarios; the scenarios and anti-pattern lessons train that format directly.

What you get (all free, all on-site)

  • 9 lessonscovering 100% of the published blueprint — nothing skipped, nothing "high level"
  • Animated architecture diagrams for every core pattern — the agentic loop, topologies, context isolation, hooks
  • Real artifacts: working agentic loops, MCP configs, CLAUDE.md hierarchies, CI/CD commands, JSON schemas
  • Checkpoint quizzes with instant explanations
  • Readiness exam scored out of 1000 with a per-domain diagnosis against the 720 pass line
Try the readiness exam

New to this vocabulary? Quick glossary

Every term below appears somewhere in this course. If a question uses a word you're unsure of, check here before re-reading the whole lesson.

Agentic loop

The repeating cycle behind any Claude-powered agent: send a request, check what Claude wants to do next (stop_reason), run a tool if asked, send the result back, repeat until Claude is done.

stop_reason

A field on Claude's response telling your code why it stopped talking — e.g. it wants to call a tool (tool_use), it finished (end_turn), or it ran out of room (max_tokens).

tool_use / tool_result

tool_use is Claude asking your code to run something (a search, a database lookup...). tool_result is your code's answer, sent back so Claude can continue.

Subagent / Agent tool

A helper Claude spawns to do one focused piece of work in its own separate memory space, then reports back a summary — so the main conversation doesn't get cluttered with the helper's scratch work.

Hooks (PreToolUse / PostToolUse)

Small scripts that run automatically around a tool call — one right before it (can block it entirely) and one right after (can react to the result). Used for rules that must always hold, not just usually hold.

MCP (Model Context Protocol)

A standard way to connect Claude to external systems — databases, internal tools, company APIs — through a shared plug-in format instead of custom one-off code every time.

MCP Tools vs Resources vs Prompts

The three things an MCP connection can offer: Tools are actions Claude decides to call itself; Resources are data the surrounding app decides to hand Claude; Prompts are ready-made instructions a person picks, like a menu option.

.mcp.json

A config file listing which external MCP connections a project uses — shared with the whole team via version control, with any secret keys kept out of it and read from environment variables instead.

CLAUDE.md

A plain-text file Claude reads automatically at the start of every session in a project — the place for standing instructions like coding conventions or how the codebase is organized.

.claude/rules/

Instructions that only switch on for certain files (e.g. only when editing test files), instead of loading into every single session the way CLAUDE.md does.

Agent Skill

A packaged set of instructions Claude loads by itself when a task matches, without anyone typing a command — think of it as an instruction manual Claude picks up automatically off the shelf.

allowed-tools vs disallowed-tools

Two different settings that sound alike: allowed-tools just skips the usual 'are you sure?' prompt for tools you've pre-approved — it doesn't block anything else. disallowed-tools is what actually removes a tool from what's available.

Plan mode

A mode where Claude describes what it's about to do and waits for a yes before touching any files — used for bigger or riskier changes, skipped for small obvious ones.

Message Batches API

A cheaper way to send Claude a large pile of requests when nobody is waiting on the answer right away — costs about half as much, but can take up to a day to come back.

Prompt caching

A way to avoid Claude re-reading the same large, unchanging block of text (like a system prompt or a codebase) on every single request — it's remembered for a while, which is both cheaper and faster.

Context window

The total amount of conversation and text Claude can 'see' at once for a given request. When a conversation runs long, older parts may need to be summarized or dropped to make room.

Hub-and-spoke (multi-agent)

A setup where one coordinator agent hands out tasks to several helper agents and collects their answers — the helpers never talk directly to each other, only to the coordinator.

Anti-pattern

A design choice that looks reasonable but causes real problems in practice — this course names seven specific ones the exam likes to hide inside wrong answers.

Course lessons

0Exam orientation: format, scenarios, scoring, registrationHow scenario-anchored questions work, the 4-of-6 scenario draw, proctoring rules, who should sit this exam, and a 4-week study plan.0%1Domain 1: Agentic Architecture & Orchestration (27%)The agentic loop, stop_reason handling, tool execution, task decomposition, hub-and-spoke multi-agent design, subagents and context isolation, session state, lifecycle hooks.0%2Domain 2: Tool Design & MCP Integration (18%)MCP primitives, tool descriptions that drive selection, structured error responses, .mcp.json, transports, building servers and clients, per-role tool scoping.0%3Domain 3: Claude Code Configuration & Workflows (20%)CLAUDE.md hierarchy, .claude/rules/ with YAML frontmatter, skills and slash commands, plan mode vs direct execution, headless -p mode and CI/CD patterns.0%4Domain 4: Prompt Engineering & Structured Output (20%)Explicit criteria, few-shot design, tool_use with JSON schemas, nullable fields against hallucination, validation-retry loops, multi-pass review, Message Batches API.0%5Domain 5: Context Management & Reliability (15%)Long-session information preservation, agent handoffs, escalation via deterministic thresholds, error propagation, provenance, prompt caching.0%6The 6 exam scenarios, deconstructedSupport agent, Claude Code rollout, multi-agent research, developer productivity, CI/CD, structured extraction - what each scenario is really testing.0%7The 7 anti-patterns (how wrong answers are built)Every distractor in the exam is a plausible architectural mistake. Learn the seven failure modes the exam recycles and eliminate options on sight.0%8Readiness exam + study planTimed, scenario-anchored questions scored on the exam's 1000-point scale with a per-domain diagnosis against the 720 pass line.15 MIN
FAQ

CCA-F exam: quick answers

Is this an official Anthropic course?

No. This is a free, unofficial study resource published by ShieldSync Security. It is not affiliated with, endorsed by, or sponsored by Anthropic. You register for the real exam through Anthropic Academy.

What is the CCA-F exam format?

60 multiple-choice questions in 120 minutes, proctored and closed-book. Questions are anchored to 4 of 6 business scenarios drawn at random, and you pass at 720 on a 100-1000 scaled score. The listed exam fee is $125.

Who should sit the CCA-F exam?

Anthropic's guidance targets practitioners with roughly 6+ months of hands-on experience building with the Claude API, Claude Code, the Claude Agent SDK, and MCP. Exam access launched via the Claude Partner Network, with wider public access expected during 2026.

Are your practice questions real exam questions?

No — and that matters. All questions here are original ShieldSync items written in the exam's format (scenario stem, one correct answer, three anti-pattern distractors). We do not publish exam dumps; they violate certification agreements and teach you nothing about the reasoning the exam actually tests.

Do I need an account to use this course?

No signup, no paywall. Your lesson progress and readiness-exam scores are saved in your browser so you can leave and resume any time on this device.

Theory passed. Now break something real.

You just learned how agentic systems are architected — ShieldSync's hands-on labs let you attack and harden cloud environments for real. The first lab is free.

24 people viewing now