ワンクリックで
work
Process open GitHub issues from simplest to hardest in a continuous loop
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Process open GitHub issues from simplest to hardest in a continuous loop
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 | 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