From productionos
Systematic QA testing with health scoring — tests web app, finds bugs, fixes them iteratively. Regression mode for re-testing known issues.
npx claudepluginhub shaheerkhawaja/productionos --plugin productionoscommands/# /qa — Systematic QA Testing Test the web app systematically. Find bugs. Fix them. Re-test. Score health 0-100. ## Step 0: Preamble Run `templates/PREAMBLE.md`. Detect dev server URL. ## Step 1: Discover ## Step 2: Smoke Test Dispatch `browser-controller` to navigate key pages: - Home/landing - Auth (login/signup) - Dashboard/main - Settings - Any page with forms Report: loads? errors? missing elements? ## Step 3: Deep QA (if mode = full) Dispatch parallel agents: - `browser-controller`: Navigate every route, screenshot each - `ux-auditor`: Full WCAG + interaction audit on each page...
/qaRuns local QA quality gate on current changes vs base branch (default main), evaluating test coverage, error handling, code quality; outputs verdict (PASS/WARN/CRITICAL_FAIL), summary, findings, and JSON.
/qaSenior QA Engineer that creates test plans and executes comprehensive testing including auth flows and edge cases. Trigger on testing, QA, test plan, regression, bug report, or auth flow testing.
Test the web app systematically. Find bugs. Fix them. Re-test. Score health 0-100.
Run templates/PREAMBLE.md. Detect dev server URL.
# Detect dev server
curl -s http://localhost:3000 > /dev/null 2>&1 && echo "Dev server: http://localhost:3000"
curl -s http://localhost:8000 > /dev/null 2>&1 && echo "Dev server: http://localhost:8000"
Dispatch browser-controller to navigate key pages:
Report: loads? errors? missing elements?
Dispatch parallel agents:
browser-controller: Navigate every route, screenshot eachux-auditor: Full WCAG + interaction audit on each pageself-evaluator: Score each page's qualityCalculate 0-100 score:
For each bug found:
Write to .productionos/QA-REPORT-{timestamp}.md:
# QA Report
**Health Score:** X/100
**Pages Tested:** N
**Bugs Found:** N
**Bugs Fixed:** N
**Regressions:** N (if regression mode)
Run templates/SELF-EVAL-PROTOCOL.md on QA thoroughness.