From loopkit
Undoes a bad git commit, file, or hunk without destroying unrelated work, using revert, checkout, or interactive patch.
How this skill is triggered — by the user, by Claude, or both
Slash command
/loopkit:revert-surgicalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Don't `git reset --hard` away three good commits to undo one bad one.
Don't git reset --hard away three good commits to undo one bad one.
git revert <sha> creates an inverse commit; history stays intact and shared-branch-safe.git checkout <good-sha> -- path/to/file.git checkout -p to revert specific changes, keep the rest.git revert -m 1 <merge-sha> (pick the mainline parent).
On a shared branch, always revert (forward), never rewrite history. Reproduce the breakage first so you revert the RIGHT thing, then verify the revert actually fixes it.npx claudepluginhub archive228/loopkit --plugin loopkitUndoes git-branchless operations like rebases, merges, branch changes, and checkouts. Quick undo last action, interactive history browsing, hide/unhide commits.