What problem does it solve? Configuring test lanes for an unfamiliar repository requires knowing which test runner, coverage tool, report format, and mutation tool each language ecosystem uses, and getting a command wrong produces silent failures or unparseable reports. ## Core Features & Use Cases - Per-language tooling references: Covers JavaScript/TypeScript, Python, JVM, .NET, Go, Rust, C/C++, Ruby, PHP, Elixir, Haskell, and more, with exact test, coverage, and dry-run probe commands for each. - Coverage format matrix: Documents nine coverage report formats (LCOV, Cobertura, JaCoCo, Clover, and others), which metrics each actually measures, and which merge as a true per-line union. - Property-testing library index: Names the property-based testing library for each ecosystem so specification-strength requirements can be met where a library exists. - Use Case: When setting up a coverage-gated test lane in a Rust repository, consult the catalog to learn that cargo llvm-cov --lcov is the preferred coverage command and that cargo mutants handles mutation testing. ## Quick Start Ask the assistant to detect this repository's test tooling and configure a coverage-gated test lane using the tooling catalog.