원클릭으로
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