Создание и анализ отчётов об ошибках

testing

bug-report is a Claude Code skill that generates a structured bug report from a plain-text description or scans source files to surface potential bugs automatically. It operates in four modes: Description (draft a report from user input), Analyze (inspect a target file or path for null references, off-by-one errors, race conditions, unhandled edge cases, and resource leaks), Verify (confirm a reported fix actually resolves the issue using Grep/Glob and related tests), and Close (append a formal closure record once the fix is verified). Every report carries a unique BUG-ID, severity rating (S1–S4), priority (P1–P4), full reproduction steps, expected vs. actual results, and a technical context section populated by codebase search. Reports are saved to `production/qa/bugs/BUG-NNNN.md` using the Read, Glob, Grep, and Write tools. Ideal for teams that want a disciplined QA workflow with regression tracking and a clear policy against closing bugs before verification.