Analyze test distribution across unit/integration/E2E levels - detect inverted pyramid anti-pattern
/plugin marketplace add tachyon-beep/skillpacks/plugin install ordis-quality-engineering@foundryside-marketplace[test_directory] - defaults to tests/# Analyze Test Pyramid Command Analyze test distribution to detect inverted pyramid and architectural issues. ## Core Principle **Test pyramid: many fast unit tests, fewer integration tests, fewest E2E tests.** Target: 70% unit, 20% integration, 10% E2E ## Analysis Process ### Step 1: Count Tests by Level ### Step 2: Calculate Percentages ### Step 3: Identify Shape | Shape | Distribution | Status | Action | |-------|--------------|--------|--------| | **Pyramid** ✅ | Unit > Integration > E2E | Healthy | Maintain | | **Diamond** ⚠️ | Integration > Unit, Integration > E2E | Warni...