Install
$ agentstack add skill-sordi-ai-skill-everything-branch-finishing ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Sub-Skill: Branch Finishing
Purpose: Ensures every feature branch is cleanly rebased, reviewed, and merged without introducing regressions or leaving stale local state behind.
Rules
Pre-Merge Preparation
- Rebase before merge. Always rebase onto the target branch immediately before requesting merge to catch regressions introduced since the branch was cut. Reference: ERR-2026-024
- Resolve conflicts locally. Before pushing a rebase, resolve every conflict locally and run the full test suite; never push a branch with unresolved markers.
- CI green before review. Ensure all CI checks pass on the latest push before requesting a human review; do not ask reviewers to look at a red branch.
- Self-review diff. Before opening a PR, run
git diff main...HEADand read every changed line; catch debug prints, commented-out code, and accidental file inclusions yourself first.
Commit Hygiene
- Squash fixup commits. Before merge, squash or fixup any
wip:,fixup!, ortmp:commits so the branch history is clean; usegit rebase -ito consolidate. - Issue closing keywords. Use
Closes #NNNorFixes #NNNin the PR body so the linked issue auto-closes on merge; never leave issues open manually after a successful merge. - Changelog update. After any user-visible change, add an entry to
CHANGELOG.md(or the project's equivalent) before marking the PR ready for review. - Version bump. If the project uses semantic versioning, bump the version in the appropriate manifest file as part of the branch before merge, not as a follow-up commit.
Draft → Ready Transition
- Draft until CI passes. Keep the PR in draft state until all CI checks are green and the self-review is complete; convert to ready-for-review only when the branch is genuinely merge-ready.
- Remove draft status explicitly. Use
gh pr readyto convert from draft; do not rely on reviewers noticing a draft PR that was silently updated.
Post-Merge Cleanup
- Delete remote branch after merge. After a successful merge, delete the remote branch with
git push origin --deleteor enable auto-delete in repository settings; stale remote branches pollute the branch list. - Delete local branch after merge. After confirming the remote merge, delete the local tracking branch with
git branch -dto keep the local workspace clean. - Post-merge verification. After merge, pull
mainlocally and run the test suite once to confirm the integrated state is green; do not assume CI on the PR branch is sufficient.
Conflict Resolution
- Prefer rebase over merge commits. Avoid merge commits on feature branches; use
git rebaseto maintain a linear history unless the team explicitly requires merge commits.
See also
skills/git-conventions/SKILL.mdskills/review-deployment/SKILL.md
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sordi-ai
- Source: sordi-ai/skill-everything
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.