Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Summarize the current git repository: branch, recent commits, changed files, and overall health. Use when asked for a repo overview or status check.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 85% | 0% |
| case-14 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-18 | ✗→✓ | ▲ Improved | -70% | 0% |
| case-08 | ✓→✗ | ▼ Worse | -63% | 0% |
| case-12 | ✓→✗ | ▼ Worse | 87% | 0% |
Produce a concise summary of the current git repository state.
git rev-parse --abbrev-ref HEAD to get the current branch.git log --oneline -10 to list the 10 most recent commits.git status --short to show uncommitted changes.git stash list to check for stashed work.git remote -v to list configured remotes.Present the summary as a structured report:
## Repository Summary
**Branch**: <current branch>
**Remotes**: <list of remotes>
**Recent commits** (last 10):
- <commit hash> <message>
...
**Working tree**: <clean | N files changed>
**Stashes**: <none | N stashes>Other measured skills in the registry, with their headline benchmark lift.