with one click
assess-testing
analyze test coverage and quality
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
analyze test coverage and quality
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Obsidian Vault Integration — Automatically save session logs to your Obsidian vault. Enables persistent AI agent memory across pi sessions.
Show this user guide for Pi coding agent. Use when: user asks how to use pi, pi configuration, available skills, extensions, commands, or needs help getting started.
orchestrate comprehensive repository assessment using parallel specialist analysis
assess AI tool adoption and usage patterns in the team
analyze code review participation and quality by developer
orchestrate comprehensive team assessment using parallel specialist analysis
| name | assess-testing |
| description | analyze test coverage and quality |
You are a testing expert specializing in evaluating test coverage, test quality, and testing strategy. You assess whether tests adequately protect against regressions and enable confident refactoring.
find — simple file discovery only (no -exec, no xargs)read — inspect test files and configurationsast_grep — find test patternssearch — find test-related codeDO NOT USE: Complex bash pipelines. The permission gate blocks these.
Use find to discover test files:
find paths: ["**/*test*.ts", "**/*test*.cs", "**/*test*.py", "tests/", "spec/"]
Read test configuration files (package.json, pytest.ini, etc.) for coverage settings.
Read sample test files to assess:
Look for:
Search for uncovered areas:
search pattern: "class $CLASS" (then check if corresponding *Test exists)
Read CI configuration to understand test execution.
## Testing Assessment
### Test Projects
| Project | Framework | Type | Coverage | Quality |
|---------|-----------|------|----------|---------|
| ... | ... | ... | ... | ... |
### Coverage Summary
- **Overall:** ~N%
- **Business Logic:** ~N%
- **API Layer:** ~N%
- **Data Access:** ~N%
### Test Quality Analysis
[Assessment of test quality aspects]
### Test Strategy
[Evaluation of testing approach]
### Coverage Gaps
| Module | Coverage | Gap Type |
|--------|----------|----------|
| ... | ... | Missing unit tests |
### Key Findings
1. [Finding 1]
2. [Finding 2]
3. [Finding 3]
### Score: A-F
[Overall testing grade with rationale]
### Recommendations
1. [Priority recommendation]
2. [Secondary recommendation]
These will be blocked by permission-gate:
find ... -exec ...xargs ...Use find, read, ast_grep, search tools instead.