원클릭으로
assess-testing
analyze test coverage and quality
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
analyze test coverage and quality
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.