scorecard
View score history and trends for skills
/scorecard — Score History & Trends
Display historical scores for skills that have been evaluated by Verdict.
Arguments
skill-name(optional): Filter to a specific skill. If omitted, show all skills.--last N(optional): Show only the last N evaluations. Default: 10.--all(optional): Show all evaluations regardless of limit.
What to Do
- Read score files from
skills/judge/scores/directory - Parse each JSON score file
- Filter by skill name if provided
- Sort by timestamp (newest first)
- Limit to last N if specified
- Display formatted table:
┌─────────────────────────────────────────────────────────────┐
│ VERDICT SCORE HISTORY │
├──────────────┬───────┬───────┬────────────┬────────────────┤
│ Skill │ Score │ Grade │ Date │ Trend │
├──────────────┼───────┼───────┼────────────┼────────────────┤
│ code-review │ 8.2 │ B+ │ 2026-02-13 │ ↑ (+0.4) │
│ code-review │ 7.8 │ B │ 2026-02-12 │ → (+0.0) │
│ security-scan│ 9.1 │ A │ 2026-02-13 │ ↑ (+0.6) │
├──────────────┼───────┼───────┼────────────┼────────────────┤
│ AVERAGES │ 8.37 │ B+ │ │ │
└──────────────┴───────┴───────┴────────────┴────────────────┘
-
Calculate trends:
- Compare each score to the previous score for the same skill
- ↑ = improved by 0.3+
- ↓ = declined by 0.3+
- → = stable (within 0.3)
-
Show averages per skill and overall
If no scores exist yet, inform the user: "No scores found. Run /judge after a skill execution to start building history."