
Test Metrics Dashboard
- 42 installs
- 433 repo stars
- Updated August 4, 2026
- proffesor-for-testing/agentic-qe
test-metrics-dashboard is a Claude Code skill for testing & qa.
About
test-metrics-dashboard is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted development.
- test-metrics-dashboard
- Testing & QA
- AI-coding skill
Test Metrics Dashboard by the numbers
- 42 all-time installs (skills.sh)
- +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #1,262 of 2,153 Testing & QA skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill test-metrics-dashboardAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 42 |
|---|---|
| repo stars | ★ 433 |
| Last updated | August 4, 2026 |
| Repository | proffesor-for-testing/agentic-qe ↗ |
How do I helps with testing & qa tasks.?
Helps with testing & qa tasks.
Who is it for?
Best when you're working on testing & qa and need structured help with test metrics dashboard.
Skip if: Teams with no testing & qa needs, or anyone wanting a generic chat assistant without this specific workflow.
When should I use this skill?
When you need to helps with testing & qa tasks., or when test-metrics-dashboard is a claude code skill for testing & qa.
What you get
Structured output aligned to test-metrics-dashboard: test-metrics-dashboard, Testing & QA.
Files
Test Metrics Dashboard
Data & Analysis skill for querying test execution history, identifying trends, and surfacing actionable quality metrics.
Activation
/test-metrics-dashboardKey Metrics
Test Health Metrics
| Metric | Formula | Target | Alert |
|---|---|---|---|
| Pass Rate | Passed / Total | > 95% | < 90% |
| Flakiness Rate | Flaky / Total | < 5% | > 10% |
| MTTR | Avg time from failure to fix | < 4 hours | > 24 hours |
| Execution Time | Total suite duration | < 10 min | > 20 min |
| Coverage Delta | Current - Previous | >= 0% | < -2% |
Data Collection
# Export Jest results to JSON
npx jest --json --outputFile=test-results/$(date +%Y-%m-%d).json
# Parse results for dashboard
jq '{
date: .startTime,
total: .numTotalTests,
passed: .numPassedTests,
failed: .numFailedTests,
duration_ms: (.testResults | map(.endTime - .startTime) | add),
pass_rate: ((.numPassedTests / .numTotalTests) * 100),
flaky: [.testResults[] | select(.numPendingTests > 0)] | length
}' test-results/$(date +%Y-%m-%d).jsonTrend Analysis
# Compare last 5 runs
for f in $(ls -t test-results/*.json | head -5); do
jq --arg file "$f" '{
file: $file,
pass_rate: ((.numPassedTests / .numTotalTests) * 100 | floor),
duration_s: ((.testResults | map(.endTime - .startTime) | add) / 1000 | floor)
}' "$f"
doneTop Failing Tests
# Find most frequently failing tests across runs
for f in test-results/*.json; do
jq -r '.testResults[] | select(.numFailingTests > 0) | .testFilePath' "$f"
done | sort | uniq -c | sort -rn | head -10Run History
Store dashboard data in ${CLAUDE_PLUGIN_DATA}/test-metrics.log:
2026-03-18|95.2|4.1|312|82.5|3Format: date|pass_rate|flakiness_rate|duration_s|coverage_pct|failed_count
Read history for trend detection:
# Coverage trending down?
tail -5 "${CLAUDE_PLUGIN_DATA}/test-metrics.log" | awk -F'|' '{print $5}' | sort -n | head -1Composition
Feeds into:
- `/qe-quality-assessment` — quality gate decisions based on metrics
- `/test-failure-investigator` — investigate top failing tests
- `/coverage-drop-investigator` — when coverage trends down
Gotchas
- Metrics without baselines are meaningless — establish baselines before tracking trends
- Flakiness rate is underreported — a test that fails 1/100 times still breaks CI weekly
- Duration trends upward over time as test count grows — set alerts on rate of increase, not absolute value
- Agent may report metrics from a single run as "trends" — need 5+ data points for meaningful trends
Related skills
FAQ
What does test-metrics-dashboard do?
test-metrics-dashboard is a Claude Code skill for testing & qa.
When should I use test-metrics-dashboard?
When you need to helps with testing & qa tasks., or when test-metrics-dashboard is a claude code skill for testing & qa.
What are the main capabilities?
test-metrics-dashboard; Testing & QA; AI-coding skill.