regression-suite

Solid

Map test coverage to GDD critical paths, identify fixed bugs without regression tests, flag coverage drift from new features, and maintain tests/regression-suite.md. Run after implementing a bug fix or before a release gate.

AI & Automation 66 stars 7 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 91/100

Stars 20%
61
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Regression Suite This skill ensures that every bug fix is backed by a test that would have caught the original bug — and that the regression suite stays current as the game evolves. It also detects when new features have been added without corresponding regression coverage. A regression suite is not a new test category — it is a **curated list of tests already in `tests/`** that collectively cover the game's critical paths and known failure points. This skill maintains that list. **Output:** `tests/regression-suite.md` **When to run:** - After fixing a bug (confirm a regression test was written or identify gap) - Before a release gate (`/gate-check polish` requires regression suite exists) - As part of sprint close to detect coverage drift --- ## 1. Parse Arguments **Modes:** - `/regression-suite update` — scan new bug fixes this sprint and check for regression test presence; add new tests to the suite manifest - `/regression-suite audit` — full audit of all GDD critical paths vs. existing test coverage; flag paths with no regression test - `/regression-suite report` — read-only status report (no writes); suitable for sprint reviews - No argument — run `update` if a sprint is active, else `audit` --- ## 2. Load Context ### Step 2a — Load existing regression suite Read `tests/regression-suite.md` if it exists. Extract: - Total registered regression tests - Last updated date - Any tests flagged as `STALE` or `QUARANTINED` If it does not exist: note "No regre...

Details

Author
striderZA
Repository
striderZA/OpenCodeGameStudios
Created
2 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

skill-regression

Regression testing framework for AgentSkills. Analyzes a target skill, runs script-layer assertions and AI-layer semantic scoring, and outputs a Markdown report. Supports two backends: OpenAI-compatible LLM (default, works anywhere) or OpenClaw cron-based agent trigger (auto-detected if openclaw CLI present). Use when the user asks to "test a skill", "regression test xxx skill", "run skill QA", or "audit my skill against test cases". Requires SR_LLM_API_KEY env var or interactive setup; supports .env files.

1 Updated 5 days ago
Songhonglei
AI & Automation Listed

regression-gatekeeper

Iterate-stage skill: gates any prompt or model change behind a golden-set regression run — the run happens and its results are shown before any ship verdict exists. Use when a change wants to ship — 'we tweaked the prompt, safe to ship?', 'regression plan before the model swap', 'gate this change', 'what has to run before this goes out' — or when /pm routes such a request here. Do NOT use to decide whether an upgrade is worth pursuing (model-upgrade-evaluator), to build the golden set (golden-dataset-builder), for post-incident capture (failure-to-eval-capture), or for regression-testing definitions.

1 Updated 6 days ago
Abhillashjadhav
Code & Development Solid

ln-23-test-suite-auditor

Audits whether an existing test suite proves important product behavior with strong, isolated tests. Use when test confidence is uncertain; not to design or implement new tests.

523 Updated 4 days ago
levnikolaevich