TDD-Pytest Skill Activate this skill when the user needs help with: - Writing tests using TDD methodology (Red-Green-Refactor) - Auditing existing pytest test files for quality - Running tests with coverage - Generating test reports to - Setting up pytest configuration in TDD Workflow Red-Green-Refactor Cycle 1. RED - Write a failing test first - Test should fail for the right reason (not import errors) - Test should be minimal and focused - Show the failing test output 2. GREEN - Write minimal code to pass - Only implement what's needed to pass the test - No premature optimization - Show the…