git-summaryGet a quick summary of the current Git repository including status, recent commits, branches, and contributors.
Install via ClawdBot CLI:
clawdbot install zweack/git-summaryThis skill provides a comprehensive overview of the current Git repository state.
When the user asks for a git summary, repository overview, or wants to understand the current state of a git project, use the terminal to run the following commands and present the results in a clear, organized format.
git status --short --branch to get the current branch and working directory status.git log --oneline -10 --decorate to show the last 10 commits with branch/tag decorations.git branch -a --list to list all local and remote branches.git remote -v to show configured remotes.git diff --stat for unstaged changesgit diff --cached --stat for staged changesgit shortlog -sn --all | head -10 to show top 10 contributors.Present the gathered information in a structured format:
```
```
git init.Generated Mar 1, 2026
During sprint reviews, development teams need a quick overview of repository status to assess progress and identify blockers. This skill provides a consolidated view of recent commits, branch activity, and uncommitted changes, facilitating efficient discussions and decision-making.
New team members joining a project can use this skill to quickly understand the repository's structure, recent activity, and key contributors. It helps them get up to speed by summarizing the current state and history without manually running multiple Git commands.
DevOps engineers monitoring continuous integration pipelines can leverage this skill to check repository health before deployments. It highlights uncommitted changes, branch divergences, and recent commits, aiding in pre-deployment validation and troubleshooting.
Research teams collaborating on code for data analysis or simulations can use this skill to track contributions and changes across branches. It provides a clear summary of who has been active and what modifications are pending, enhancing coordination in academic projects.
Offer this skill as part of a free tier in a suite of developer tools, with premium features like advanced analytics or integration with project management platforms. Revenue is generated through subscription upgrades for teams requiring deeper insights and automation.
Integrate this skill into enterprise DevOps platforms used by large organizations for code management and collaboration. Revenue comes from licensing fees based on the number of users or repositories, with customization options for specific workflows.
Package this skill with training materials and workshops for educational institutions or corporate training programs. Revenue is generated through course fees, certifications, or bundled software packages aimed at teaching Git best practices and repository management.
💬 Integration Tip
Ensure Git is installed and accessible in the terminal; consider adding error handling for non-Git directories to improve user experience.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Query the DeepWiki MCP server for GitHub repository documentation, wiki structure, and AI-powered questions.
Automated GitHub PR code review with diff analysis, lint integration, and structured reports. Use when reviewing pull requests, checking for security issues,...
Essential Git commands and workflows for version control, branching, and collaboration.
Advanced git operations beyond add/commit/push. Use when rebasing, bisecting bugs, using worktrees for parallel development, recovering with reflog, managing subtrees/submodules, resolving merge conflicts, cherry-picking across branches, or working with monorepos.
Format commit messages using the Conventional Commits specification. Use when creating commits, writing commit messages, or when the user mentions commits, git commits, or commit messages. Ensures commits follow the standard format for automated tooling, changelog generation, and semantic versioning.