Create a git commit with Conventional Commits format
/plugin marketplace add creator-hian/claude-code-plugins/plugin install git-plugin@creator-hian-marketplaceclaude-haiku-4-5-20251001# Git Commit ## Context - Current git status: !`git status` - Current git diff (staged and unstaged changes): !`git diff HEAD` - Current branch: !`git branch --show-current` - Recent commits: !`git log --oneline -10` ## Your Task Based on the changes shown above, create a git commit following these rules: 1. **If no files are staged**: Run `git add` to stage all modified files 2. **Check for forbidden files**: Do NOT commit .env, *.key, credentials.json, secrets 3. **Analyze changes**: Determine if changes should be split into multiple commits 4. **Create commit** using Conventional Co...