ワンクリックで
monitor-pr
Monitor the CI checks status of a Pull Request on GitHub, parse logs on failure, and address any non-passing checks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Monitor the CI checks status of a Pull Request on GitHub, parse logs on failure, and address any non-passing checks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Raise a detailed, structured issue on GitHub. Gathers context, builds reproduction steps, expected outcomes, and acceptance criteria.
Generate a detailed pull request body and create/update a PR on GitHub. Gathers workspace changes, updates the PR body dynamically, and posts update comments to capture a historical paper trail.
Start work on a new GitHub issue. Fetches issue details, generates standard branch names, and sets up the branch.
| name | monitor-pr |
| description | Monitor the CI checks status of a Pull Request on GitHub, parse logs on failure, and address any non-passing checks. |
Standardized procedure to track pull request CI checks on GitHub and address any test or linting failures.
raise-pr), or when the user requests to check, monitor, or track the CI/test status of an active PR.Check CI checks status:
gh pr checks
Wait for completion (if pending):
If any checks are marked as pending:
schedule tool (e.g., 120 seconds).sleep loop or poll continuously.Handle successful runs: If all checks pass, confirm to the user that CI is green and the PR is ready for review.
Diagnose and fix failures: If any check fails:
gh run list --branch <current-branch> --limit 1
gh run view <run-id> --log-failed
make test (or uv run pytest -k <failing_test>)make lint or make formatmake format && make lint && make testgit add <files>
git commit -m "fix: address failing CI check"
git push