Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
borghei avatar

Senior Qa

  • 197 installs
  • 451 repo stars
  • Updated July 21, 2026
  • borghei/claude-skills

Plan test strategy, write cases, automate regression, triage defects, and sign off releases across web, mobile, and API surfaces.

About

Senior QA skill for shipping reliable software: defines test pyramids, authors detailed cases, advises on automation and CI hooks, reproduces edge-case bugs, and produces release sign-off guidance for web, mobile, and backend integrations.

  • Risk-based test planning
  • Automation framework guidance
  • API contract and E2E coverage
  • Defect triage and severity rules
  • Release readiness checklists

Senior Qa by the numbers

  • 197 all-time installs (skills.sh)
  • Ranked #811 of 2,153 Testing & QA skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/borghei/claude-skills --skill senior-qa

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs197
repo stars451
Last updatedJuly 21, 2026
Repositoryborghei/claude-skills

What it does

Plan test strategy, write cases, automate regression, triage defects, and sign off releases across web, mobile, and API surfaces.

Files

SKILL.mdMarkdownGitHub ↗

Senior QA Engineer

Test automation, coverage analysis, and quality assurance patterns for React and Next.js applications. Generates Jest + React Testing Library unit test stubs, analyzes Istanbul/LCOV coverage for gaps, and scaffolds Playwright E2E suites for App Router and Pages Router projects.

Core Capabilities

  • Unit test generation — scan React/TypeScript components and emit Jest + RTL stubs (render, interaction, state, optional jest-axe a11y).
  • Coverage analysis — parse Istanbul/LCOV reports, identify gaps by severity, flag critical business-logic paths, and emit text/HTML/JSON recommendations.
  • E2E scaffolding — detect Next.js routes (dynamic segments, route groups, auth pages) and generate Playwright specs, Page Object Models, fixtures, and config.
  • Test strategy — the testing pyramid, coverage targets by code type, and test organization patterns.
  • Automation patterns — Page Object Model, data factories, MSW mocking, fixtures, and custom render utilities.
  • Quality practices — testable code design, AAA structure, test isolation, flaky-test elimination, and quality metrics.

When to Use

  • Setting up unit tests for new or existing React components.
  • Improving test coverage or preparing for release.
  • Setting up Playwright E2E tests for a Next.js project.
  • Configuring Jest thresholds or improving overall test quality.

Clarify First

Before generating tests, confirm these inputs. If any is unknown or vague, ASK — do not assume:

  • [ ] Test layer — unit (Jest+RTL) vs E2E (Playwright) (selects test_suite_generator vs e2e_test_scaffolder)
  • [ ] Source path — the components or Next.js routes to generate tests from (the scaffolder's input)
  • [ ] Coverage focus — happy path only vs interaction/state/a11y (jest-axe) (sets which test stubs are emitted)

Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.

Tools

ToolPurposeCommand
test_suite_generator.pyGenerate Jest + RTL test stubs from React componentspython scripts/test_suite_generator.py src/components/ --output __tests__/
coverage_analyzer.pyAnalyze Istanbul/LCOV coverage and report gapspython scripts/coverage_analyzer.py coverage/coverage-final.json --threshold 80
e2e_test_scaffolder.pyScaffold Playwright E2E tests from Next.js routespython scripts/e2e_test_scaffolder.py src/app/ --output e2e/

References

Load the reference that matches the task — keep this file lean and pull detail on demand:

  • [references/qa-workflows-and-tools.md](references/qa-workflows-and-tools.md) — quick start, the three tool overviews with sample output, the unit-test/coverage/E2E workflows, common pattern snippets (RTL queries, async, MSW, Playwright locators, jest thresholds), common commands, troubleshooting table, and success criteria. Read when running a workflow.
  • [references/tool-cli-reference.md](references/tool-cli-reference.md) — full flag tables, examples, output formats, and generated artifacts for all three scripts. Read before running the scripts.
  • [references/testing_strategies.md](references/testing_strategies.md) — the testing pyramid, testing types, coverage targets and thresholds, and test organization patterns. Read when designing test strategy.
  • [references/test_automation_patterns.md](references/test_automation_patterns.md) — Page Object Model, data factories, fixture management, mocking strategies (MSW), and custom test utilities. Read when writing test code.
  • [references/qa_best_practices.md](references/qa_best_practices.md) — writing testable code, naming conventions, AAA pattern, test isolation, flaky-test debugging, and quality metrics. Read when improving test quality.

Scope & Limitations

This skill covers:

  • Unit test stub generation for React/TypeScript functional and class components using Jest and React Testing Library.
  • Coverage analysis and gap identification from Istanbul JSON and LCOV report formats.
  • E2E test scaffolding for Next.js App Router and Pages Router projects using Playwright.
  • Accessibility test generation via jest-axe integration.

This skill does NOT cover:

  • Backend API testing (see senior-backend for Express/Node.js testing patterns).
  • Performance or load testing (see senior-devops for infrastructure and performance tooling).
  • Visual regression testing or screenshot comparison workflows.
  • Mobile-native testing (React Native, Flutter) -- this skill targets web browser-based testing only.

Integration Points

SkillIntegrationData Flow
senior-frontendGenerated test stubs align with component patterns from the frontend skillFrontend components --> test_suite_generator.py --> test files
senior-fullstackCode quality analyzer consumes the same coverage reports produced herecoverage_analyzer.py output --> fullstack quality dashboard
senior-devopsE2E test scaffolder generates CI-ready Playwright configs that plug into DevOps pipelinese2e_test_scaffolder.py --> playwright.config.ts --> GitHub Actions workflow
code-reviewerCoverage gaps feed directly into code review checklists for untested changescoverage_analyzer.py gaps --> review checklist items
tdd-guideTDD workflow references this skill's test generator for initial red-phase stub creationTDD cycle --> test_suite_generator.py --scan-only --> write tests --> implement
qa-browser-automationPage Object Models generated here are consumed by the browser automation skill for advanced E2E scenariose2e_test_scaffolder.py --include-pom --> POM classes --> browser automation flows

Related skills

Testing & QAtestingintegrationsfrontend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.