with one click
work
Process open GitHub issues from simplest to hardest in a continuous loop
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Process open GitHub issues from simplest to hardest in a continuous loop
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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 | work |
| description | Process open GitHub issues from simplest to hardest in a continuous loop |
| allowed-tools | Bash(gh *), Bash(git *), Bash(./mvnw *) |
Process open GitHub issues from simplest to hardest in a continuous loop.
gh issue list --state open --json number,title,labels --limit 100
Sort issues by estimated complexity (simplest first):
Trivial / simple (single-file fix, small bug):
Non-trivial (multi-file, requires design decisions):
./mvnw spring-javaformat:apply after code changes./mvnw validate to check PMD/checkstyle./mvnw test/push skill to create/update the PRgh pr checks <N> --watchgh pr merge <N> --squash --delete-branch