Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Smart change detection, auto branch naming, and streamlined commit/PR workflow
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 139% | 0% |
| case-20 | ✗→✓ | ▲ Improved | 308% | 0% |
| case-21 | ✗→✓ | ▲ Improved | -7% | 0% |
| case-06 | ✓→✗ | ▼ Worse | -20% | 0% |
| case-18 | ✓→✗ | ▼ Worse | 59% | 0% |
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:Other measured skills in the registry, with their headline benchmark lift.