What problem does it solve? Teams often over-test with slow E2E suites or under-test critical logic, leading to flaky CI pipelines, wasted effort, and bugs slipping through. This Skill provides a systematic framework for choosing the right test at the right level. ## Core Features & Use Cases - Testing Pyramid Guidance: Allocates test volume across unit (70%), integration (20%), and E2E (10%) levels with clear anti-pattern warnings. - Mocking and Coverage Rules: Defines what to mock versus what not to mock, and interprets coverage ranges to avoid chasing meaningless percentages. - Mission-Critical Patterns: Applies NASA/JPL Power of 10 testing patterns for bounded behavior, assertion coverage, and critical path testing. - Use Case: When reviewing a pull request with only E2E tests, use this Skill to restructure the suite into fast unit tests for logic, integration tests for API contracts, and a minimal set of E2E smoke tests. ## Quick Start Ask the AI to load the testing-strategies skill and design a test plan for your current module.