From base-tools
Analyzes unresolved GitHub PR review comments via script and CI status via gh CLI to create specific, parallelizable fix plans. Useful post-PR feedback or CI failures.
How this skill is triggered — by the user, by Claude, or both
Slash command
/base-tools:create-review-fix-planopusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
GitHubのプルリクエスト(PR)から未解決のレビューコメントとCIステータスを確認し、修正プランを作成します。
GitHubのプルリクエスト(PR)から未解決のレビューコメントとCIステータスを確認し、修正プランを作成します。
以下のコマンドを実行して、未解決のプルリクエストレビューコメントを取得します。
bash ${CLAUDE_SKILL_DIR}/scripts/fetch-unresolved-comments.sh
CIのステータスを確認し、失敗している場合は失敗している原因を特定します。
gh pr checks <PR番号>
失敗しているチェックがある場合は、以下のコマンドで詳細なログを確認します。
gh run view <run-id> --log-failed
取得した未解決コメントとCIのステータスをもとに、修正プランを作成します。 修正プランは以下のステップで作成してください。
npx claudepluginhub getty104/claude-code-marketplace --plugin base-toolsTriage PR CI checks: inspect failing/pending checks, mergeability, review feedback, reproduce failures locally, and summarize next steps.
Iterates on a PR until CI passes. Automatically fixes CI failures, addresses categorized review feedback, and pushes fixes until all checks are green.
Analyzes open pull requests for CI failures, review feedback, and quality issues, then fixes them in batch. Useful for checking PR status, triaging failures, or running scheduled health checks.