review-history
Installation
SKILL.md
Review History
Investigate how code evolved over time to understand current behavior or find regressions.
Usage
/review-history src/auth/login.ts
/review-history the authentication flow
/review-history UserProfile component
Gotchas
git log -Sfinds commits where the string was added OR removed. A commit that deleted a function surfaces as equally relevant to the one that added it — verify the direction of change.- Squash merges erase commit-level traceability.
git reflogonly works locally and expires — if another contributor squashed and force-pushed, the original commits are unrecoverable.