qa-expert▌
404kidwiz/claude-supercode-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
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.
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:
- Evaluated tools (Playwright vs Cypress) based on team skills
- Created Page Object Model architecture for maintainability
- Implemented parallel execution for fast feedback
- Integrated with CI/CD pipeline with quality gates
- 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:
- Analyzed current process and identified bottlenecks
- Implemented shift-left testing strategy
- Added quality gates in development workflow
- Created Definition of Done with quality criteria
- 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:
- Conducted risk assessment with product and engineering
- Created risk matrix (probability x impact)
- Designed test coverage based on risk levels
- Implemented exploratory testing for high-risk areas
- 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
How to use qa-expert on Cursor
AI-first code editor with Composer
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-expert
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches qa-expert from GitHub repository 404kidwiz/claude-supercode-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate qa-expert. Access the skill through slash commands (e.g., /qa-expert) 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
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★54 reviews- ★★★★★Emma Li· Dec 28, 2024
Registry listing for qa-expert matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Ren Okafor· Dec 24, 2024
Keeps context tight: qa-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Zara Khanna· Dec 24, 2024
Keeps context tight: qa-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kabir Mehta· Dec 20, 2024
I recommend qa-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Ishan Lopez· Nov 19, 2024
qa-expert fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Neel White· Nov 15, 2024
qa-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Chinedu Sanchez· Nov 15, 2024
qa-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Ishan Diallo· Nov 11, 2024
Useful defaults in qa-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Ishan Liu· Oct 10, 2024
qa-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Liam Dixit· Oct 6, 2024
qa-expert fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 54