From antigravity-awesome-skills
Groups related file changes, auto-generates branch names and commits, then offers streamlined push and PR creation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:smart-git-automationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Intelligently detect and group related changes
Use this when you want a faster, smarter git workflow that groups changes logically and reduces manual confirmation overhead.
Run in parallel:
git status - check what's changedgit diff --stat - see file modification summarygit diff --name-only - list changed files onlygit diff --staged --stat - see what's already stagedAnalyze changes to group them logically:
Present grouped changes in a clear format, e.g.:
📁 Group 1: UI Components
- src/components/Button.tsx (modified)
- src/components/Button.test.tsx (modified)
📁 Group 2: API Layer
- src/api/client.ts (new)
- src/api/types.ts (modified)
Generate branch name from dominant change pattern:
<type>/<short-description>feature, fix, refactor, docs, test, chorefeature/add-user-auth (from auth-related files)fix/login-validation (from validation changes)refactor/api-cleanup (from API refactoring)Show the proposed branch name and ask for one-word confirmation (or type alternative).
git checkout -b "$branch_name"git add -- path/to/file ...
git diff -z --name-only) and pass them as pathspec arguments.<type>: <short description> (max 72 chars)git push -u origin <branch-name>git remote -vmskadu/repo-name)gh pr create with:
npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-aas-mobile-app-builderSplits dirty Git working tree into grouped commits, creates/pushes branch, and opens GitHub PR with quality title, non-technical description, matched labels, and related issue links. Use for multi-file features ready to ship.
Analyzes uncommitted git changes, excludes ephemeral files like node_modules or build/, groups by purpose into atomic conventional commits, validates code, and optionally pushes.