Run pre-commit hooks and create clean, logical commits
/plugin marketplace add basher83/lunar-claude/plugin install git-workflow@lunar-claude# Git Commit Workflow Orchestrate pre-commit hooks and invoke commit-craft agent for clean, logical commits. ## Current State - Branch and status: !`git status -sb` - Working directory: !`git status --short` - Merge/rebase state: !`test -f .git/MERGE_HEAD && echo "MERGE IN PROGRESS" || test -d .git/rebase-merge && echo "REBASE IN PROGRESS" || echo "Clean"` - Staged files: !`git diff --cached --name-only` - Sensitive files check: !`git diff --cached --name-only | grep -iE '\.(env|mcp\.json)$|secret|token|key|password' || echo "None detected"` ## Workflow ### Step 1: Pre-flight Checks V...