โ† Exam Hub
ยง3 of the Capability Exam

Code Graph

7 drills covering code_repos, code_search, code_outline, code_context, code_callers, code_callees, code_status.

Prerequisite: Requires an indexed repo. Index this one first if needed.
3.1
code_repos
Which repositories are indexed in the code graph?
โœ… code_repos lists indexed repos.
3.2
code_search
Where is the function matchSkill defined in this codebase?
โœ… code_search points to lib/workers/skills.js.
3.3
code_outline
Give me an outline of the symbols in lib/workers/skills.js.
โœ… code_outline lists loadSkillIndex, matchSkill, matchSkills, injectSkill, executeSkill, etc.
3.4
code_context
Show me the source of the loadSkillIndex function.
โœ… code_context returns the function's source slice.
3.5
code_callers
What calls matchSkills across the codebase?
โœ… code_callers finds the call site in lib/agent/index.js.
3.6
code_callees
What functions does loadSkillIndex call?
โœ… code_callees lists findSkillFiles, parseFrontmatter, etc.
3.7
code_status
Show me the code graph index status โ€” which files are indexed and whether the watcher is running.
โœ… code_status reports indexed file count, watcher state, and any pending re-index operations.
Back to Exam Hub & Scorecard