源代码管理面板 Commit 按钮集成


## 功能请求:源代码管理面板 Commit 按钮集成

### 需求描述
希望 Qoder 能够接管 VS Code 源代码管理面板中的"生成 commit message"按钮,
使其触发 `.qoder/skills/commit/SKILL.md` 中定义的自定义 commit 技能,
而不是使用 Copilot 或 VS Code 内置的默认生成器。

### 当前情况
- `/commit` 命令可以正常触发自定义 commit 技能 :white_check_mark:
- 但源代码管理面板的按钮触发的是 Copilot 默认格式 :cross_mark:

### 期望行为
点击源代码管理面板的 commit 生成按钮时,能够:
1. 读取项目中的 `.qoder/skills/commit/SKILL.md` 配置
2. 按照自定义规范生成 commit message
3. 自动填充到 commit 输入框

### 使用场景
团队有统一的 commit message 规范(如版本号格式 `vX.Y.Z Type: 描述`),
希望通过 Qoder 技能统一管理,提高开发效率。