regression-suite

Map test coverage to GDD critical paths and flag missing regression tests.

Updated Feb 8, 2024
One-click install
npx skills add https://github.com/kay6198835/Game-RPG --skill regression-suite-kay6198835
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: regression-suite
Source: https://github.com/kay6198835/Game-RPG/tree/main/.claude/skills/regression-suite
Command: npx skills add https://github.com/kay6198835/Game-RPG --skill regression-suite-kay6198835

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Maps test coverage to GDD critical paths and flags gaps where regression tests are missing after bug fixes. Run after implementing a bug fix or before a release gate to ensure readiness.

Core Features & Use Cases

  • It maintains a curated list of tests in tests/ that cover the game's critical paths.
  • It ensures every bug fix has a corresponding regression test and detects coverage drift as new features are added.
  • It outputs the manifest at tests/regression-suite.md and supports runs after fixes or before release gates.

Quick Start

Run the regression-suite update after applying bug fixes to refresh coverage and prepare for release gates.

Frequently Asked Questions about regression-suite

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

FAQPage Schema
How do I map regression test coverage to GDD critical paths after a bug fix?

Regression test coverage maps to GDD critical paths by auditing the tests/ directory against defined paths and flagging missing tests after bug fixes. It outputs an up-to-date manifest at tests/regression-suite.md for review and action.

What is regression coverage drift detection and when do I need it for release checks?

Regression coverage drift detection identifies missing regression tests as new features are added. It is needed during sprint planning, maintenance gates, and release checks to ensure every bug fix has corresponding test coverage before deployment.

How do I generate a regression test manifest before a release gate?

Generate a regression test manifest by running the regression-suite update after applying bug fixes. It audits tests/ against defined GDD critical paths and outputs the manifest at tests/regression-suite.md, ready for release gate review.

Can I use regression-suite for sprint planning and maintenance gates?

Yes, regression-suite applies across sprint planning, maintenance gates, and release checks. It audits tests/ against defined GDD critical paths, tracks coverage drift, and outputs an up-to-date manifest to guide maintenance decisions.