- 🤖 AI-powered git commit summarization using Google's Gemini AI
- 📝 Generates clear, concise, and meaningful commit summaries
- 🔍 Understands complex code changes and provides context-aware descriptions
- ⚡ Fast and efficient processing of git diffs
- 🎯 Focuses on the most important changes in each commit
- Node.js (v14 or higher)
- npm or yarn
- A Google Gemini API key
- Clone the repository:
git clone https://github.com/GitDaksh/GitFlow.git
cd GitFlow
- Install dependencies:
npm install
# or
yarn install
- Set up your environment variables:
Create a
.env
file in the root directory and add your Gemini API key:
GEMINI_API_KEY=your_api_key_here
import { aiSummariseCommit } from './src/lib/gemini';
// Example usage
const diff = `your git diff here`;
const summary = await aiSummariseCommit(diff);
console.log(summary);
- TypeScript - For type-safe code
- Google Generative AI - For AI-powered summarization
- Prisma - For database management
The AI will generate summaries like:
* Made firstName and lastName fields optional in User model [prisma/schema.prisma]
* Added new API endpoint for user authentication [src/routes/auth.ts]
* Updated database schema to include user preferences [prisma/migrations/xxx.sql]
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Your Name - Initial work
- Google Gemini AI team for their amazing API
- The open-source community for their invaluable tools and libraries