What problem does it solve? Answering "which source files have no tests?" normally requires a green build and a full coverage run, which takes minutes on a real repository. This Skill answers that question statically in seconds by parsing source and test files, producing a deterministic source-to-test pairing map without any build, dependency resolution, or compilation. ## Core Features & Use Cases - Dual analysis engines: A Roslyn-based analyzer for .NET-only repositories with strict namespace disambiguation, and a tree-sitter polyglot analyzer covering Python, TypeScript/JavaScript, Go, Java, Rust, Ruby, and C#. - Structured JSON output: Emits untested source lists ordered by declaration count, suggested test file paths, source-to-test pairing maps, and orphan test detection. - Use Case: Before writing new tests, run the analyzer on a repository to get a prioritized worklist of untested files with suggested test locations, then verify each newly written test pairs to its intended source file. ## Quick Start Ask the AI to find all untested source files in this repository and list the suggested test file locations for the top candidates.