What problem does it solve? Writing tests for newly changed code is often skipped or done inconsistently. This Skill automates the creation of tests for files modified in the current git diff, following your project's testing conventions. ## Core Features & Use Cases - Diff-based test generation: Identifies changed code files via git diff and analyzes happy paths, alternative flows, and boundary inputs. - Convention enforcement: Applies Triple A pattern, atomic tests, one assert per test, and correct mock usage for unit vs integration tests. - Safety guardrails: Never modifies existing test files or production code without explicit user confirmation, preventing false positives. - Use Case: After finishing a feature branch, ask the assistant to create tests for your changes; it inspects the diff, writes the tests, and runs make t to verify they pass. ## Quick Start Create tests for the files changed in my current git diff and verify they pass.