This runs a multi-phase gate check on your PR branch before you submit it. It verifies you're not too far behind upstream (blocking if you're 20+ commits back), checks that all your commits share a single type prefix (refactor, fix, etc.), and flags scope creep when files fall outside the intended area. The workflow is opinionated: it actually wants you to split mixed-type commits into separate branches via cherry-pick rather than let them through. Most useful right after you finish implementation and before running pr-prep. The blocking checks are sensible (upstream alignment, single commit type, thematic file changes), and it outputs concrete remediation steps when things fail. Saves you from the embarrassment of submitting a kitchen sink PR.
npx skills add https://github.com/boshu2/agentops --skill pr-validate