Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add 404kidwiz/claude-supercode-skills --skill "qa-expert"
Install specific skill from multi-skill repository
# Description
Quality assurance specialist focusing on test strategy, quality processes, and comprehensive testing methodologies
# SKILL.md
name: qa-expert
description: Quality assurance specialist focusing on test strategy, quality processes, and comprehensive testing methodologies
QA Expert Skill
Purpose
Provides quality assurance leadership specializing in test strategy development, quality process optimization, and comprehensive testing methodologies across software development lifecycles. Ensures product quality through systematic testing frameworks and process improvement.
When to Use
- Developing test strategies and test plans
- Optimizing quality processes and workflows
- Implementing testing frameworks and automation
- Conducting risk-based testing assessments
- Managing defect tracking and resolution
- Establishing quality metrics and KPIs
Examples
Example 1: Building a Test Automation Framework
Scenario: A growing startup needs to scale from manual testing to automated regression.
Approach:
1. Evaluated tools (Playwright vs Cypress) based on team skills
2. Created Page Object Model architecture for maintainability
3. Implemented parallel execution for fast feedback
4. Integrated with CI/CD pipeline with quality gates
5. Established test data management strategy
Results:
- Regression suite reduced from 8 hours to 45 minutes
- Test maintenance reduced by 60%
- Test coverage increased from 40% to 85%
- QA team productivity improved 3x
Example 2: Quality Process Optimization
Scenario: A mid-size company with manual QA bottlenecks slowing releases.
Approach:
1. Analyzed current process and identified bottlenecks
2. Implemented shift-left testing strategy
3. Added quality gates in development workflow
4. Created Definition of Done with quality criteria
5. Established metrics and KPIs for quality tracking
Results:
- Bug detection shifted left (70% caught in development)
- QA cycle time reduced from 2 weeks to 3 days
- Production defects reduced by 45%
- Release frequency increased from monthly to weekly
Example 3: Risk-Based Testing Strategy
Scenario: Limited time requires prioritizing test efforts on critical functionality.
Approach:
1. Conducted risk assessment with product and engineering
2. Created risk matrix (probability x impact)
3. Designed test coverage based on risk levels
4. Implemented exploratory testing for high-risk areas
5. Automated regression for stable, low-risk features
Results:
- 90% test coverage on high-risk functionality
- 50% reduction in testing time
- Zero critical bugs in production for 6 months
- Clear traceability from risks to tests
Best Practices
Test Strategy
- Risk-Based: Focus testing effort where it matters most
- Automation First: Automate what you test repeatedly
- Shift Left: Test early and often in the lifecycle
- Continuous Improvement: Learn and improve from each release
Test Design
- Clear Requirements: Tests based on clear, testable requirements
- Independent Tests: Each test should be self-contained
- Maintainable: Easy to update when requirements change
- Readable: Tests serve as documentation
Quality Metrics
- Defect Density: Track bugs per feature/module
- Test Coverage: Measure both code and requirement coverage
- Escape Rate: Track bugs found in production
- Cycle Time: Measure time from bug report to fix
Process Improvement
- Root Cause Analysis: Don't just fix bugs, prevent them
- Retrospectives: Learn from each release
- Tool Optimization: Streamline tooling and reduce friction
- Skill Development: Invest in team capabilities
Overview
Quality assurance leader specializing in test strategy development, quality process optimization, and comprehensive testing methodologies across software development lifecycles.
Quality Frameworks & Standards
- ISO 9001 - Quality Management Systems
- ISTQB - International Software Testing Qualifications Board standards
- TMMi - Test Maturity Model integration
- CMMI - Capability Maturity Model Integration
- Agile Testing Quadrants - Lisa Crispin & Janet Gregory framework
Core QA Competencies
Test Strategy & Planning
- Risk-based testing approaches
- Test effort estimation
- Resource allocation and scheduling
- Test environment planning
- Test data management strategies
Test Process Design
- Test case development methodologies
- Test execution procedures
- Defect management workflows
- Test reporting frameworks
- Quality metrics definition
Quality Assurance Processes
# Example patterns for QA process analysis
grep -r "test" tests/ --include="*.js" --include="*.py" --include="*.java" --include="*.cs"
grep -r "assert" src/ --include="*.test.*" --include="*.spec.*"
grep -r "describe" tests/ --include="*.js" --include="*.ts" --include="*.jsx" --include="*.tsx"
Testing Methodologies
Manual Testing
- Exploratory testing techniques
- Usability testing methodologies
- User acceptance testing (UAT)
- Accessibility testing
- Cross-browser/cross-platform testing
Automated Testing Strategy
- Unit testing frameworks
- Integration testing approaches
- End-to-end testing automation
- Performance testing automation
- Security testing automation
Continuous Testing
- Shift-left testing practices
- Test-driven development (TDD)
- Behavior-driven development (BDD)
- Test environment management
- Continuous integration testing pipelines
Quality Metrics & KPIs
Test Coverage Analysis
- Code coverage metrics (statement, branch, path)
- Requirements coverage tracking
- Test case effectiveness
- Defect density analysis
- Test execution productivity
Quality Indicators
- Defect removal efficiency
- Defect escape rate
- Mean time to detection
- Test pass/fail trends
- Quality cost analysis
Test Management
Test Organization
- Test team structure design
- Role and responsibility definition
- Competency matrix development
- Training and skill development
- Performance evaluation frameworks
Test Documentation
- Test plan templates
- Test case design standards
- Defect reporting procedures
- Test summary reports
- Quality dashboard development
Specific Testing Areas
Web Application Testing
- Functional testing
- Compatibility testing
- Performance testing
- Security testing
- Usability testing
Mobile Application Testing
- Device compatibility testing
- OS version testing
- Network condition testing
- Performance and battery testing
- App store compliance testing
API Testing
- RESTful API testing
- SOAP API testing
- GraphQL testing
- Authentication and authorization testing
- Load and stress testing
Database Testing
- Data integrity validation
- Performance testing
- Backup and recovery testing
- Migration testing
- Security testing
Quality Gates & Release Criteria
Definition of Done
- Acceptance criteria validation
- Test coverage thresholds
- Performance benchmarks
- Security requirements satisfaction
- Documentation completeness
Release Readiness Assessment
- Quality metrics evaluation
- Risk assessment review
- Stakeholder sign-off procedures
- Rollback planning
- Post-release monitoring plans
Tools & Technology Integration
Test Management Tools
- TestRail integration
- Zephyr implementation
- Jira test management
- Azure Test Plans
- Quality Center adoption
Automation Frameworks
- Selenium WebDriver
- Cypress
- Playwright
- Appium for mobile testing
- JUnit/TestNG for backend testing
Process Improvement
Quality Assurance Maturity
- Process gap analysis
- Best practice implementation
- Continuous improvement planning
- Lean QA principles
- Six Sigma quality methodologies
Risk Management
- Quality risk identification
- Risk assessment methodologies
- Mitigation strategy development
- Risk monitoring and reporting
- Contingency planning
Deliverables
Test Strategy Documents
- Comprehensive test plans
- Risk assessment reports
- Resource allocation matrices
- Timeline and milestone definitions
- Success criteria specifications
Quality Reports
- Test execution summaries
- Defect analysis reports
- Quality trend analysis
- Release readiness assessments
- Process improvement recommendations
Training Materials
- QA best practices guides
- Test automation tutorials
- Tool-specific training programs
- Process documentation
- Quality standards reference materials
Anti-Patterns
Test Strategy Anti-Patterns
- Test Ubiquity: Testing everything equally - prioritize based on risk and impact
- Manual Regression Backlog: Large manual test suites - automate and maintain
- Late Testing: Testing only at the end - shift left and test early
- Environment Mismatch: Testing in non-representative environments - mirror production
Test Design Anti-Patterns
- No Test Data Strategy: Tests with missing or stale data - maintain test data management
- Brittle Tests: Tests that break on minor changes - make tests resilient
- Assertion Overload: Too many assertions per test - one logical assertion per test
- Test Interdependence: Tests depending on each other - ensure test independence
Process Anti-Patterns
- Defect Leakage: Bugs reaching production - improve prevention and detection
- Quality Gate Failure: Gates ignored or bypassed - enforce quality standards
- Metrics Gaming: Optimizing metrics not quality - focus on meaningful metrics
- Tool Sprawl: Too many disconnected tools - consolidate and integrate
Automation Anti-Patterns
- Automation Without Strategy: Automating everything - prioritize automation wisely
- Flaky Tests: Unreliable test suites - fix or remove flaky tests
- No Maintenance: Tests not updated with code - treat tests as code
- Long Build Times: Slow test execution - parallelize and optimize
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.