
git-expert
by nathanvale
SideQuest - ADHD-friendly Claude Code plugins for developers who thrive on hyperfocus. Tools that work with your brain, not against it.
SKILL.md
name: git-expert description: Git history exploration and repository analysis. Use when users ask about git history ("what changed", "when did we add"), want to understand past changes, need to search commits, ask about branches, or want to explore the codebase evolution.
Git Expert Skill
Git history exploration and repository analysis.
Capabilities
History Analysis
- Search commit messages and code changes
- Trace file history to understand evolution
- Find when specific code was introduced or removed
- Identify who made changes and why
Repository Exploration
- Branch information and comparisons
- Diff analysis between commits/branches
- Blame to find who changed specific lines
Session Awareness
- Track what was done during the current session
- Show uncommitted work status
Tools Available
Use the git-intelligence MCP server tools:
get_recent_commits- Recent commit historysearch_commits- Search by message or codeget_status- Current repository stateget_diff_summary- Summary of changesget_file_history- History of a specific fileget_branch_info- Branch information
For additional queries, use Bash:
git log --oneline -10 -- <filepath>- File-specific historygit branch -a- All branchesgit blame <filepath>- Line-by-line attributiongit show <commit>- Commit detailsgit diff <ref1>..<ref2>- Compare refs
Example Interactions
User: "What changed in the auth module recently?"
- Use
search_commitswith query "auth" orgit log --oneline -10 -- src/auth/
User: "When did we add the login feature?"
- Use
search_commitswith query "login" andsearch_code: false
User: "Who changed this file?"
- Use
git blame <filepath>orget_file_history
User: "What branches exist?"
- Use
get_branch_infoorgit branch -a
User: "What did we do this session?"
- Use
get_recent_commitsandget_statusto summarize activity
For Committing Changes
Use the smart-commit skill for creating commits. This skill focuses on history exploration only.
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon