From git-intent-interface
Show git log with patches (diffs) in reverse order for the last N commits. This skill should be used when the user says "show patches", "show last N commits with diffs", "git log patches", "review recent diffs", or "show me what changed".
How this skill is triggered — by the user, by Claude, or both
Slash command
/git-intent-interface:git-log-patchesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
If `$ARGUMENTS` is empty or not a positive integer, ask the user for the number of commits.
If $ARGUMENTS is empty or not a positive integer, ask the user for the number of commits.
Run the command and display the output:
git log -p -$ARGUMENTS --reverse
npx claudepluginhub maxim-uvarov/my-claude-skills --plugin git-intent-interfaceDisplays Git commits since latest tag in author-aware table format, with interactive details option via git show.
Explores Git change history using Brokk's searchGitCommitMessages to search commit messages by pattern and getGitLog to view recent commits. Useful for finding feature additions, bug fixes, or development pace in files/directories.
Reviews recent git diffs and commits with brutal honesty before PRs, spotting 2am logic flaws, copy-paste artifacts, debug leftovers, hacks, and poor naming.