Create a git commit following Conventional Commits specification
/plugin marketplace add whinc/my-claude-plugins/plugin install whinc-git-plugin-git-plugin@whinc/my-claude-plugins## 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 above changes, create a single git commit following the Conventional Commits specification. Analyze the changes to automatically determine the appropriate commit type, scope, and description. ### Conventional Commits Analysis Logic: **1. Determine Commit Type:** - `feat`: New features, additions, breaking changes - Keywords: add, create, implement, new, intr...