skills-catalog/ln-513-regression-checker/SKILL.md
Runs existing test suite to catch regressions after implementation changes. Use when Story needs regression verification. No status changes.
npx skillsauth add levnikolaevich/claude-code-skills ln-513-regression-checkerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Paths: File paths (
shared/,references/,../ln-*) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Ifshared/is missing, fetch files via WebFetch fromhttps://raw.githubusercontent.com/levnikolaevich/claude-code-skills/master/skills/{path}.
Type: L3 Worker Category: 5XX Quality
Runs the existing test suite to ensure no regressions after implementation changes.
| Input | Required | Source | Description |
|-------|----------|--------|-------------|
| storyId | Yes | args, git branch, kanban, user | Story to process |
Resolution: Story Resolution Chain. Status filter: To Review
MANDATORY READ: Load shared/references/input_resolution_pattern.md, shared/references/ci_tool_detection.md
MANDATORY READ: Load shared/references/output_normalization.md
Read target project files if they exist: docs/project/infrastructure.md, docs/project/runbook.md
shared/references/output_normalization.md §1-§3 to test output. Group failing tests by error category (Import/Module, Assertion, Timeout, Type, Connection, Runtime). Report grouped: e.g., "3 Import errors in auth/, 2 Assertion mismatches in payment/".MANDATORY READ: Load shared/references/quality_summary_contract.md, shared/references/quality_worker_runtime_contract.md
Runtime profile:
quality-workerln-513quality-workerworker, status, verdict, issues, warnings, artifact_pathInvocation rules:
runId and summaryArtifactPathrunId and exact summaryArtifactPathMonitor (2.1.98+): For test suite commands expected >30s, use Monitor. Fallback: Bash(run_in_background=true).
shared/references/risk_based_testing_guide.mdshared/references/ci_tool_detection.mdshared/references/output_normalization.mdreferences/pytest_configuration.mdVersion: 3.1.0 Last Updated: 2026-01-09
testing
Checks runtime lifecycle and config validation: bootstrap, shutdown, probes, cleanup, env sync, and fail-fast startup. Use for runtime readiness.
testing
Checks races, deadlocks, async hazards, TOCTOU, blocking I/O, and shared resource contention. Use when auditing concurrency correctness.
testing
Checks diagnosability through structured logs, metrics, traces, correlation IDs, and useful log levels. Use when auditing incident visibility.
development
Finds code that can be safely deleted: unreachable, unused, obsolete compatibility, and commented-out code. Use when pruning dead code.