Tooling Audit
Read-only detection skill for hardening and refactor planning at high or critical risk. Use it to identify existing test infrastructure, missing safety tooling, installation tasks, verification commands, and compatibility checks.
Shared contract
Load the tooling-compatibility-matrix skill. The matrix owns offline version/tool baselines.
Files to inspect
Prefer direct reads/globs for these files only when they are in or above the resolved target scope:
pom.xml, build.gradle, build.gradle.kts, gradle/wrapper/gradle-wrapper.properties
package.json, package-lock.json, pnpm-lock.yaml, yarn.lock, tsconfig.json, vite.config.*, jest.config.*, vitest.config.*
pyproject.toml, requirements*.txt, setup.cfg, tox.ini, pytest.ini, poetry.lock
.java-version, .sdkmanrc, .tool-versions, Maven compiler properties, Gradle Java toolchain declarations
Detection rules
- Record language version with evidence when available.
- Record build tool with evidence.
- Detect present
test_framework, assertion_lib, coverage, and mutation tooling.
- Emit max 5 gaps, prioritized by safety impact.
- For each gap, create an install task using the compatibility matrix and include exact verify command.
- Include compatibility checks such as Java/PIT requirements or Node/Python floors.
- If version evidence is missing, mark the version as
hypothesis and require verification.
Compact output
tooling_audit:
language: "" # include version and evidence file:line
build_tool: ""
present:
test_framework: {}
assertion_lib: {}
coverage: {}
mutation: {}
gaps: [] # max 5
install_tasks:
- tool: ""
matrix_ref: ""
build_file: "file:line insertion point"
snippet: ""
verify_command: ""
verify_latest_at_execution: true
compatibility_checks:
- "PIT >=1.15 requires Java 11+; detected Java 17: OK"
1---2name: tooling-audit3description: Trigger: tooling audit, test tooling gaps. Detect build/test/coverage/mutation tooling for refactor safety plans.4license: Apache-2.05---67# Tooling Audit8Read-only detection skill for hardening and refactor planning at high or critical risk. Use it to identify existing test infrastructure, missing safety tooling, installation tasks, verification commands, and compatibility checks.910## Shared contract1112Load the tooling-compatibility-matrix skill. The matrix owns offline version/tool baselines.1314## Files to inspect1516Prefer direct reads/globs for these files only when they are in or above the resolved target scope:1718- `pom.xml`, `build.gradle`, `build.gradle.kts`, `gradle/wrapper/gradle-wrapper.properties`19- `package.json`, `package-lock.json`, `pnpm-lock.yaml`, `yarn.lock`, `tsconfig.json`, `vite.config.*`, `jest.config.*`, `vitest.config.*`20- `pyproject.toml`, `requirements*.txt`, `setup.cfg`, `tox.ini`, `pytest.ini`, `poetry.lock`21- `.java-version`, `.sdkmanrc`, `.tool-versions`, Maven compiler properties, Gradle Java toolchain declarations2223## Detection rules2425- Record language version with evidence when available.26- Record build tool with evidence.27- Detect present `test_framework`, `assertion_lib`, `coverage`, and `mutation` tooling.28- Emit max 5 gaps, prioritized by safety impact.29- For each gap, create an install task using the compatibility matrix and include exact verify command.30- Include compatibility checks such as Java/PIT requirements or Node/Python floors.31- If version evidence is missing, mark the version as `hypothesis` and require verification.3233## Compact output3435```yaml36tooling_audit:37 language: "" # include version and evidence file:line38 build_tool: ""39 present:40 test_framework: {}41 assertion_lib: {}42 coverage: {}43 mutation: {}44 gaps: [] # max 545 install_tasks:46 - tool: ""47 matrix_ref: ""48 build_file: "file:line insertion point"49 snippet: ""50 verify_command: ""51 verify_latest_at_execution: true52 compatibility_checks:53 - "PIT >=1.15 requires Java 11+; detected Java 17: OK"54```