What problem does it solve? After test cases are written, teams still need to run them, compare actual behavior against expectations, and document defects in a consistent, triage-ready format. This Skill turns executed test cases into standardized CSV bug reports with severity, priority, and risk scoring, eliminating ad-hoc prose bug summaries. ## Core Features & Use Cases - Test Execution Workflow: Maps test cases to Vitest route tests, controller tests, service tests, mapper tests, view/template tests, and Supertest integration runs in a Node 22 Express/Nunjucks app. - Strict CSV Schema: Produces a fixed 9-column CSV (Title, Environment, Steps to Reproduce, Expected Result, Actual Result, Severity, Priority, Risk Score, Attachments/Evidence) with mandatory validation guardrails. - Risk Scoring Model: Calculates a numeric Risk Score by multiplying Severity and Priority values (Critical=4 through Low=1) for consistent defect triage. - Use Case: After generating test cases for a job-role listing feature, run the Sanity suite, discover that closed roles render in the list, and produce a CSV row with reproduction steps, environment details, severity High, priority High, risk score 9, and Vitest output as evidence. ## Quick Start Run the test cases from the Test_Cases output against this repo and generate a CSV bug report for any failures you observe.