CCA-F Exam Blog · Domain Deep Dives

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:

SessionArticlesDrill
1Task 3.1: Put Team Standards Where the Team Can Actually Get Them, Mentioning a File Is Not the Same as Loading It, Twelve Unscoped Rules Files Waste 78% of Your Context Budget, /memory Tells You What Is Actually LoadedCreate a root .claude/CLAUDE.md with one @import, then run /memory and confirm what loaded
2Tasks 3.2 and 3.3: Commands Are Prompts. Skills Are Configured Workflows., Three Fields That Turn a Prompt Into a Safe Workflow, fork isolation, personal skills, CLAUDE.md Is Always-On. Skills Are On-Demand., 86% of Your Rules Context Is Wasted Without Path Globs, path rules, File TYPE or File LOCATIONWrite one command, one skill with allowed-tools, and one rules file with paths:
3Tasks 3.4 and 3.5: 55% Rollback Rate When You Skip Planning, If You Already Know the Fix, Just Fix It, Explore sub-agent, Plan → Explore → Direct, examples over text, tests first, interview mode, issue classificationRun one task in plan mode and one directly; note the difference in what happens before the first edit
4Task 3.6: Without -p, Your CI Job Hangs, Schema Flag → 99%, CLAUDE.md Is Your CI Agent’s Only Source of Project Standards, self-review isolation, incremental review, test dedupRun claude -p "..." --output-format json once and look at the output shape

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.md is personal, never shared. .claude/CLAUDE.md is project, version-controlled. Subdirectory CLAUDE.md loads only for edits under it. All active levels stack.
  • @path/to/file.md imports; 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/ need paths: globs; ** matches any depth; overlapping globs both load.
  • Commands are plain markdown in .claude/commands/. Skills are SKILL.md in .claude/skills/<name>/ and support context: fork, allowed-tools, argument-hint.
  • context: fork isolates conversation memory, not the filesystem (Fork Isolates Memory, Not the Filesystem).
  • CI: claude -p "prompt" for non-interactive; --output-format json for structure. There is no --batch, --no-interactive, or CLAUDE_CI variable.
  • /memory shows what is loaded now.

Reason about:

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

  1. Standards live in a senior engineer’s ~/.claude/CLAUDE.md. What happens when a new hire clones the repo?
  2. CLAUDE.md says “follow docs/style.md”. Is style.md in context?
  3. A React rule and a testing rule both match Button.test.tsx. Which loads?
  4. A /migrate-db skill ran DROP TABLE despite an instruction not to. What frontmatter was missing?
  5. 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?
  6. A large repo makes plan mode fill the context. What do you delegate, and to what? (120 Files Explored, 12% Context Used)
  7. A CI job hangs and exits 137. What flag is missing?
  8. Prompt says “output JSON” and it works 73% of the time. What is the reliable alternative?

Mistakes worth reviewing twice

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.

Related articles