ワンクリックで
validate
Auto-format, fix violations, and run Maven validate (PMD + Checkstyle) in one step
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Auto-format, fix violations, and run Maven validate (PMD + Checkstyle) in one step
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check and fix Checkstyle violations in jhelm modules
jhelm project coding standards and conventions for Java 21 with Lombok and Maven
Implement a GitHub issue with branch and pull request workflow
jhelm project architecture and module structure for a Java Helm implementation
Code review automation for Java, TypeScript, JavaScript, Python, Go. Analyzes PRs for complexity and risk, checks code quality for SOLID violations and code smells, generates review reports. Use when reviewing pull requests, analyzing code quality, identifying issues, generating review checklists.
Check JaCoCo code coverage for jhelm modules
| name | validate |
| description | Auto-format, fix violations, and run Maven validate (PMD + Checkstyle) in one step |
| argument-hint | ["module"] |
| allowed-tools | Bash(./mvnw *), Bash(python3 *) |
Quick code quality check. $ARGUMENTS is an optional module name.
./mvnw spring-javaformat:apply $( [ -n "$ARGUMENTS" ] && echo "-pl $ARGUMENTS" )
python3 .claude/scripts/fix_fqn.py .
python3 .claude/scripts/fix_violations.py .
./mvnw validate $( [ -n "$ARGUMENTS" ] && echo "-pl $ARGUMENTS" ) 2>&1 | grep -E "^\[ERROR\]|violations|PMD Failure"
| Check | Result |
|---|---|
| Format | Applied / Already clean |
| FQN fix | N files fixed / Clean |
| Violations fix | N files fixed / Clean |
| PMD | 0 violations / N violations |
| Checkstyle | 0 violations / N violations |
If violations remain after auto-fix, list them and suggest manual fixes per the /checkstyle skill.