com um clique
git-summary
Get a quick summary of the current Git repository including status, recent commits, branches, and contributors.
Menu
Get a quick summary of the current Git repository including status, recent commits, branches, and contributors.
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
Manages project knowledge using ByteRover context tree. Provides two operations: query (retrieve knowledge) and curate (store knowledge). Invoke when user requests information lookup, pattern discovery, or knowledge persistence. Developed by ByteRover Inc. (https://byterover.dev/)
A comprehensive skill for using the Cursor CLI agent for various software engineering tasks (updated for 2026 features, includes tmux automation guide).
Perform web searches using DuckDuckGo. Use when web search is needed and no API key is available or Brave Search is not preferred.
Convert text to speech using Duby.so API. Supports various voices and emotions.
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution.
| name | git-summary |
| description | Get a quick summary of the current Git repository including status, recent commits, branches, and contributors. |
| user-invocable | true |
| metadata | {"openclaw":{"emoji":"📊","requires":{"bins":["git"]},"os":["darwin","linux","win32"]}} |
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 Summary
### Current 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.