Git operations, history exploration, and intelligent commit management. Use when users ask about git history ("what did we change", "when did we add"), want to understand past changes, need help with commits ("commit this", "save my work", "checkpoint"), ask about branches, or mention recent work.
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
Git operations, history exploration, and intelligent commit management.
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 changesFor file history and branch info, use Bash:
git log --oneline -10 -- <filepath> - File-specific historygit branch -a - Branch informationAlways use Conventional Commits format:
<type>(<scope>): <subject>
Type mappings:
| Type | Use for |
|---|---|
| feat | New feature |
| fix | Bug fix |
| docs | Documentation |
| style | Formatting |
| refactor | Refactoring |
| perf | Performance |
| test | Tests |
| build | Build system |
| ci | CI/CD |
| chore | Maintenance |
| revert | Revert |
User: "What changed in the auth module recently?"
search_commits with query "auth" or Bash git log --oneline -10 -- src/auth/User: "Commit my changes"
get_status, review diffs, create appropriate conventional commitUser: "What did we do this session?"
User: "Save my work before I try this"