AI-powered Git commit message generator using Conventional Commits
Project description
aicommit 🤖
使用 AI 自動生成符合 Conventional Commits 規範的 Git commit 訊息。 使用 Gemini 2.5 Flash-Lite 這是速度最快的 Flash 模型,經過最佳化調整,成本效益最高,輸送量也最大。
✨ 功能特色
- 🤖 AI 智能生成:使用 Google Gemini AI 分析程式碼變更,自動生成專業的 commit 訊息
- ✏️ 手動編輯:可以編輯 AI 生成的訊息,保留個人風格
- ✅ 格式驗證:自動檢查 commit 訊息是否符合 Conventional Commits 規範
- 🎯 繁體中文支援:生成的訊息使用繁體中文描述
- 🚀 全域命令:安裝後可在任何 Git 專案中直接使用
📋 安裝需求
- Python 3.10+
- Google Gemini API 金鑰
- Git
🚀 快速開始
1. 安裝 aicommit
# 使用 pip 安裝
pip install aicommit-joy
# 或使用 pipx(推薦,避免依賴衝突)
pipx install aicommit-joy
# 或使用 uv(最快速)
uv tool install aicommit-joy
💡 提示:
2. 設定 API 金鑰
在您的專案目錄建立 .env 檔案:
echo "GEMINI_API_KEY=your_gemini_api_key_here" > .env
如何取得 API 金鑰?
前往 Google AI Studio 免費取得您的 Gemini API 金鑰
3. 開始使用
# 在任何 Git 專案中
cd /path/to/your/project
# 暫存變更
git add .
# 執行 aicommit
aicommit
就這麼簡單!✨
📖 使用範例
$ cd /path/to/your/project
$ git add .
$ aicommit
🤖 AI 正在分析程式碼變更,請稍候...
------------------------------------
📝 建議訊息: feat: 新增使用者登入功能
------------------------------------
請選擇操作 (y=使用/e=編輯/n=取消): e
請輸入新的 commit 訊息(按 Enter 確認):
feat: 新增使用者登入功能
> feat: 新增使用者登入與註冊功能
✅ 訊息格式正確!
📝 更新後的訊息: feat: 新增使用者登入與註冊功能
是否提交此訊息? (y/n): y
✅ 提交成功!可以使用 git push 上傳
🎯 操作選項
執行 aicommit 後,您有三個選項:
y- 直接使用 AI 生成的訊息提交e- 編輯訊息後再提交n- 取消提交
📝 Conventional Commits 規範
aicommit 遵循 Conventional Commits 規範。
允許的 Commit Types
| Type | 說明 | 範例 |
|---|---|---|
feat |
新增功能 | feat: 新增使用者登入功能 |
fix |
修復 bug | fix: 修復登入頁面顯示錯誤 |
docs |
文件修改 | docs: 更新 API 文件 |
style |
格式修改(不影響程式邏輯) | style: 調整程式碼縮排 |
refactor |
程式碼重構 | refactor: 重構資料處理邏輯 |
perf |
效能優化 | perf: 優化資料庫查詢效能 |
test |
測試相關 | test: 新增登入功能測試 |
build |
建置系統修改 | build: 更新依賴套件版本 |
ci |
CI 設定修改 | ci: 新增 GitHub Actions 工作流程 |
chore |
雜項修改 | chore: 更新 .gitignore |
revert |
恢復先前提交 | revert: 恢復登入功能變更 |
格式範例
<type>: <subject>
正確範例:
- ✅
feat: 新增使用者登入功能 - ✅
fix: 修復登入頁面顯示錯誤 - ✅
docs: 更新 README 安裝說明
錯誤範例:
- ❌
feature: 新增功能(type 錯誤,應為feat) - ❌
feat 新增功能(缺少冒號) - ❌
feat:(subject 為空)
�️ 進階使用
查看版本
aicommit --version
查看幫助
aicommit --help
更新 aicommit
# 使用 pip
pip install --upgrade aicommit-joy
# 或使用 pipx
pipx upgrade aicommit-joy
# 或使用 uv
uv tool upgrade aicommit-joy
卸載 aicommit
# 使用 pip
pip uninstall aicommit-joy
# 或使用 pipx
pipx uninstall aicommit-joy
# 或使用 uv
uv tool uninstall aicommit-joy
🔧 問題排除
❌ 找不到 GEMINI_API_KEY
❌ Error: 找不到 GEMINI_API_KEY
請在當前目錄建立 .env 檔案,內容:GEMINI_API_KEY=你的金鑰
解決方案:
- 確認您的專案目錄中有
.env檔案 - 檢查
.env內容格式正確:GEMINI_API_KEY=your_key_here - API 金鑰沒有多餘的引號或空格
❌ 沒有偵測到暫存的變更
⚠️ 沒有偵測到暫存的變更(Staged Changes),如有變更請先執行 git add
解決方案:先使用 git add 暫存您要提交的變更
git add . # 暫存所有變更
git add file1.py file2.py # 暫存特定檔案
❌ AI 生成失敗
❌ AI 生成失敗: ...
可能原因:
- 網路連線問題
- API 金鑰無效或過期
- API 配額已用完
- 變更內容過大
解決方案:
- 檢查網路連線
- 確認 API 金鑰有效
- 查看 Google AI Studio 配額使用狀況
👨💻 開發者指南
專案結構
aicommit-cli/
├── aicommit_cli/ # 主要套件
│ ├── __init__.py # 套件初始化
│ ├── core.py # 核心功能(Git、AI、驗證)
│ └── cli.py # CLI 入口點
├── install.sh # 自動安裝腳本
├── pyproject.toml # 專案配置
├── LICENSE # MIT 授權
└── README.md # 專案說明
執行測試
# 建立測試專案
cd /tmp
mkdir test-repo
cd test-repo
git init
# 建立測試檔案
echo "# Test" > README.md
git add README.md
# 測試 aicommit
aicommit
🙏 致謝
- Google Gemini - 提供強大的 AI 能力
- Conventional Commits - 提供 commit 訊息規範
享受使用 aicommit 的樂趣! 🚀
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aicommit_joy-0.1.1.tar.gz.
File metadata
- Download URL: aicommit_joy-0.1.1.tar.gz
- Upload date:
- Size: 41.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
132fa0ec9939df05ff3a8fa886e54035cdc8d52863335dc423b54d300d510613
|
|
| MD5 |
ecd1cac9b5fce47af8c32ba88e821bb7
|
|
| BLAKE2b-256 |
569b5babc20f0dab2092c52a5fa7d8ae957cf88bc23ded415c2c6eba02abbc14
|
File details
Details for the file aicommit_joy-0.1.1-py3-none-any.whl.
File metadata
- Download URL: aicommit_joy-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1646e3b6a2019bbc53e0d5a62efdd24fcd960889b537ecaa1f1f23aec183ad8d
|
|
| MD5 |
58b50b773655b73f77e6cd1c699a8f7a
|
|
| BLAKE2b-256 |
41747e45552c7ac0cf742169792915d37698d9b9d2837a8680387e60c1a1b107
|