🧠 AI-powered code reviewer for your staged Git changes using Google Gemini.
Codeeye is an open-source JavaScript/Node.js package published on NPM that uses AI to review your Git staged changes.
It leverages Google Gemini to provide smart suggestions, summaries, and markdown outputs—perfect for improving pull request quality and automating code reviews.
- 🌟 NPM installable CLI tool
- 🤖 AI-powered code feedback using Gemini
- 📝 Markdown output for PR comments
- 📋 Clipboard copy support
- 📄 Summary-only mode
npm install codeeye
- if you want to install this package locally you need to use codeye command with npx
npx codeeye
npx codeeye --summary
npx codeeye --md
npx codeeye --copy
npx codeeye --fix
npm i -g codeeye
- Navigate to desired repo
- create or modify existing .env file and add "GOOGLE_API_KEY" variable with gemini api key
- Stage you changes with git add .
- Run the command below to review the staged changes using AI
codeeye
- Get a summary only:
codeeye --summary
- Output in Markdown (for GitHub PR bots):
codeeye --md
- Copy suggestions to clipboard:
codeeye --copy
- Fix staged changes:
codeeye --fix