一键导入
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