What problem does it solve? When production already sits on master in the desired state, re-running the full ship pipeline (branch, commit, PR, merge) just to re-trigger a deploy is wasteful and risky. This Skill re-dispatches the CI/CD deploy workflow against the current master with zero git history changes. ## Core Features & Use Cases - Read-only preconditions: Verifies gh CLI authentication, git repository presence, HEAD on master/main, and a clean working tree before any action, stopping safely otherwise. - Workflow resolution and dispatch: Reuses the ptp-deploy deploy step logic to auto-detect or use a configured GitHub Actions workflow, then dispatches it via workflow_dispatch and watches the run to completion. - Explicit terminal outcomes: Reports clear stop reasons for missing workflows, non-dispatchable workflows, or failed deploy runs, never silently no-ops and never runs fix loops. - Use Case: After a hotfix was merged directly to master outside the pipeline, re-trigger the production deploy workflow without cutting a branch or opening a PR. ## Quick Start Ask the assistant to deploy the current master as-is using the ptp-deploy-master skill while on a clean master branch.