(MUST) For Codex: When QA must use plugins
- Browser - Control the in-app browser
- Chrome - Control the user's real Chrome browser
- Computer Use - Control Windows apps or installed artifacts when QA requires real app interaction outside a browser.
- Playwright: use as an automation arm for browser actions, control sweeps, screenshots, videos, traces, and reports.
- Backend/API tools: use HTTP clients (curl/fetch), database CLI tools, or test runners for non-UI scopes.
(MUST) For Claude or other agents:
- Use the equivalent browser, Chrome/session, computer-control, or HTTP/database CLI capability exposed by that agent/runtime.
QA Runtime Review
Use this skill to verify real runtime behavior from the user's point of view. QA is a no-fix role: inspect, execute, record, classify, and report. Do not repair product code, tests, specs, fixtures, or generated files during QA.
Iron Laws
- QA MUST NOT fix code. Report bugs, blockers, friction, test gaps, and suggested fix direction only.
- Runtime behavior is the source of QA truth. Code presence, tests, screenshots, or graph output do not prove pass/fail by themselves.
- Must have screenshot Evidence for UI scopes. For non-UI / Backend / Database scopes, follow
references/backend-qa-protocol.md (structured payload, DB state diff, and execution logs).
- Tests verify already-correct behavior. Tests do not define expected behavior and must not legitimize wrong UX.
- Wrong tests are findings. A green test that encodes wrong behavior is not QA proof.
- Do not skip steps. Every in-scope flow step matters equally.
- Every in-scope surface, action, state, data path, and blocker needs an explicit verdict or out-of-scope mark.
- An incomplete inventory or action ledger means QA is incomplete.
- If a blocker prevents downstream verification, downstream scope is
Blocked, not passed.
- For final visible QA, open the real built website, runtime, or generated app artifact the same way a user would open it, in a visible browser or app window on the user's physical PC. Headless, hidden, source-only, test-only, or screenshot-only execution cannot approve final visible QA.
- QA must run on the real, officially built application (actual Electron artifact or release binary).
- For UI/visible scopes: Every action (clicking buttons, entering data, changing state) must capture clear PNG screenshots saved sequentially into the
screenshots/ directory.
- For UI/visible scopes: Visually inspect each captured image / visual artifact to detect UI and behavioral defects; never rely solely on in-code assertions or generated
.json/.md summary files.
- Never accept a UI QA report lacking the actual screenshot evidence set for each interaction. For Backend / non-UI reports, require structured HTTP status, response payload, and DB state diff evidence per
references/backend-qa-protocol.md.
Source Of Expected Behavior
Use the first available applicable authority, in this order:
- User's explicit QA scope and no-fix instruction.
- Repository rules such as
AGENTS.md.
- Active execution plan, QA plan, or SPEC family.
- Visible-browser plan when final visible QA is requested or the plan is in scope.
- This skill's QA protocol.
- Coverage model, inventory requirements, and control/state protocols below.
- Automated tests as verification evidence only.
If authorities conflict, state the conflict and follow the higher authority. Never use a test expectation to override real required product behavior.
Record evidence and report findings, including:
- route/page candidates
- mounted entry candidates
- action/handler/API candidates
- data source/store/API/DB candidates
- permission/context gate candidates
- likely source files for suggested fix direction
Pass/fail requires runtime evidence.
Core Workflow (Frontend / UI)
- Preflight → build, runtime, browser (
references/frontend-runtime-and-build-rules.md)
- Inventory → surfaces, controls, states (
references/frontend-coverage-model.md)
- Automation → screenshots, control sweep (
references/frontend-automation-and-control-sweep.md)
- Data flow → field/button tracing, E2E roundtrip (
references/e2e-data-flow.md)
- Source-of-truth → verify against real DB state (
references/source-of-truth-rules.md)
- Locale → if i18n in scope (
references/frontend-i18n-and-locale.md)
- Evidence & Report → screenshots, visual blockers, report, handoff (
references/reporting.md)
Core Workflow (Backend / API & DB)
- Preflight & Protocol → verify server runtime, DB connection, closed-loop API execution (
references/backend-qa-protocol.md)
- Source-of-truth → verify real DB state mutations, no mock data (
references/source-of-truth-rules.md)
- Evidence & Blockers → verify test bounds, blocker propagation (
references/evidence-and-blockers.md)
- Report & Escalation → HTTP status, DB diff, latency/RAM, handoff; escalate to
Edge-Case if hostile chaos is required (references/reporting.md)
Red Flags
Stop, report, or re-scope if:
- QA starts fixing code.
- QA runs only headless/hidden browser for final visible QA.
- QA skips inventory.
- QA skips a step in an in-scope flow.
- QA clicks only the happy path.
- QA ignores disabled, no-op, rejected, empty, error, stale, or blocked states.
- QA uses fake app/commercial data as if it were real production state.
- QA ignores DB/source readback for DB-backed behavior.
- QA ignores locale/session/permission changes when in scope.
- QA reports downstream scope as passed after an upstream blocker.
1---2name: qa3description: Use when the user asks to run QA without fixing code, including mounted runtime behavior, visible user flows, browser-visible app execution, source-of-truth checks, action/state coverage, route/control inventories, Playwright control sweeps, or QA report generation in repositories.4---5# (MUST) For Codex: When QA must use plugins6- Browser - Control the in-app browser7- Chrome - Control the user's real Chrome browser8- Computer Use - Control Windows apps or installed artifacts when QA requires real app interaction outside a browser.9- Playwright: use as an automation arm for browser actions, control sweeps, screenshots, videos, traces, and reports.10- Backend/API tools: use HTTP clients (curl/fetch), database CLI tools, or test runners for non-UI scopes.1112# (MUST) For Claude or other agents:13- Use the equivalent browser, Chrome/session, computer-control, or HTTP/database CLI capability exposed by that agent/runtime.1415# QA Runtime Review1617Use this skill to verify real runtime behavior from the user's point of view. QA is a no-fix role: inspect, execute, record, classify, and report. Do not repair product code, tests, specs, fixtures, or generated files during QA.1819## Iron Laws2021- QA MUST NOT fix code. Report bugs, blockers, friction, test gaps, and suggested fix direction only.22- Runtime behavior is the source of QA truth. Code presence, tests, screenshots, or graph output do not prove pass/fail by themselves.23- Must have screenshot Evidence for UI scopes. For non-UI / Backend / Database scopes, follow `references/backend-qa-protocol.md` (structured payload, DB state diff, and execution logs).24- Tests verify already-correct behavior. Tests do not define expected behavior and must not legitimize wrong UX.25- Wrong tests are findings. A green test that encodes wrong behavior is not QA proof.26- Do not skip steps. Every in-scope flow step matters equally.27- Every in-scope surface, action, state, data path, and blocker needs an explicit verdict or out-of-scope mark.28- An incomplete inventory or action ledger means QA is incomplete.29- If a blocker prevents downstream verification, downstream scope is `Blocked`, not passed.30- For final visible QA, open the real built website, runtime, or generated app artifact the same way a user would open it, in a visible browser or app window on the user's physical PC. Headless, hidden, source-only, test-only, or screenshot-only execution cannot approve final visible QA.31- QA must run on the real, officially built application (actual Electron artifact or release binary).32- For UI/visible scopes: Every action (clicking buttons, entering data, changing state) must capture clear PNG screenshots saved sequentially into the `screenshots/` directory.33- For UI/visible scopes: Visually inspect each captured image / visual artifact to detect UI and behavioral defects; never rely solely on in-code assertions or generated `.json`/`.md` summary files.34- Never accept a UI QA report lacking the actual screenshot evidence set for each interaction. For Backend / non-UI reports, require structured HTTP status, response payload, and DB state diff evidence per `references/backend-qa-protocol.md`.3536## Source Of Expected Behavior3738Use the first available applicable authority, in this order:39401. User's explicit QA scope and no-fix instruction.412. Repository rules such as `AGENTS.md`.423. Active execution plan, QA plan, or SPEC family.434. Visible-browser plan when final visible QA is requested or the plan is in scope.445. This skill's QA protocol.456. Coverage model, inventory requirements, and control/state protocols below.467. Automated tests as verification evidence only.4748If authorities conflict, state the conflict and follow the higher authority. Never use a test expectation to override real required product behavior.4950Record evidence and report findings, including:51- route/page candidates52- mounted entry candidates53- action/handler/API candidates54- data source/store/API/DB candidates55- permission/context gate candidates56- likely source files for suggested fix direction5758Pass/fail requires runtime evidence.5960## Core Workflow (Frontend / UI)61621. **Preflight** → build, runtime, browser (`references/frontend-runtime-and-build-rules.md`)632. **Inventory** → surfaces, controls, states (`references/frontend-coverage-model.md`)643. **Automation** → screenshots, control sweep (`references/frontend-automation-and-control-sweep.md`)654. **Data flow** → field/button tracing, E2E roundtrip (`references/e2e-data-flow.md`)665. **Source-of-truth** → verify against real DB state (`references/source-of-truth-rules.md`)676. **Locale** → if i18n in scope (`references/frontend-i18n-and-locale.md`)687. **Evidence & Report** → screenshots, visual blockers, report, handoff (`references/reporting.md`)6970## Core Workflow (Backend / API & DB)71721. **Preflight & Protocol** → verify server runtime, DB connection, closed-loop API execution (`references/backend-qa-protocol.md`)732. **Source-of-truth** → verify real DB state mutations, no mock data (`references/source-of-truth-rules.md`)743. **Evidence & Blockers** → verify test bounds, blocker propagation (`references/evidence-and-blockers.md`)754. **Report & Escalation** → HTTP status, DB diff, latency/RAM, handoff; escalate to `Edge-Case` if hostile chaos is required (`references/reporting.md`)7677## Red Flags7879Stop, report, or re-scope if:8081- QA starts fixing code.82- QA runs only headless/hidden browser for final visible QA.83- QA skips inventory.84- QA skips a step in an in-scope flow.85- QA clicks only the happy path.86- QA ignores disabled, no-op, rejected, empty, error, stale, or blocked states.87- QA uses fake app/commercial data as if it were real production state.88- QA ignores DB/source readback for DB-backed behavior.89- QA ignores locale/session/permission changes when in scope.90- QA reports downstream scope as passed after an upstream blocker.