一键导入
update-deps
Check for dependency and plugin updates, review and apply selected upgrades
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check for dependency and plugin updates, review and apply selected upgrades
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check and fix Checkstyle and PMD violations
Implement a GitHub issue with branch and pull request workflow
Post a status comment on a GitHub issue (starting work, plan update, completed)
Check JaCoCo code coverage
Format, validate checkstyle/PMD, and run tests before committing
Create/update GitHub issue, branch, commit, PR, then continue implementing
| name | update-deps |
| description | Check for dependency and plugin updates, review and apply selected upgrades |
| allowed-tools | Bash(./mvnw *), Bash(python3 *) |
./mvnw versions:display-property-updates 2>&1 | grep '\->' > /tmp/yjsv-property-updates.txt
./mvnw versions:display-plugin-updates 2>&1 | grep '\->' | grep -v 'reactor\|Help\|Could not' > /tmp/yjsv-plugin-updates.txt
Exclude Spring Boot managed dependencies (jackson, spring-*, snakeyaml, logback, slf4j, junit, mockito, lombok, etc.) and internal modules.
Present a table:
# Type Name Current New
Show updates to the user. Flag major version jumps as potentially breaking.
Edit pom.xml properties for selected updates, then:
./mvnw spring-javaformat:apply
./mvnw clean package 2>&1 | tail -30
checkstyle.version is pinned to 9.3 for spring-javaformat-checkstyle compatibilityspring-javaformat.version affects both formatter and checkstyle -- test both after upgradingmaven-pmd-plugin, check for deprecated/renamed PMD rules in pmd-ruleset.xml