Use gh to locate failing PR checks, fetch GitHub Actions logs for actionable failures, summarize the failure snippet, then propose a fix plan and implement after explicit approval.
create-plan) is available, use it; otherwise draft a concise plan inline and request approval before implementing.Prereq: authenticate with the standard GitHub CLI once (for example, run gh auth login), then confirm with gh auth status (repo + workflow scopes are typically required).
repo: path inside the repo (default .)pr: PR number or URL (optional; defaults to current branch PR)gh authentication for the repo hostpython "/scripts/inspect_pr_checks.py" --repo "." --pr "" --json if you want machine-friendly output for summarization.gh auth status in the repo.gh auth login (ensuring repo + workflow scopes) before proceeding.gh pr view --json number,url.python "/scripts/inspect_pr_checks.py" --repo "." --pr "" --json for machine-friendly output.gh pr checks --json name,state,bucket,link,startedAt,completedAt,workflow gh.detailsUrl and run:gh run view --json name,workflowName,conclusion,status,url,event,headBranch,headSha gh run view --log gh api "/repos///actions/jobs//logs" > "" detailsUrl is not a GitHub Actions run, label it as external and only report the URL.create-plan skill to draft a concise plan and request approval.gh pr checks to confirm.Fetch failing PR checks, pull GitHub Actions logs, and extract a failure snippet. Exits non-zero when failures remain so it can be used in automation.
Usage examples:
python "/scripts/inspect_pr_checks.py" --repo "." --pr "123" python "/scripts/inspect_pr_checks.py" --repo "." --pr "https://github.com/org/repo/pull/123" --json python "/scripts/inspect_pr_checks.py" --repo "." --max-lines 200 --context 40 共 1 个版本