ln-513-regression-checker
2
总安装量
2
周安装量
#72181
全站排名
安装命令
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-513-regression-checker
Agent 安装分布
claude-code
2
replit
1
openclaw
1
cursor
1
Skill 文档
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.
Regression Checker
Runs the existing test suite to ensure no regressions after implementation changes.
Purpose & Scope
- Detect test framework (pytest/jest/vitest/go test/etc.) and test dirs.
- Execute full suite; capture results for Story quality gate.
- Return PASS/FAIL with counts/log excerpts; never modifies Linear or kanban.
When to Use
- Invoked by ln-510-quality-coordinator Pass 1 (after ln-511 and ln-512)
- Code quality check passed
Workflow (concise)
- Auto-discover framework and test locations from repo config/files.
- Read
docs/project/runbook.mdâ get exact test commands, Docker setup, environment variables. Use commands from runbook, NOT guessed commands. - Build appropriate test command; run with timeout (~5m); capture stdout/stderr.
- Parse results: passed/failed counts; key failing tests.
- Output verdict JSON (PASS or FAIL + failures list) and add Linear comment.
Critical Rules
- No selective test runs; run full suite.
- Do not fix tests or change status; only report.
- Language preservation in comment (EN/RU).
Definition of Done
- Framework detected; command executed.
- Results parsed; verdict produced with failing tests (if any).
- Linear comment posted with summary.
Reference Files
- Risk-based limits used downstream:
../shared/references/risk_based_testing_guide.md
Version: 3.1.0 Last Updated: 2026-01-09