con un clic
verify-coverage
Run tests and verify code coverage meets 80% minimum requirement
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run tests and verify code coverage meets 80% minimum requirement
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Analyze build errors and categorize them by type for planning fixes
Analyze .Codex configuration for gaps, improvements, and needed updates
Build, test, group changes logically, commit with Conventional Commits format, and push
Create a GitHub issue for a modernization task with proper template
Analyze .claude configuration for gaps, improvements, and needed updates
Build, test, group changes logically, commit with Conventional Commits format, and push
| name | verify-coverage |
| description | Run tests and verify code coverage meets 80% minimum requirement |
| user-invocable | true |
| argument-hint |
Runs the test suite with code coverage analysis and verifies that coverage meets the 80% minimum requirement.
/verify-coverage
I'll run the test suite with coverage collection and verify the results:
cd src
dotnet test ECMABasic.sln \
--configuration Release \
--collect:"XPlat Code Coverage" \
--verbosity minimal
Then I'll:
If coverage ≥ 80%:
✅ Code coverage: 82.5%
✅ Meets minimum requirement (80%)
If coverage < 80%:
❌ Code coverage: 76.3%
❌ Below minimum requirement (80%)
⚠️ Need 3.7% more coverage
./test.sh - Full test run with HTML report generationdotnet test --collect:"XPlat Code Coverage" - Direct test command