regression-test-runner

Diff test runs against a regression baseline and enforce a P0 pass-rate gate.

1|Updated Apr 12, 2026
One-click install
npx skills add https://github.com/mytechsonamy/VibeFlow --skill regression-test-runner
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: regression-test-runner
Source: https://github.com/mytechsonamy/VibeFlow/tree/main/skills/regression-test-runner
Command: npx skills add https://github.com/mytechsonamy/VibeFlow --skill regression-test-runner

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates evaluating a project's test suite against a regression baseline, diffing results to highlight new failures, fixed tests, flaky tests, and it enforces a P0 pass-rate gate before updating the baseline.

Core Features & Use Cases

  • Baseline diffing: compares current test results to a stored regression-baseline.json to classify outcomes (passing, new-failure, still-failing, fixed, flaky, skipped).
  • Scope-driven execution: supports pr/push smoke, release full, and manual incremental modes, selecting the relevant test subset and controlling baseline updates.
  • Output artifacts: generates a human-readable regression-report.md, per-run JSON artifacts, and a downloadable classified.json for downstream engines.

Quick Start

Run the regression-test-runner after a code change to generate a regression report and update the baseline when all P0 tests pass.

Frequently Asked Questions about regression-test-runner

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

FAQPage Schema
How do I automate regression testing against a baseline for a pull request?

Automated regression testing diffs current test run results against a stored baseline to identify new failures and enforces a P0 pass-rate gate. For PRs, it supports a smoke mode to run the relevant test subset quickly.

What is regression baseline diffing and how does it classify test outcomes?

Regression baseline diffing compares current test results to a stored regression-baseline.json file. It classifies outcomes as passing, new-failure, still-failing, fixed, flaky, or skipped to highlight software health changes.

Can I run incremental regression tests on-demand instead of executing the full suite?

Yes, the runner supports manual incremental modes alongside pr/push smoke and release full scopes. This scope-driven execution selects the relevant test subset and controls baseline updates based on the chosen scenario.

What artifacts are generated when diffing test results against a regression baseline?

Diffing test results generates a human-readable regression-report.md, per-run JSON artifacts, and a downloadable classified.json. These outputs record per-test classifications for downstream CI engines to consume.

Do I need specific configuration files to enforce a P0 pass-rate gate?

Yes, the runner relies on repo configuration via repo-fingerprint.json and a baseline file named regression-baseline.json. These files establish the required context to enforce the strict P0 pass-rate gate before updating the baseline.

When should I not update the regression baseline after a test run?

You should not update the regression baseline when P0 tests fail. The runner enforces a strict P0 pass-rate gate, ensuring the baseline is only updated when all critical P0 tests pass to prevent masking regressions.