What problem does it solve? After implementing an OpenSpec change in an Android project, you need to confirm the code compiles, passes tests, and meets quality standards before archiving. This Skill automates that verification workflow using the project's Gradle wrapper. ## Core Features & Use Cases - Module-Scoped Verification: Uses CodeGraph exploration to identify affected Gradle modules and runs targeted tasks like :module:assembleDebug and :module:testDebugUnitTest instead of slow project-wide builds. - Quality Gate Checks: Detects and runs only the static analysis tools configured in the project (ktlint, detekt, spotless, Android Lint), marking missing ones as N/A. - Structured Reporting: Produces a pass/fail verification report covering static analysis, lint, compilation, and unit tests with suggested fix commands. - Use Case: After implementing a login feature change, run verification to confirm :feature:login compiles, passes its 42 unit tests, and has no lint errors before archiving the change. ## Quick Start Verify the OpenSpec change named add-user-auth by running the Gradle build, lint, and unit tests for the affected modules.