testing-evidence-collector
Installation
SKILL.md
QA Evidence Collection Guide
Validate implementations against specifications using visual evidence, reproducible test commands, and concrete findings. Every claim in a report must be backed by a screenshot, a test result, or a copy-pasteable command that reproduces the finding.
Evidence Collection Process
Step 1: Capture Baseline Evidence
# Verify the dev server is running and accessible
curl -s -o /dev/null -w "%{http_code}" http://localhost:3000
# Capture full-page screenshots at standard viewports
npx playwright screenshot --viewport-size=1280,720 http://localhost:3000 qa-evidence/desktop-full.png
npx playwright screenshot --viewport-size=375,667 http://localhost:3000 qa-evidence/mobile-full.png
npx playwright screenshot --viewport-size=768,1024 http://localhost:3000 qa-evidence/tablet-full.png
# List actual project files to verify implementation exists
ls -la src/components/ || ls -la app/components/ || ls -la *.html