orbit-qa-regression-pack

Manage regression test suites with Playwright and CI pipelines.

2|1|Updated Apr 20, 2026
One-click install
npx skills add https://github.com/adityaarsharma/orbit --skill orbit-qa-regression-pack
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: orbit-qa-regression-pack
Source: https://github.com/adityaarsharma/orbit/tree/main/skills/orbit-qa-regression-pack
Command: npx skills add https://github.com/adityaarsharma/orbit --skill orbit-qa-regression-pack

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires playwright, and includes scripts (resource) components.

What problem does it solve?

This Skill addresses the need for comprehensive regression test management to prevent previously fixed bugs from reoccurring, ensuring code reliability and quality.

Core Features & Use Cases

  • Regression Test Management: Organize and manage regression tests, grouping tests to prevent fixed bugs from reappearing.
  • Test Tagging: Automatically tag tests with the issue/PR they came from for fast pre-merge verification.
  • Coverage Check: Scan for fixes without regression tests to maintain test coverage.
  • CI Integration: Seamlessly integrate into CI pipelines for automated regression test execution.
  • Use Case: When you need to ensure every bug fix is paired with a regression test, and you want to streamline the testing process for faster verification before merging code changes.

Quick Start

Run only regression-tagged tests with the following command:

npx playwright test --grep '@regression'

Frequently Asked Questions about orbit-qa-regression-pack

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate regression testing for bug fixes in a CI pipeline?

Regression testing for bug fixes is managed by automatically tagging tests with their originating issue or PR and integrating them into continuous integration pipelines for execution via Playwright before merging code changes.

What is regression test tagging and how does it track bug fixes?

Regression test tagging automatically associates tests with the specific issue or PR they originated from, enabling fast pre-merge verification and ensuring every code fix has corresponding test coverage.

Do I need Playwright to run regression tests for my software project?

Yes, Playwright is required for test execution. You can run regression-tagged tests using the command 'npx playwright test --grep @regression' to verify bug fixes efficiently.

How can I check for missing regression tests after a bug fix?

You can check for missing tests by scanning for fixes without regression tests. This coverage check identifies untested bug fixes to maintain comprehensive test coverage and prevent bugs from reoccurring.

Can I use this regression test management approach with my existing version control system?

Yes, regression test management integrates with a version control system to track issues and PRs, automatically tagging tests to streamline the verification process within your existing software workflow.

What's the best way to organize regression tests to prevent fixed bugs from reappearing?

The best way to organize regression tests is by grouping them and automatically tagging each test with its originating issue or PR, ensuring fixed bugs are systematically verified and do not reoccur.