ワンクリックで
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