Agent Claude Code
Traces which components and scripts import a specific function from src/scripts/utils.js. Use when you're about to rename, remove, or change the signature of a utility function and need to know the blast radius.
Agent Claude Code
Traces which components and scripts import a specific function from src/scripts/utils.js. Use when you're about to rename, remove, or change the signature of a utility function and need to know the blast radius.
Agent Claude Code
Reports what tools are available at the current subagent depth. Used to verify the 5-level nesting limit in Claude Code.
Agent Claude Code
Validates that every import statement in the src/ JS files resolves to a file that actually exists on disk. Use as part of the audit chain after structure-checker, or standalone before a refactor that moves files.
Agent Claude Code
Runs a full audit of the project by orchestrating a chain of specialized subagents. Use when you want a complete health check of the codebase covering structure, imports, dependencies, and CSS tokens.
Agent Claude Code
Checks that all expected source files exist in the project and are correctly referenced from index.html. Use as part of the audit chain after project-auditor, or standalone when files may have been moved or deleted.
Agent Claude Code
Checks that CSS custom properties defined in src/styles/main.css (like --accent, --bg, --text) are consistently applied across all rules and that dark mode overrides exist for every light-mode token. Use when you add or rename a CSS variable.
Agent Claude Code
Audits the HTML and CSS in src/ for accessibility issues, missing ARIA attributes, and broken semantic structure. Use when you change index.html or main.css and want a quick a11y check.