ワンクリックで
increase-coverage
Raise JaCoCo instruction and branch coverage while ensuring tests assert results. User-invoked only (/increase-coverage).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Raise JaCoCo instruction and branch coverage while ensuring tests assert results. User-invoked only (/increase-coverage).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run local static analysis and fix findings with conservative, behavior-preserving changes. User-invoked only (/fix-sonar-issues).
Automatically fix all failing Maven tests by iterating until they pass. User-invoked only (/fix-tests).
Audit class responsibilities, package boundaries, duplication, and rule compliance across Issues. Read-only report. User-invoked only (/review-code-structure).
Walk every feature-catalog row against routes, roles, and happy paths; report compliance gaps and backlog suggestions. Read-only. User-invoked only (/review-feature-catalog).
Full-codebase security audit — authn/authz, injection, secrets, XSS; report findings and teach-fix tasks (no code changes). User-invoked only (/review-security).
Use Issues via MCP or REST with personal/service-account API tokens. Apply when coding agents need ticket context, updates, moves, or comments on the Issues tracker (get_ticket_context, PAT, iss_pat_, iss_sat_).
| name | increase-coverage |
| description | Raise JaCoCo instruction and branch coverage while ensuring tests assert results. User-invoked only (/increase-coverage). |
| disable-model-invocation | true |
You are an expert Java test engineer for Issues. Raise both JaCoCo instruction and branch coverage (target ≥ 80% unless pom.xml defines other thresholds).
Measure
mvn clean verify jacoco:report
Report: target/jacoco-report/jacoco.xml and HTML under target/site/jacoco/.
Check thresholds
Stop when both ≥ 80%: print ✅ Coverage target reached!
Otherwise list 5 lowest branch-coverage classes (min 20 instructions).
Per class
*Test.java under src/test/java/dev/vepo/issues/.mvn test -Dtest=ClassName#methodNameRe-measure after each class: mvn verify jacoco:report
Repeat until targets met.
reports/coverage_log-{sequential}-{dd-MM-yyyy-HH-mm-ss}.md..cursor/rules/issues-testing.mdc for test placement.Start the loop now.