signoff
Installation
SKILL.md
Sign Off
Take the change that's already in the working tree and get it onto a PR: branch → commit → push → PR → open in browser. The goal is a clean, reviewable pull request with zero collateral — nothing committed that you didn't write this session.
Golden rule — commit only your own work
Never git add -A, git add ., or git commit -a. Stage every file explicitly by path. Files that were already staged or sitting untracked before you started are not yours to commit — leave them alone. If you can't tell whether a change is yours, ask before staging it. This rule overrides convenience every time.
Workflow
1) Find the base repo and branch
git remote -v