بنقرة واحدة
verify-coverage
Run tests and verify code coverage meets 80% minimum requirement
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run tests and verify code coverage meets 80% minimum requirement
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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