What problem does it solve?
Shipping a branch as a merge-ready pull request involves many error-prone steps: cleaning up unrelated changes, running the right checks, getting an independent code review, writing a proper PR description, and waiting for CI to go green on the latest commit. This Skill automates that entire delivery loop while enforcing strict safety rules, so a human reviewer receives a PR they can confidently merge.
Core Features & Use Cases
- End-to-end PR delivery: Collects branch context, runs deterministic verification (lint, typecheck, tests, build), commits with commitzen messages, pushes, creates or updates the PR, and waits until every visible CI check is green on the latest pushed SHA.
- Credit-aware worker delegation: Routes bounded implementation and review work to host-native workers (Codex, Claude Code, OpenCode) with tiered budgets, a single-writer rule, and one independent review-code-dev gate instead of duplicated review passes.
- Strict readiness gates: Never merges, never force-pushes, never bypasses hooks, protects unrelated user work, blocks on unresolved P0/P1 findings or red CI, and runs a report-only learning pass before handoff.
- Use Case: You finished a backend fix on a feature branch and say "ship this as a PR." The Skill verifies the change, runs the review gate, fixes findings, pushes, opens the PR, iterates on CI failures, and returns the PR URL only when everything is green.
Quick Start
Ask the assistant to ship the current branch as a pull request against main without merging it.