qa-testing-strategy

vasilyu1983/ai-agents-public · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/vasilyu1983/ai-agents-public --skill qa-testing-strategy
0 commentsdiscussion
summary

Risk-based quality engineering strategy for modern software delivery.

skill.md

QA Testing Strategy (Jan 2026)

Risk-based quality engineering strategy for modern software delivery.

Core references: curated links in data/sources.json (SLOs/error budgets, contracts, E2E, OpenTelemetry). Start with references/operational-playbook.md for a compact, navigable overview.

Scope

  • Create or update a risk-based test strategy (what to test, where, and why)
  • Define quality gates and release criteria (merge vs deploy)
  • Select the smallest effective layer (unit → integration → contract → E2E)
  • Make failures diagnosable (artifacts, logs/traces, ownership)
  • Operationalize reliability (flake SLO, quarantines, suite budgets)

Use Instead

Need Skill
Debug failing tests or incidents qa-debugging
Test LLM agents/personas qa-agent-testing
Perform security audit/threat model software-security-appsec
Design CI/CD pipelines and infra ops-devops-platform

Quick Reference

Test Type Goal Typical Use
Unit Prove logic and invariants fast Pure functions, core business rules
Component Validate UI behavior in isolation UI components and state transitions
Integration Validate boundaries with real deps API + DB, queues, external adapters
Contract Prevent breaking changes cross-team OpenAPI/AsyncAPI/JSON Schema/Protobuf
E2E Validate critical user journeys 1–2 “money paths” per product area
Performance Enforce budgets and capacity Load, stress, soak, regression trends
Visual Catch UI regressions Layout/visual diffs on stable pages
Accessibility Automate WCAG checks axe smoke + targeted manual audits
Security Catch common web vulns early DAST smoke + critical checks in CI

Default Workflow

  1. Clarify scope and risk: critical journeys, failure modes, and non-functional risks (latency, data loss, auth).
  2. Define quality signals: SLOs/error budgets, contract/schema checks, and what blocks merge vs blocks deploy.
  3. Choose the smallest effective layer (unit → integration → contract → E2E).
  4. Make failures diagnosable: artifacts + correlation IDs (logs/traces/screenshots), clear ownership, deflake runbook.
  5. Operationalize: flake SLO, quarantine with expiry, suite budgets (PR gate vs scheduled), dashboards.

Test Pyramid

           /\
          /E2E\          5-10% - Critical journeys
         /------\
        /Integr. \       15-25% - API, DB, queues
       /----------\
      /Component \       20-30% - UI modules
     /------------\
    /   Unit      \      40-60% - Logic and invariants
   /--------------\

Decision Tree: Test Strategy

Need to test: [Feature Type]
    ├─ Pure business logic/invariants? → Unit tests (mock boundaries)
    ├─ UI component/state transitions? → Component tests
    │   └─ Cross-page user journey? → E2E tests
    ├─ API Endpoint?
    │   ├─ Single service boundary? → Integration tests (real DB/deps)
    │   └─ Cross-service compatibility? → Contract tests (schema/versioning)
    ├─ Event-driven/API schema evolution? → Contract + backward-compat tests
    └─ Performance-critical? → k6 load testing

Core QA Principles

Definition of Done

  • Strategy is risk-based: critical journeys + failure modes explicit
  • Test portfolio is layered: fast checks catch most defects
  • CI is economical: fast pre-merge gates, heavy suites scheduled
  • Failures are diagnosable: actionable artifacts (logs/trace/screenshots)
  • Flakes managed with SLO and deflake runbook

Shift-Left Gates (Pre-Merge)

  • Contracts: OpenAPI/AsyncAPI/JSON Schema validation
  • Static checks: lint, typecheck, secret scanning
  • Fast tests: unit + key integration (avoid full E2E as PR gate)

Shift-Right (Post-Deploy)

  • Synthetic checks for critical paths (monitoring-as-tests)
  • Canary analysis: compare SLO signals and key metrics before ramping
  • Feature flags for safe rollouts and fast rollback
  • Convert incidents into regression tests (prefer lower layers first)

CI Economics

Budget Target
PR gate p50 ≤ 10 min, p95 ≤ 20 min
Mainline health ≥ 99% green builds/day

Flake Management

  • Define: test fails without product change, passes on rerun
  • Track weekly: flaky_failures / total_test_executions (where flaky_failure = fail_then_pass_on_rerun)
  • SLO: Suite flake rate ≤ 1% weekly
  • Quarantine policy with owner and expiry
  • Use the deflake runbook: template-flaky-test-triage-deflake-runbook.md

Common Patterns

AAA Pattern

it('should apply discount', () => {
  // Arrange
  const order = { total: 150 };
  // Act
  const result = calculateDiscount(order);
  // Assert
  expect(result.discount).toBe(15);
});

Page Object Model (E2E)

class LoginPage {
  async login(email: string, password: string) {
    await this.page.fill('[data-testid="email"]', email);
    await this.page.fill('[data-testid="password"]', password);
    await this.page.click('[data-testid="submit"]');
  }
}

