analyze-pyramid
Installation
SKILL.md
Analyze Test Pyramid Command
Analyze the current test distribution and recommend improvements for a healthier test pyramid.
Process
Step 1: Discover Tests
If a test directory is provided, use it. Otherwise, search for common test patterns:
# .NET projects
find . -name "*.Tests.csproj" -o -name "*Tests*.csproj"
find . -name "*Test*.cs" -type f
# Count tests
grep -r "\[Fact\]\|\[Theory\]" --include="*.cs" | wc -l