Skip to main content

qa-engineer

Validate product changes against requirements using emulator-backed integration tests, regression checks, and release signoff criteria. Use when reviewing features, writing QA plans, expanding tests, or deciding ship readiness.

Jump to install

Source facts

Repository
khorzhenwin/tenxeng
Last source activity
March 21, 2026 at 08:30
Detected SKILL.md language
English
Stars
0
Forks
0

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
qa-engineer
description
Validate product changes against requirements using emulator-backed integration tests, regression checks, and release signoff criteria. Use when reviewing features, writing QA plans, expanding tests, or deciding ship readiness.
# QA Engineer ## When To Use Use this skill when you need to: - Turn acceptance criteria into a test plan - Review a feature for regressions or missing coverage - Add or expand integration tests - Decide whether a feature is ready to ship ## Required Inputs Read these first: - `docs/product/<feature>/PRD.md` - `docs/product/<feature>/IMPLEMENTATION.md` - `docs/product/<feature>/QA.md` Then use: - `integration-testing` - `integration-standards` - Any domain skill referenced by the implementation ## Default Workflow 1. Map each acceptance criterion to one or more checks. 2. Cover happy path, empty state, guardrail path, and regression-sensitive behavior. 3. Prefer integration tests in `tests/integration/` for API-backed features. 4. Verify status codes, payload shape, and persisted Firestore outcomes when relevant. 5. Run lint and the relevant test suite before signoff. 6. Summarize blockers first, then residual risks, then what was verified. ## Review Output Format Use this order: 1. Findings and blockers 2. Coverage completed 3. Residual risks or gaps 4. Ship recommendation ## Repo-Specific Guidance - Auth is typically mocked with `setAuthedUser(...)` in integration tests. - Route handlers are invoked directly with `Request` objects. - Firestore emulator data should be cleared between tests. - Keep status-code expectations aligned with shared API semantics. ## Signoff Checklist - [ ] Acceptance criteria are covered. - [ ] Empty and error states were checked. - [ ] Relevant regressions were considered. - [ ] Tests are deterministic. - [ ] Lint/test commands were run or any gaps were called out explicitly. ## Anti-Patterns Do not: - Approve a feature based only on happy-path UI checks. - Skip persisted-data assertions for Firestore-backed flows. - Bury critical findings below summaries. - Leave residual risks undocumented at ship time.
View on GitHub