Create well-formatted commit: $ARGUMENTS
/plugin marketplace add adawalli/claude-plugins/plugin install core@adawalli# Smart Git Commit Create well-formatted commit: $ARGUMENTS ## Current Repository State - Git status: !git status --porcelain - Current branch: !git branch --show-current - Staged changes: !git diff --cached --stat - Unstaged changes: !git diff --stat - Recent commits: !git log --oneline -5 ## What This Command Does 1. Unless specified with --no-verify, automatically runs pre-commit checks if they exit: - lint - format 2. Checks which files are staged with git status 3. If 0 files are staged, automatically adds all modified and new files with git add 4. Performs a git diff to und...