Claude Code provides six built-in tools for working with codebases: Read, Write, Edit, Bash, Grep, and Glob. Each has a specific purpose, and using the wrong tool for a task wastes time, context tokens, or both. The exam deliberately presents scenarios where confusing these tools leads to incorrect answers.
Grep vs Glob: The Core Distinction
This is the distinction that matters most in this task statement. Get it wrong and you'll lose marks.
Grep searches file CONTENTS for patterns. Use Grep when you need to find text inside files. Function callers. Error messages. Import statements. Variable assignments. Any time you are searching for what files contain, Grep is the tool.
// Find all files that call processLegacyOrder()
Grep: "processLegacyOrder"
// Find all error messages containing "timeout"
Grep: "timeout"
// Find all files that import a specific module
Grep: "import.*from 'utils/auth'"
Glob matches file PATHS by naming patterns. Use Glob when you need to find files by name, extension, or directory structure. Test files. Configuration files. All TypeScript files in a specific directory. Any time you are searching for files based on their path, Glob is the tool.
// Find all test files
Glob: "**/*.test.tsx"
// Find all configuration files
Glob: "**/config.*"
// Find all MDX files in the domains directory
Glob: "content/domains/**/*.mdx"
The distinction in one sentence: Grep finds what is INSIDE files. Glob finds files by their NAMES.
The exam presents scenarios where a developer uses the wrong tool. Use Glob to find function callers and it fails - Glob matches paths, not contents. Use Grep to find test files by naming pattern and it works technically (by searching for "test" in filenames via content), but it's the wrong tool, and the exam expects you to identify the correct one.
Read, Write, and Edit
These three tools handle file operations, each optimised for a different use case.
Edit performs targeted modifications using unique text matching. You specify the exact text to find and its replacement. It's fast and precise because it touches only the specific text you identify.
Edit:
old_string: "function processOrder(id: string)"
new_string: "function processOrder(id: string, validate: boolean = true)"
When Edit fails: Edit requires unique text matching. If the text you specify appears in multiple places in the file, Edit can't tell which occurrence you mean, so it fails. That's a safety mechanism, not a bug - it stops you changing text you never meant to touch.
When Edit can't find a unique anchor. The fix per the Edit tool docs is to widen old_string with more surrounding context until it pins down one location, or set replace_all: true if you actually want every occurrence updated. Both options keep you on Edit and cost almost no extra context. Read + Write (load the whole file, write the whole file back) is the last resort. It works. But you've now spent a file's worth of tokens on what was usually a one-line change.
The ordering:
- Try Edit with the shortest anchor that's plausibly unique.
- On a non-unique match, widen
old_stringuntil it matches one location, or usereplace_all: trueif you want every occurrence changed. - Only fall back to Read + Write when neither of those can disambiguate the target.
Don't default to Read + Write for every modification. The exam penalises that because it burns context tokens. It also penalises jumping straight from a non-unique Edit failure to Read + Write. Widening the anchor or using replace_all is the documented response. Read + Write is the fallback, not the next step.
Incremental Codebase Understanding
How you explore a codebase matters as much as which tools you use. There's a right way and a wrong way.
Wrong: Read all files upfront. Loading every file into context before you know what you need is a context-budget killer. A 200-file codebase read in full swallows your entire context window, mostly on files that have nothing to do with your task. No other exploration mistake costs you more.
Right: Incremental discovery. Start narrow. Expand only as needed.
Grep to find entry points. Search for the function name, class name, or error message that anchors your investigation. This tells you which files are relevant.
Read to follow imports and trace flows. Once you know which files matter, Read them to understand the code structure. Follow import statements to discover related files.
Grep again to trace usage. If you find a wrapper function or re-export, Grep for that name across the codebase to find all consumers.
Read only what you need. Each file you read should be justified by what you discovered in the previous step.
That's minimal context for maximum understanding. You map the codebase progressively, spending tokens only on files that matter to the task.
Tracing Function Usage Across Wrapper Modules
A common codebase pattern: a function is defined in one module, re-exported through a wrapper, and consumed through the wrapper's name. A simple Grep for the original name misses every consumer who imports through the wrapper.
The correct approach:
- Grep for the function definition to find where it is defined
- Read the defining file to identify exported names
- Grep for each exported name across the codebase to find all consumers
- If the function is re-exported through a barrel file (e.g.
index.ts), Grep for the barrel file's module name to find consumers who import from it
The multi-step trace catches indirect consumers a single Grep would miss.
The Deprecation Scenario
This one turns up constantly in exam prep: find every file that calls a deprecated function AND the test files that exercise it. The correct sequence:
- Grep for the function name - finds every file whose contents reference the function, including any tests that import it directly (content search)
- Glob for sibling test files - finds the test file that pairs with each caller by naming convention, e.g.
OrderProcessor.ts→OrderProcessor.test.tsx, even when the test exercises the function indirectly through the source module (path matching) - Grep again for wrapper names - when a caller exposes the function through a wrapper (e.g.
applyLegacyOrdercallsprocessLegacyOrderinternally), Grep for the wrapper name to find tests that cover the function transitively through it
Say Grep reveals that OrderProcessor.ts and RefundHandler.ts call the deprecated function. Glob for **/OrderProcessor.test.* and **/RefundHandler.test.* to pull in their sibling test files, even if those tests never mention processLegacyOrder by name. And if either source file wraps the function under a new name, Grep for the wrapper to catch any remaining tests.
This is Grep, then Glob, then Grep again - content search for direct references, path matching for adjacent tests, content search for indirect coverage. Not Glob first.
Key Concept
Grep searches file contents. Glob matches file paths. Edit is the default for modifications. On a non-unique match, widen the anchor or use replace_all: true. Read + Write is the last-resort fallback. Build codebase understanding incrementally. Never read all files upfront.