skills/qa/SKILL.md
Systematic QA testing with health scoring — tests web app, finds bugs, fixes them iteratively. Regression mode for re-testing known issues.
npx skillsauth add ShaheerKhawaja/ProductionOS qaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Systematic QA testing with health scoring — tests web app, finds bugs, fixes them iteratively. Regression mode for re-testing known issues.
| Parameter | Values | Default | Description |
|-----------|--------|---------|-------------|
| url | string | -- | URL to test (default: localhost dev server) |
| mode | string | full | Mode: full | regression | smoke (default: full) |
| fix | string | on | Auto-fix found issues: on | off (default: on) |
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.
| Scenario | Action | |----------|--------| | No target provided | Ask for clarification with examples | | Target not found | Search for alternatives, suggest closest match | | Agent dispatch fails | Fall back to manual execution, report the error | | Ambiguous input | Present options, ask user to pick | | Execution timeout | Save partial results, report what completed |
tools
Implementation planning workflow that turns approved ideas into dependency-aware execution plans.
development
Local RAG and Graph RAG over the SecondBrain wiki vault. Progressive context loading (hot cache -> index -> domain -> entity). Graph traversal via wikilink resolution. Use when agents need cross-project context, when answering questions that span multiple domains, or when building context for planning tasks. Triggers on: "wiki context", "cross-project context", "what do we know about", "check the wiki", "graph context", "/wiki-rag".
devops
UX improvement pipeline — creates user stories from UI guidelines, maps user journeys, identifies friction, dispatches fix agents. The user-experience equivalent of /production-upgrade.
development
Test-driven development workflow that writes failing tests first, implements minimally, and refactors safely.