bundled-skills/smart-git-automation/SKILL.md
Smart change detection, auto branch naming, and streamlined commit/PR workflow
npx skillsauth add FrancoStino/opencode-skills-antigravity smart-git-automationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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:
tools
Authorized security assessment of LLM applications and AI agents: prompt injection, tool abuse, RAG exposure, memory poisoning, system-prompt extraction, and agent-compliance engineering per OWASP LLM/ASI Top 10.
development
Builds two parameterized UI modes—流光溢彩白 (iridescent white) and 五彩斑斓黑 (colorful black)—with OKLCH, WebGL/CSS fallback, vision gating, screenshot QA, and total/per-color intensity reports. Use when a UI request names either mode or needs measured color parameters.
tools
Delegate coding tasks to the Kimi Code CLI (`kimi`) only when the user explicitly requests it, while the orchestrator retains review and landing responsibility.
development
Front-end JavaScript reverse engineering: locate signature chains, analyze encrypted request parameters, sample runtime behavior, and reproduce logic locally in Node for evidence-based output.