From testing
Suggest new tests to write based on existing source code and test coverage
How this skill is triggered — by the user, by Claude, or both
Slash command
/testing:suggest-testsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze the codebase and suggest new tests to write.
Analyze the codebase and suggest new tests to write.
Detect the project stack: Read build/manifest files to identify the language, test framework, and directory conventions.
Discover source files: Glob for production source files using patterns appropriate to the detected stack.
Discover existing tests: Glob for test files using the project's test directory conventions.
Read each source and test file to understand what is already covered.
Analyze gaps: For each source file, identify:
Output a numbered list of suggested tests, grouped by source file. For each suggestion include:
npx claudepluginhub mattbobambrose/mattbobambrose-claude-skills --plugin testingScouts test coverage gaps, creates test files, continues incomplete suites, tracks persistent coverage using project test config and git analysis.
Assesses three-layer test coverage (unit/integration/E2E) by mapping source code to tests, identifying gaps, and recommending new tests.