From argus-qa
Reads issues.jsonl after the audit, writes coverage-report.json, and prints a terminal summary. Does NOT write a markdown file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/argus-qa:qa-coverage-reportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reads all issues from `.tmp/qa-<run-id>/issues/`, deduplicates, writes a compact JSON report, and prints a terminal summary. No markdown file is written.
Reads all issues from .tmp/qa-<run-id>/issues/, deduplicates, writes a compact JSON report, and prints a terminal summary. No markdown file is written.
{project-root}/.tmp/qa-<run-id>/issues/ for all .jsonl filesissueId (keep first occurrence)qa-state.json → chronicIssuesaudit-plan.json for the full cell list (for coverage counts)Write {project-root}/.tmp/qa-<run-id>/coverage-report.json:
{
"runId": "qa-20260520-abc1",
"completedAt": "ISO-8601",
"cellsTotal": 60,
"issuesTotal": 35,
"bySeverity": { "critical": 0, "high": 12, "medium": 15, "low": 8 },
"bySkill": { "qa-detect-overflow": 3, "qa-test-navigation": 2 },
"bugsFiledCount": 12,
"chronicIssuesCount": 2,
"coverage": [
{ "route": "/dashboard", "mobile": 1, "tablet": 0, "desktop": 0 }
]
}
Print this to stdout — this is the only output shown to the user:
┌────────────────────────────────────────────────────────────┐
│ Argus — Run Complete │
├────────────────────────────────────────────────────────────┤
│ Run : {runId} │
│ Cells : {cellsRun} / {cellsTotal} │
│ Routes : {routeCount} │
├────────────────────────────────────────────────────────────┤
│ Issues │
│ Critical : {critical} │
│ High : {high} │
│ Medium : {medium} │
│ Low : {low} │
│ Total : {issuesTotal} │
├────────────────────────────────────────────────────────────┤
│ Bugs filed : {bugsFiledCount} │
│ Report : .tmp/{runId}/coverage-report.json │
│ Screenshots: .tmp/{runId}/screenshots/ │
└────────────────────────────────────────────────────────────┘
If chronicIssues.length > 0, append after the box:
Chronic ({n} issues seen 3+ consecutive runs):
• {description} — {route} ({seenCount} runs)
bySeverity: critical → high → medium → lowbugsFiledCount = count of issues where adoWorkItemId is present and non-null| Artifact | Path |
|---|---|
| Issues | {project-root}/.tmp/qa-<run-id>/issues/**/*.jsonl |
| Audit plan | {project-root}/.tmp/qa-<run-id>/audit-plan.json |
| Run state | {project-root}/.claude/qa-state.json |
| Output | {project-root}/.tmp/qa-<run-id>/coverage-report.json |
npx claudepluginhub luqman-ud-din/blackbox-qa-agent --plugin argus-qaGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.