Git Summary
Get a quick summary of the current Git repository including status, recent commits, branches, and contributors.
Get a quick summary of the current Git repository including status, recent commits, branches, and contributors.
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
This 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.
Repository Status: Run
git status --short --branch to get the current branch and working directory status.
Recent Commits: Run
git log --oneline -10 --decorate to show the last 10 commits with branch/tag decorations.
Branch Overview: Run
git branch -a --list to list all local and remote branches.
Remote Info: Run
git remote -v to show configured remotes.
Uncommitted Changes Summary:
git diff --stat for unstaged changesgit diff --cached --stat for staged changesContributors (optional, for larger context): Run
git shortlog -sn --all | head -10 to show top 10 contributors.
Present the gathered information in a structured format:
## 📊 Git Repository SummaryCurrent Branch & Status
- Branch:
<branch_name>- Status: <clean/dirty with X modified, Y staged, Z untracked>
Recent Commits (Last 10)
<formatted commit list>
Branches
- Local: <count> branches
- Remote: <count> branches <list notable branches>
Remotes
<list remotes with URLs>
Uncommitted Changes
<summary of staged and unstaged changes>
git init.No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.