Anti-Patterns

Anti-Pattern Problem Solution
Testing implementation Breaks on refactor Test behavior
Shared mutable state Flaky tests Isolate test data
sleep() in tests Slow, unreliable Use proper waits
Everything E2E Slow, expensive Use test pyramid
Ignoring flaky tests False confidence Fix or quarantine

Do / Avoid

Do

  • Write tests against stable contracts and user-visible behavior
  • Treat flaky tests as P1 reliability work
  • Make "how to debug this failure" part of every suite

Avoid

  • "Everything E2E" as default
  • Sleeps/time-based waits (use event-based)
  • Coverage % as primary quality KPI

Feature Matrix vs Test Matrix Gate (Release Blocking)

Before release, run a coverage audit that maps product features/backlog IDs to direct test evidence.

Gate Rules

  • Every release-scoped feature must map to at least one direct automated test, or an explicit waiver with owner/date.
  • Evidence must include file path and test identifier (suite/spec/case).
  • "Covered indirectly" is not accepted without written rationale and risk acknowledgment.
  • If critical features have no direct evidence, release is blocked.

Minimal Audit Output

  • feature/backlog id
  • coverage status (direct, indirect, none)
  • evidence reference
  • risk level
  • owner and due date for gaps

Resources

Resource Purpose
comprehensive-testing-guide.md End-to-end playbook across layers
operational-playbook.md Testing pyramid, BDD, CI gates
shift-left-testing.md Contract-first, BDD, continuous testing
test-automation-patterns.md Reliable patterns and anti-patterns
playwright-webapp-testing.md Playwright patterns
chaos-resilience-testing.md Chaos engineering
observability-driven-testing.md OpenTelemetry, trace-based
contract-testing-2026.md Pact, Specmatic
synthetic-test-data.md Privacy-safe, ephemeral test data
test-environment-management.md Environment provisioning and lifecycle
quality-metrics-dashboard.md Quality metrics and dashboards
compliance-testing.md SOC2, HIPAA, GDPR, PCI-DSS testing
feature-matrix-vs-test-matrix-gate.md Release-blocking feature-to-test coverage audit

Templates

Template Purpose
template-test-case-design.md Given/When/Then and test oracles
test-strategy-template.md Risk-based strategy
template-flaky-test-triage.md Flake triage runbook
template-jest-vitest.md Unit test patterns
template-api-integration.md API + DB integration tests
template-playwright.md Playwright E2E
template-visual-testing.md Visual regression testing
template-k6-load-testing.md k6 performance
automation-pipeline-template.md CI stages, budgets, gates
template-cucumber-gherkin.md BDD feature files and steps
template-release-coverage-audit.md Feature matrix vs test matrix release audit

Data

File Purpose
sources.json External references

Related Skills

Ops Gate: Release-Safe Verification Sequence

Use this sequence for feature branches that touch user flows, pricing, localization, or analytics.

# 1) Static checks
npm run lint
npm run typecheck

# 2) Fast correctness
npm run test:unit

# 3) Critical path checks
npm run test:e2e -- --grep "@critical"

# 4) Instrumentation gate (if configured)
npm run test:analytics-gate

# 5) Production build
npm run build

If a Gate Fails

  1. Capture exact failing command and first error line.
  2. Classify: environment issue, baseline known failure, or regression.
  3. Re-run only the failed gate once after fix.
  4. Do not continue to later gates while earlier required gates are red.

Agent Output Contract for QA Handoff

Always report:

  • commands run,
how to use qa-testing-strategy

How to use qa-testing-strategy on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add qa-testing-strategy
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/vasilyu1983/ai-agents-public --skill qa-testing-strategy

The skills CLI fetches qa-testing-strategy from GitHub repository vasilyu1983/ai-agents-public and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/qa-testing-strategy

Reload or restart Cursor to activate qa-testing-strategy. Access the skill through slash commands (e.g., /qa-testing-strategy) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.674 reviews
  • Isabella Gupta· Dec 28, 2024

    Useful defaults in qa-testing-strategy — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Pratham Ware· Dec 24, 2024

    qa-testing-strategy fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • James Khanna· Dec 24, 2024

    We added qa-testing-strategy from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Maya Harris· Dec 24, 2024

    Registry listing for qa-testing-strategy matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Mia Okafor· Dec 20, 2024

    Useful defaults in qa-testing-strategy — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Dhruvi Jain· Dec 12, 2024

    Useful defaults in qa-testing-strategy — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Ama Taylor· Dec 12, 2024

    I recommend qa-testing-strategy for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Lucas Ndlovu· Dec 12, 2024

    qa-testing-strategy fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Kaira Bansal· Dec 8, 2024

    qa-testing-strategy fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Kwame Shah· Dec 8, 2024

    qa-testing-strategy has been reliable in day-to-day use. Documentation quality is above average for community skills.

showing 1-10 of 74

1 / 8