Loading...
Loading...
Branch finishing and PR preparation. Use when completing a feature branch, preparing a pull request, or cleaning up commit history.
npx skill4agent add scando1993/sugar finishNEVER MERGE WITHOUT ALL CHECKS PASSINGgit fetch origin
git rebase origin/maingit push origin <branch-name>
gh pr create --title "<title>" --body "<description>"| Thought | Reality |
|---|---|
| "Tests mostly pass, one flaky test is fine" | ALL tests must pass. Fix the flaky test or skip it with documentation. |
| "The commit history is messy but the code is right" | Messy history makes review harder and bisect useless. Clean it up. |
| "I'll write the PR description later" | The PR description IS the review guide. Write it now while context is fresh. |
| "This is a small change, no need for self-review" | Small changes cause big bugs. Review every line. |