Runs the regression test suite, marks critical tests, and generates a report with pass/fail results, flaky test detection, and change impact analysis. Also supports --mark and --history subcommands.
How this command is triggered — by the user, by Claude, or both
Slash command
/regression-test-tracker:track-regressionFiles this command reads when invoked
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Regression Test Tracker Track critical tests and ensure new changes don't break existing functionality. ## Purpose Maintain stability by: - **Tracking critical tests** - Mark tests for regression suite - **Automated execution** - Run before deployments - **Change impact analysis** - Which tests affected by changes - **Test history** - Track pass/fail over time - **Flaky test detection** - Identify unreliable tests ## Usage ## Regression Suite Management Tag tests as regression tests: ## Report Format ## Best Practices - Tag critical business flows - Run before every deploym...
Track critical tests and ensure new changes don't break existing functionality.
Maintain stability by:
/track-regression # Run regression suite
/track-regression --mark # Mark current test as regression
/track-regression --history # Show test history
/reg # Shortcut
Tag tests as regression tests:
// Jest
describe('User Login', () => {
it('[REGRESSION] should login with valid credentials', async () => {
// Critical login test
});
});
// pytest
@pytest.mark.regression
def test_payment_processing():
# Critical payment test
pass
Regression Test Report
======================
Date: 2025-10-11
Suite: Full Regression
Tests: 45 critical tests
Duration: 3m 42s
Results: 44/45 passed (97.8%)
FAILED:
test_checkout_with_coupon
Last passed: 2025-10-09
Failures: 2 consecutive
Introduced by: commit abc123f
Flaky Tests Detected:
️ test_email_delivery
Pass rate: 85% (17/20 recent runs)
Recommendation: Investigate timing issues
Impact Analysis:
Changed files: src/api/orders.js
Potentially affected: 8 tests
Recommended: Run full order test suite
npx claudepluginhub terrylica/claude-code-plugins-plus --plugin regression-test-tracker24plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 24 plugins
/track-regressionRuns the regression test suite, marks critical tests, and generates a report with pass/fail results, flaky test detection, and change impact analysis. Also supports --mark and --history subcommands.
/flow-test-strategy-executionOrchestrates multi-agent test execution across levels (unit, integration, e2e, regression, etc.), validates coverage, triages defects, and reports quality metrics. Accepts --guidance and --interactive flags.
/testDrives the full testing lifecycle — run and auto-fix tests, author with TDD, scaffold E2E or CI infrastructure, enforce coverage, and design AI-targeted regression suites. Also supports status, qa, and init subcommands.
/test-fixDiagnoses and fixes failing tests by parsing output, categorizing root causes (snapshot, logic, environment, flaky, dependency), applying fixes, and verifying with a full re-run.
/testDiscovers and runs unit, integration, or e2e tests with coverage analysis, failure diagnostics, and quality reporting. Supports watch mode and Playwright-based browser testing.
/testingGenerates characterization tests for existing code, capturing current behavior before making risky changes.