From silver-bullet
Generates summary reports from review analytics data (.planning/review-analytics.jsonl) showing pass rates, average rounds to clean pass, and common findings by artifact type. Supports filtering by date and artifact type.
How this skill is triggered — by the user, by Claude, or both
Slash command
/silver-bullet:silver-review-stats [--since YYYY-MM-DD] [--type artifact-type][--since YYYY-MM-DD] [--type artifact-type]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produces summary reports from review analytics data. Reads `.planning/review-analytics.jsonl` (and archived files in `.planning/archive/review-analytics-*.jsonl` if `--since` spans archived data) and aggregates metrics by artifact type.
Produces summary reports from review analytics data. Reads .planning/review-analytics.jsonl (and archived files in .planning/archive/review-analytics-*.jsonl if --since spans archived data) and aggregates metrics by artifact type.
/silver:review-stats
/silver:review-stats --since 2026-04-01
/silver:review-stats --type SPEC.md
.planning/review-analytics.jsonl — if missing, display "No review analytics data found. Run artifact reviews to generate data." and stop--since provided, also scan .planning/archive/review-analytics-*.jsonl for records after the date--since and/or --type if provided| Artifact Type | Total Rounds | Pass | Fail | Pass Rate |
|---|---|---|---|---|
| SPEC.md | 12 | 8 | 4 | 66.7% |
| PLAN.md | 20 | 18 | 2 | 90.0% |
artifact_type fieldstatus == "PASS", Fail = status == "ISSUES_FOUND"| Artifact Type | Reviews | Avg Rounds | Min | Max |
|---|---|---|---|---|
| SPEC.md | 4 | 3.0 | 2 | 5 |
| PLAN.md | 8 | 1.5 | 1 | 3 |
artifact_path (group by artifact_path, then count rounds per review session)| Artifact Type | Avg Findings/Round | Total Findings | Most Active Reviewer |
|---|---|---|---|
| SPEC.md | 2.5 | 30 | review-spec |
| PLAN.md | 0.8 | 16 | silver-plan |
---
Total records: {N} | Date range: {earliest timestamp} to {latest timestamp}
Analytics file: .planning/review-analytics.jsonl ({line_count} lines)
--type with no matches: display "No records found for artifact type '{type}'."npx claudepluginhub alo-exp/silver-bullet --plugin silver-bulletGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.