regression-suite

Audit regression-suite coverage against GDD acceptance criteria and fixed bugs.

1|Updated May 3, 2026
One-click install
npx skills add https://github.com/imclab/xrA1-swarm --skill regression-suite-imclab
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: regression-suite
Source: https://github.com/imclab/xrA1-swarm/tree/main/.claude/skills/regression-suite
Command: npx skills add https://github.com/imclab/xrA1-swarm --skill regression-suite-imclab

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Prevents bugs from silently returning and stops coverage drift by ensuring fixed issues and evolving critical paths remain backed by a maintained regression test suite.

Core Features & Use Cases

  • Curated manifest of critical-path tests: Maintains tests/regression-suite.md as the authoritative list of regression coverage for the game.
  • Coverage mapping against GDD acceptance criteria: Audits whether tests exist (covered/partial/missing/exempt) for each system’s acceptance criteria, formulas, and edge cases.
  • Fixed-bug regression verification: Checks closed/fixed bugs and flags missing regression tests that would have caught recurrence.
  • Drift detection for sprint and release gates: Identifies new systems, completed stories, and stale suite timestamps that indicate coverage is falling behind.

Quick Start

Run /regression-suite audit to generate a coverage and regression-gap report for the current GDD critical paths.

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 acceptance criteria for my game?

To map regression test coverage to GDD acceptance criteria, you audit the tests directory and cross-reference it against your design document's critical paths. This generates a coverage report classifying each criterion as covered, partial, missing, or exempt.

How do I prevent fixed bugs from silently returning in my CI release gates?

To prevent fixed bugs from silently returning in CI release gates, you verify closed bugs against your test manifest and flag missing regression tests. This ensures recurring issues are automatically caught before release.

What is coverage drift detection in sprint workflows?

Coverage drift detection in sprint workflows is the process of identifying new systems, completed stories, and stale test manifests that indicate regression coverage is falling behind the evolving critical paths.

How do I audit missing regression tests for recently fixed bugs?

To audit missing regression tests for recently fixed bugs, you scan closed bug reports and cross-reference them with your test inventory. This flags fixed issues that lack corresponding regression tests to catch future recurrences.

Do I need a test manifest to track critical path stability?

Yes, you need a curated test manifest like tests/regression-suite.md to maintain critical path stability. It serves as the authoritative list of regression coverage, enabling accurate gap analysis and drift detection during audits.