
Commit
- Updated May 8, 2026
- g-kari/g-kari-plugins
commit automates the git commit workflow end to end. It analyzes the diff, generates a commit message, runs pre-commit checks, and creates the commit. It removes the manual steps of producing well-formed, checked commits.
Key points
- Analyzes the diff
- Generates commit message
- Runs pre-commit checks
- Creates the commit
Commit by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add g-kari/g-kari-plugins/plugin install commit@g-kari-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | May 8, 2026 |
|---|---|
| Repository | g-kari/g-kari-plugins ↗ |
What it does
Automate the git commit workflow — analyze the diff, generate a message, run pre-commit checks, and create the commit.
README.md
commit
git commit のワークフローを自動化する Claude Code プラグイン。
機能
- 差分の分析とコミット対象の判断
- プロジェクト固有のチェックコマンドを自動検出・実行
- 既存のコミットスタイルに合わせたメッセージ生成
- シークレットファイルの誤コミット防止
使い方
/commit # 差分からメッセージを自動生成してコミット
/commit -m '修正' # メッセージを指定してコミット
/commit --push # コミット後に push も実行
インストール
/plugin marketplace add g-kari/g-kari-plugins
/plugin install commit
設計方針
- 安全第一:
--no-verify,--amend,git add .は使わない - プロジェクト適応: コミットスタイルとチェックコマンドを自動検出
- 最小限の介入: 引数なしでも差分から適切にコミットできる