Help us improve
Share bugs, ideas, or general feedback.
How this skill is triggered — by the user, by Claude, or both
Slash command
/git-logs:git-logsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to a set of MCP tools (prefixed `git_logs_`) that explore git history and summarize development activity. Use them to answer questions about what was built, who worked on what, and where risks or bottlenecks exist.
Share bugs, ideas, or general feedback.
You have access to a set of MCP tools (prefixed git_logs_) that explore git history and summarize development activity. Use them to answer questions about what was built, who worked on what, and where risks or bottlenecks exist.
get_log_summary - Categorized commit summary for a time period (features, fixes, refactors, docs, chores). Requires since; optional: until, repo_path, author, branch.get_log_detail - Individual commits with full messages, diff stats, ticket references, and file paths. Requires since; optional: until, repo_path, author, branch, path_filter, max_commits (default 100).get_log_by_file - Per-file activity breakdown ranked by commit count. Requires since; optional: until, repo_path, author, branch, top_n (default 20).list_authors - Authors with commit counts for a time period. Requires since; optional: until, repo_path, branch.get_line_stats - Lines-of-code metrics (insertions, deletions, net) grouped by author, branch, or author_branch. Requires since; optional: until, repo_path, author, branch, group_by.get_commits_by_ticket - Commits grouped by Jira-style ticket references (e.g., AUTH-142) extracted from commit messages. Also surfaces untagged commits. Requires since; optional: until, repo_path, author, branch, ticket_pattern.get_branch_status - Branch staleness and health (active/idle/stale), ahead/behind counts, merge status. Optional: repo_path, base_branch (default "main"), author, include_merged.get_commit_velocity - Commit frequency over time bucketed by day or week. Zero-activity periods are included. Requires since; optional: until, repo_path, author, branch, bucket.get_code_churn - Files with high rewrite rates (churn_ratio = insertions / max(net, 1)). Higher = more rework. Requires since; optional: until, repo_path, author, branch, top_n.get_commit_size_distribution - Commit size stats (small/medium/large buckets, avg/median/max) by author or branch. Requires since; optional: until, repo_path, author, branch, group_by.get_file_coupling - File pairs that frequently change together. High coupling between unrelated files suggests hidden dependencies. Requires since; optional: until, repo_path, branch, min_commits (default 3), top_n.get_knowledge_map - Ownership concentration and bus factor per file or directory. Bus factor of 1 = single-person risk. Optional: since, until, repo_path, branch, path_prefix, group_by (file or directory), top_n.get_log_summary or list_authors first to understand the landscape, then use get_log_detail, get_log_by_file, or get_line_stats for specifics.branch to narrow scope.since parameter accepts expressions like "1 week ago", "3 days ago", "2 months ago" in addition to ISO dates.get_commits_by_ticket + get_branch_status to correlate ticket work with branch health.npx claudepluginhub mlkrueger/mkrueger-claude-plugins-marketplace --plugin git-logsAnalyzes git history to find code hotspots, temporal coupling between files, contributor knowledge distribution, and bus factor risks. Useful for queries on code ownership, frequent changes, or evolution.
Extracts git intelligence with activity heatmaps, ownership analysis, and in-flight branches/PRs for discovery sessions. Activated via /fp:hot, /fp:owner, /fp:in-flight commands.
Analyzes git history to identify code hotspots, bug magnets, bus factor, team momentum, and recent changes. Use when onboarding to unfamiliar codebases or assessing project health.