diagnose-ci-failures Programmatically diagnose CI failures for a PR and generate a plan to fix them. Overview This skill provides a deterministic workflow to check CI status for a PR, extract failure logs, analyze errors, and create a plan (not code changes) to resolve issues. The output is always a plan document that can be reviewed before execution. Workflow 1. Verify PR exists for current branch Get the current branch and check if a PR exists:
Get current branch
git branch --show-current
Check for PR
Show more