CCA Study Tips for Domain 3: Claude Code Configuration & Workflows
CCA study tips for Claude Code configuration: a reading order through the Domain 3 articles, what to memorise vs reason about, and drills.
Updated
Study Domain 3 (Claude Code Configuration & Workflows, 20% of the CCA-F) by reading the 26 articles in task order over four sessions, creating the real files as you go, and drilling scenario questions that ask “which file, which mechanism, which mode”. Domain 3 rewards hands-on time more than any other domain, so this plan builds a small drill around each session.
For what the domain covers and why it is worth a fifth of the exam, see CCA Domain 3 Explained. This post is only about how to study it.
What order should I read the Domain 3 articles in?
Use the task order on the Domain 3 study guide page, with a short drill after each session:
If Claude Code is new to you, read the Foundations pieces first: Claude Code: A CLI Tool, Not an IDE, Three Levels of CLAUDE.md, and Four Permission Modes.
What should I memorise, and what should I reason about?
Memorise (these are file-location and syntax facts):
~/.claude/CLAUDE.mdis personal, never shared..claude/CLAUDE.mdis project, version-controlled. SubdirectoryCLAUDE.mdloads only for edits under it. All active levels stack.@path/to/file.mdimports; a plain mention does not.@~/...resolves to each user’s home and silently loads nothing for people who lack the file.- Rules files in
.claude/rules/needpaths:globs;**matches any depth; overlapping globs both load. - Commands are plain markdown in
.claude/commands/. Skills areSKILL.mdin.claude/skills/<name>/and supportcontext: fork,allowed-tools,argument-hint. context: forkisolates conversation memory, not the filesystem (Fork Isolates Memory, Not the Filesystem).- CI:
claude -p "prompt"for non-interactive;--output-format jsonfor structure. There is no--batch,--no-interactive, orCLAUDE_CIvariable. /memoryshows what is loaded now.
Reason about:
- Type or location? File type (all tests, all Terraform) means a glob rule; a location (everything under
database/) means a directory CLAUDE.md. - Command or skill? Only a skill if you need isolation, tool restriction, or argument prompting; otherwise a command is simpler and faster.
- CLAUDE.md or skill? Always-on rule versus on-demand workflow.
- Plan mode or direct? Uncertainty, not file count. Multiple valid approaches or unfamiliar code means plan; a known fix means direct.
- Describe or show? When the format matters, show a concrete example (Text Descriptions Hit an Ambiguity Ceiling at 63%. Examples Reach 91%.); when correctness matters, write tests first (Tests First: 3 Iterations to 15/15).
- One issue or several? Interacting changes go together, independent ones separately (Classify Before Submitting).
- Same-session review or independent? Independent, with prior comments and existing tests supplied (Claude Reviewing Its Own Code Is Barely a Review, 60% Duplicate Test Suggestions).
What practice cadence works for Domain 3?
- After each session, do 15 to 20 Domain 3 practice questions. Before revealing, name the mechanism: level, import, glob, skill frontmatter, mode, or CI flag. Most Domain 3 questions collapse to one of those six.
- After session 4, do a 40-question block. Domain 3 has more distinct facts than Domains 1 or 2, so a longer block is useful for finding the ones that have not stuck.
- Review mistakes every few days. The recurring ones are user-level versus project-level, section headers mistaken for scoping, and picking a fictional CI flag. Each is a two-minute reread.
- Final week: the free CCA-F mock exam will include roughly 12 Domain 3 questions among 60 (confirm current weights on the official Anthropic / Pearson VUE page before you register).
Self-check questions before moving on
- Standards live in a senior engineer’s
~/.claude/CLAUDE.md. What happens when a new hire clones the repo? - CLAUDE.md says “follow docs/style.md”. Is style.md in context?
- A React rule and a testing rule both match
Button.test.tsx. Which loads? - A
/migrate-dbskill ranDROP TABLEdespite an instruction not to. What frontmatter was missing? - Which mode for “add caching to the API layer” in a codebase you have never seen? Which for a stack trace pointing at line 42?
- A large repo makes plan mode fill the context. What do you delegate, and to what? (120 Files Explored, 12% Context Used)
- A CI job hangs and exits 137. What flag is missing?
- Prompt says “output JSON” and it works 73% of the time. What is the reliable alternative?
Mistakes worth reviewing twice
- Believing ”## Backend” as a heading in a root file scopes rules (Section Headers Do Not Enforce Scope — Path Rules Do).
- Making everything a skill and paying fork latency on two-second operations.
- Naming a personal skill the same as a project skill (Personal Skills Live in ~/.claude/skills/ — Name Them Differently).
- Skipping the interview step on a large task and rebuilding three times (Three Rounds of Rework Because Nobody Asked About Deployment Topology).
- Assuming the CI agent knows anything your local session knew.
- Repeating review comments because the reviewer never saw prior comments (62% of Review Comments Were Duplicates).
Next step
Start session 1 on the Domain 3 study guide page with a real repo open, and finish the Domain 3 practice set by the end of the week. For a deeper look at the CLAUDE.md piece specifically, read How to Write an Effective CLAUDE.md File. When your accuracy holds, sit the free CCA-F mock exam.
Frequently asked questions
Can I study Domain 3 without installing Claude Code?
expand_more
You can pass it from reading and practice questions, but an hour of creating the actual files (CLAUDE.md at three levels, one scoped rules file, one skill) makes the file-location questions almost automatic. We recommend the hands-on hour if you can spare it.
How many Domain 3 articles are there?
expand_more
26 in our study guide, grouped into six tasks: config hierarchy, commands vs skills, frontmatter paths, plan mode, examples over descriptions, and CI usage. Four sessions is a comfortable pace.
Are permission modes tested in Domain 3?
expand_more
They appear as background context. The Foundations primer covers the four permission modes; Domain 3 questions more often test what a skill's allowed-tools restricts or whether a CI run should use -p, so read the primer once and move on.
Put it into practice
Take the free 60-question Claude Certified Architect mock exam, or work through the CCA-F study guide domain by domain.
Certified Architect is an independent, community-built study site. Exam facts reflect public Anthropic / Pearson VUE information and can change — always confirm on the official pages before registering.