What problem does it solve? Concurrent agents and developers working on the same GitHub repository risk overwriting each other's work, merging stale branches, or treating open PRs as free to mutate. This Skill provides a disciplined protocol for comparing, reconciling, publishing, and verifying local and GitHub state without destroying divergent history or bypassing review gates. ## Core Features & Use Cases - Concurrent-change preflight: Classifies workstream ownership, path and semantic overlap, and open PR state before any write, returning outcomes like CLEAR, STALE_BASE_SHA, WAITING_RESOURCE, DUPLICATE_WORK, or BLOCKED_UNVERIFIED. - Copy-integration workflow: Reproduces approved material deltas from latest main on a separate provisional integration branch instead of mutating open owner PRs, with absorbed/residual delta accounting. - Capability fallback and recovery: Routes GitHub operations through an authenticated connector when the gh CLI or local push auth is missing, and recovers safely from HTTP 409 stale-write conflicts, cancelled CI runs, and moved main branches. - Use Case: An AI agent about to push changes detects an open PR touching the same schema registry, keeps it read-only, rebases onto latest main, publishes via the GitHub connector, and verifies the exact post-merge main SHA. ## Quick Start Ask the AI to check whether my current branch is safe to publish to GitHub and reconcile it with the latest main before opening a pull request.