How this skill is triggered — by the user, by Claude, or both
Slash command
/git-expert:git-blameThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Annotate files line-by-line to find the last commit that modified each line.
Annotate files line-by-line to find the last commit that modified each line.
git blame <file>git blame --date=short <file>git blame -e <file>git blame -L <start>,<end> <file>git blame -s <file> (supports author/timestamp)git blame <commit>.. <file>git blame -w <file>git blame --line-porcelain <file>Triggered when user says "blame", "who changed this line", "find the commit that added this".
Use -L to target specific lines. Always show the commit hash, author, date, and line content.
npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin git-expertCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.