What problem does it solve? Turning finished branch work into a clean, reviewed pull request involves many error-prone steps: committing everything, rebasing on master, respecting repo guardrails, opening the PR, and iterating on automated review feedback. This Skill standardizes that entire procedure for the Todero repository so no work is lost and every PR meets the project's review bar. ## Core Features & Use Cases - Worktree-safe PR preparation: Verifies you are on a dedicated branch in a git worktree, commits all changes with the required Co-Authored-By trailer, and rebases cleanly on top of the target master. - Guardrail enforcement: Blocks committing pnpm-lock.yaml, unexpected workflow changes, and design screenshots; enforces incremental idempotent migrations and a 100-changed-files PR limit. - Automated review loops: Runs Greptile review until it reaches 5/5 with zero unresolved comments, then runs verification/CI checks, and reports PR URLs, worktree path, and check status back to the driving task. - Use Case: An agent finishes a feature branch for the Todero repo and needs it merged-ready: this Skill commits the work, rebases on master, opens the PR with gh per CONTRIBUTING.md, and iterates on Greptile feedback until the PR is green. ## Quick Start Prepare my current Todero branch as a pull request against master, following the full commit, rebase, guardrail, and Greptile review procedure.