finishing-a-development-branch — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited finishing-a-development-branch (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Source: obra/superpowers (MIT)
Guide completion of development work by presenting clear options and handling chosen workflow.
Core principle: Verify tests → Present options → Execute choice → Clean up.
Before presenting options, verify tests pass:
# Run project's test suite
npm test / cargo test / pytest / go test ./...If tests fail: Stop. Report failures. Cannot proceed until tests pass.
If tests pass: Continue to Step 2.
git merge-base HEAD main 2>/dev/null || git merge-base HEAD master 2>/dev/nullOr ask: "This branch split from main — is that correct?"
Present exactly these 4 options:
Implementation complete. What would you like to do?
1. Merge back to <base-branch> locally
2. Push and create a Pull Request
3. Keep the branch as-is (I'll handle it later)
4. Discard this work
Which option?Option 1 — Merge Locally:
git checkout <base-branch>
git pull
git merge <feature-branch>
<test command>
git branch -d <feature-branch>Option 2 — Push and Create PR:
git push -u origin <feature-branch>
gh pr create --title "<title>" --body "..."Option 3 — Keep As-Is: Report location. Don't cleanup worktree.
Option 4 — Discard: Require typed "discard" confirmation first. Then:
git checkout <base-branch>
git branch -D <feature-branch>If using git worktrees, remove worktree for Options 1 and 4 only.
Never:
Always:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.