← Back to Skills Marketplace
131
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install git-quick
Description
Show a quick summary of the current git repo — branch, status, recent commits, and contributor stats.
README (SKILL.md)
git-quick
A lightweight skill that displays a quick summary of the current git repository.
What it does
- Shows current branch and tracking status
- Lists modified/staged/untracked files
- Displays the 5 most recent commits
- Shows top contributors by commit count
Usage
Run the script directly:
bash git-quick.sh
Or use the shorthand:
bash git-quick.sh --short # Only show branch + status
bash git-quick.sh --commits # Only show recent commits
bash git-quick.sh --stats # Only show contributor stats
Example Output
=== Git Quick Summary ===
Branch: main (up to date with origin/main)
--- Status ---
M src/app.ts
A src/utils.ts
?? config.local.json
--- Recent Commits ---
a1b2c3d feat: add user auth module (2 hours ago)
e4f5g6h fix: resolve login redirect loop (5 hours ago)
i7j8k9l docs: update API reference (1 day ago)
--- Top Contributors ---
alice 42 commits
bob 28 commits
carol 15 commits
Usage Guidance
This appears safe: the script only runs local git commands and does not send data anywhere. As with any downloaded script, inspect git-quick.sh before running it and only run it in repositories you trust. Note that the script requires the git binary and will fail if run outside a git repository.
Capability Analysis
Type: OpenClaw Skill
Name: git-quick
Version: 1.0.0
The git-quick skill is a legitimate utility for summarizing Git repository status, commit history, and contributor statistics. The bash script (git-quick.sh) uses standard, local git commands and contains no evidence of data exfiltration, malicious execution, or prompt injection.
Capability Assessment
Purpose & Capability
Name/description match the implementation. The script only invokes git to show branch, status, recent commits, and contributor stats; the only required binary is git and no unrelated credentials or tools are requested.
Instruction Scope
SKILL.md instructs running the included git-quick.sh. The script only reads git state and config within the repository (git rev-parse, git config, git status, git log, git shortlog). It does not access unrelated files, environment variables, or external endpoints.
Install Mechanism
No install spec — instruction-only with a single script file. Nothing is downloaded or written to disk by an installer.
Credentials
No environment variables, secrets, or config paths are requested. The requested capabilities (git) are exactly what the script needs.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent or elevated privileges, nor does it modify other skills or global agent settings.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install git-quick - After installation, invoke the skill by name or use
/git-quick - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of git-quick.
- Displays current branch and tracking status.
- Lists modified, staged, and untracked files.
- Shows the 5 most recent commits.
- Presents top contributors by commit count.
- Supports optional output modes: --short, --commits, --stats.
Metadata
Frequently Asked Questions
What is git-quick?
Show a quick summary of the current git repo — branch, status, recent commits, and contributor stats. It is an AI Agent Skill for Claude Code / OpenClaw, with 131 downloads so far.
How do I install git-quick?
Run "/install git-quick" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is git-quick free?
Yes, git-quick is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does git-quick support?
git-quick is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created git-quick?
It is built and maintained by hackerYHT (@hackeryht); the current version is v1.0.0.
More Skills