Source: ai-research (web research, 2026-04-11), raw/guide_en.MD Type: Certification / Product Launch Product: Claude Certified Architect — Foundations Date: 2026-03-12

Anthropic’s first official technical certification, launched March 12, 2026. The CCA-F is a proctored, architecture-level exam with 60 questions across 5 weighted domains. It tests real-world architectural tradeoffs — not raw prompt technique — and prioritizes structural, deterministic solutions over probabilistic ones. This is the definitive credential for production Claude architects.

Exam Format

  • 60 multiple choice questions across 5 domains — one correct answer, three distractors
  • Pass/fail with a scaled score of 100 to 1000; passing score is 720
  • No penalty for guessing — unanswered questions scored as incorrect, so always answer
  • Proctored exam — not self-paced or open-book
  • 6 production scenario contexts built into the question bank; 4 randomly selected per exam sitting
  • Each scenario presents a realistic production system with constraints, and questions test architectural decisions within that context
  • Emphasis on tradeoff reasoning: “which approach is best given these constraints” rather than “what does this API do”
  • See official-exam-guide for the complete list of all 30 task statements with knowledge/skill items

The Five Domains

Each domain has a fixed weight reflecting its importance in production systems:

1. Agentic Architecture — 27%

The highest-weighted domain. Anthropic describes this as the area that “breaks the most things in production.”

  • Subagent spawning and parallelism patterns
  • Workflow decomposition — when to split, when to keep monolithic
  • Tool selection logic and decision complexity management
  • Dynamic scoping of available tools (giving agents only what they need)
  • Fallback loop design for agent recovery
  • When to use orchestrator vs. autonomous agent patterns

2. Claude Code Configuration — 20%

  • CLAUDE.md and project-level configuration
  • Settings, permissions, and environment setup
  • Hook configuration and automation triggers
  • Model selection and cost management
  • Session management and context preservation

3. Prompt Engineering & Structured Output — 20%

  • Structured output schemas for reliable, parseable responses
  • JSON schema design to prevent hallucinations
  • Prompt refinement methodology — optimize before scaling
  • Chain-of-thought vs. direct prompting tradeoffs
  • Output validation and self-correction patterns

4. Tool Design & MCP Integration — 18%

  • JSON schema for semantic validation of tool inputs
  • Enum constraints for ambiguous inputs — forcing precision
  • Machine-readable identifiers instead of natural language in tool parameters
  • Tool chaining reliability across multi-step workflows
  • Error handling and graceful degradation
  • Pagination patterns for large result sets
  • MCP server architecture and tool orchestration

5. Context & Reliability — 15%

  • “Lost in the middle” effects — how context position affects attention
  • Context bloat prevention and window management
  • Data provenance — tracking where information came from
  • Session resumption when state has changed between sessions
  • Reliability patterns for production systems

Key Architectural Principles

These principles recur across all five domains and form the philosophical backbone of the exam:

  1. Enforce business rules deterministically in backend, never via prompts — prompts are probabilistic; business logic must be guaranteed
  2. Return paginated results with metadata, not bulk data dumps — agents need structured, navigable data
  3. Normalize heterogeneous external API responses before presenting to agents — don’t make the agent deal with format inconsistencies
  4. Use machine IDs instead of ambiguous natural language in tool parametersuser_id: "abc123" not user: "John Smith"
  5. Design lookup/action tool pairs to replace brittle text-based identifiers — search first, then act on the result
  6. Self-correction through dual-field validation — have the model output both the answer and a verification field
  7. Prompt refinement before scaling — optimize the prompt before throwing more compute at the problem

Access and Cost

  • Currently exclusive to Claude Partner Network members
  • The Partner Network is FREE to join for any organization — there is no revenue or size requirement
  • First 5,000 partner employees get the exam free
  • Future pricing for non-partner or post-5,000 seats has not been announced

Study Resources

Official

  • Anthropic Academy — 13 free preparation courses on Skilljar, open to everyone (no partner access needed)
  • Courses cover all 5 domains with hands-on exercises
  • Official Exam Guide (PDF) — Anthropic’s confidential exam guide with all 5 domains, 30 task statements, knowledge/skill items, 6 scenarios, and 9 sample questions. See official-exam-guide for the full breakdown
  • The Architect’s Playbook (PDF) — “Enterprise LLM Architecture: Design Patterns, Anti-Patterns, and System Workflows for Production Deployments.” Visual reference with patterns organized by four production domains. See architects-playbook
  • Anthropic Claude Cookbooks — Official Jupyter notebook repository (github.com/anthropics/anthropic-cookbook) with runnable code for nearly every exam task statement. See claude-cookbooks

Community

  • GitHub exam prep repogithub.com/avidevelops/claude-architect-exam-prep — 15+ scenario-style questions with detailed explanations, 39 stars, 14 forks. See certification-practice-questions for a breakdown
  • claudecertifications.com — free study guide and practice questions
  • Multiple Medium/blog guides available from early test-takers

In this wiki

Future Certifications

Anthropic has confirmed additional certification tiers planned for later in 2026:

  • Seller certification — for partner sales teams positioning Claude solutions
  • Developer certification — for hands-on API and SDK implementation
  • Advanced Architect certification — deeper production architecture, likely requiring CCA-F as prerequisite

Key Takeaways

  • The CCA-F is the first official way to prove Claude production expertise — it tests architectural judgment, not memorization
  • Agentic Architecture at 27% is the single most important domain; invest study time accordingly
  • The exam prioritizes deterministic/structural solutions over prompt engineering tricks — if you can solve it in code, that answer wins
  • Access is gated behind the Partner Network, but joining is free for any organization
  • 13 free Anthropic Academy courses plus active community prep materials mean study resources are accessible
  • The 4-random-scenario format means you cannot predict which contexts you will get — breadth matters
  • Future tiers (seller, developer, advanced architect) create a certification ladder for teams

Try It

  1. Join the Partner Network — it is free. Go to anthropic.com and look for the Claude Partner Network signup
  2. Start with Anthropic Academy — complete the 13 Skilljar courses, starting with the Agentic Architecture and Tool Design modules (highest-weighted domains)
  3. Work through community practice questions — the avidevelops GitHub repo has scenario-based questions that mirror the exam format
  4. Build something with all 5 domains — create a Claude Code project that uses subagents, MCP tools, structured output, and explicit context management. Hands-on experience is the best prep
  5. Read the study guidecertification-study-guide breaks down what to know for each domain

Open Questions

  • What is the passing score? Answered: 720 out of 1000 scaled score (from official exam guide)
  • How long is the exam (time limit)?
  • Can you retake the exam if you fail, and is there a waiting period?
  • What is the certification validity period — does it expire or require renewal?
  • Will the exam content update as new Claude features launch (e.g., Managed Agents)?
  • What is the pricing for exam takers beyond the first 5,000 partner employees?
  • The official exam guide assumes 6+ months hands-on experience — Anthropic Academy courses alone may not be sufficient without production experience