What problem does it solve? Multi-repo features routinely leave one repository with committed, pushed work that never got a pull request, and no local git command can detect it because the branch looks clean, in sync, and ahead. This Skill sweeps every attached repository and asks GitHub directly whether a PR exists for each pushed branch. ## Core Features & Use Cases - Cross-repo branch enumeration: Fetches and inspects each repository's checked-out branch, ahead count, and upstream state using an explicit repo-to-default-branch table. - GitHub PR existence check: Queries the GitHub API per branch with an owner-qualified head and state=all to distinguish a genuine gap from a merged PR. - Orphaned commit detection: Identifies commits pushed to a branch whose PR already merged, which silently land in no PR and no default branch. - Use Case: After finishing a feature spanning firmware, host, docs, and hardware repos, run the sweep before declaring the work done to catch the one repo where commits were pushed but the PR was never opened. ## Quick Start Ask the assistant to sweep all attached PolyKybd repositories for pushed branches that have no pull request before closing out the session.