Agent Skill
2/7/2026local-changes
Show and explain all uncommitted changes with a clear diff summary
A
aidencullo
2GitHub Stars
1Views
npx skills add aidencullo/dotfiles
SKILL.md
| Name | local-changes |
| Description | Show and explain all uncommitted changes with a clear diff summary |
name: local-changes description: Show and explain all uncommitted changes with a clear diff summary allowed-tools: Bash(git:*)
Analyze and explain all uncommitted changes in the repository:
-
Get the current state:
git status --short git diff --stat git diff --cached --stat -
Show the full diff (staged and unstaged):
git diff git diff --cached -
Provide a succinct summary:
- Group changes by type (modified, added, deleted, renamed)
- Briefly explain what each change does in 1-2 sentences max
- Use bullet points for clarity
- Keep it short - only elaborate if the user asks for clarification
-
Format the output clearly:
- Start with a one-line overview (e.g., "3 files modified, 1 file added")
- List each file with a brief explanation
- Show relevant diff snippets inline if they help understanding
- Use code blocks for diffs
Skills Info
Original Name:local-changesAuthor:aidencullo
Download