What problem does it solve? WordPress block theme repositories accumulate structural problems during development: missing required files, unreplaced placeholder tokens, unescaped PHP output, invalid theme.json settings, and accessibility gaps. Manually checking all of these before shipping is slow and error-prone. ## Core Features & Use Cases - Required File Verification: Confirms the presence of style.css, theme.json, functions.php, templates, parts, style variations, and documentation files. - Placeholder and Quality Scanning: Detects unreplaced {{TOKEN}} placeholders, validates theme.json schema and version, and checks style variation colour slugs. - PHP Security and Accessibility Checks: Flags unescaped echo statements, missing text domains, direct superglobal output, heading hierarchy problems, and missing skip links. - Use Case: Before merging a pull request on a block theme rebuild, run the audit to produce a Markdown report of passing checks, warnings, and errors, plus a follow-up task list for actionable findings. ## Quick Start Audit the WordPress block theme in this repository and save the report to .github/reports/ with a follow-up task list.