# ๐ฎ Git-Iris: Your Agentic Git Companion
<div align="center">
[](https://github.com/hyperb1iss/git-iris/actions)
[](https://hub.docker.com/r/hyperb1iss/git-iris)
[](https://opensource.org/licenses/Apache-2.0)
[][releases]
[][crates]
[](https://github.com/marketplace/actions/git-iris)
[](https://www.rust-lang.org/)
[](https://ko-fi.com/hyperb1iss)
โจ _An intelligent agent that understands your code and crafts perfect Git artifacts_ โจ
๐ [Documentation](https://hyperb1iss.github.io/git-iris/) โข [Installation](#-installation) โข [Quick Start](#-quick-start) โข [Studio](#-iris-studio) โข [GitHub Action](#-github-action) โข [Contributing](#-contributing)
</div>
<div align="center">
<img src="https://raw.githubusercontent.com/hyperb1iss/git-iris/main/docs/images/git-iris-screenshot-1.png" alt="Commit Mode" width="24%">
<img src="https://raw.githubusercontent.com/hyperb1iss/git-iris/main/docs/images/git-iris-screenshot-2.png" alt="Code Review" width="24%">
<img src="https://raw.githubusercontent.com/hyperb1iss/git-iris/main/docs/images/git-iris-screenshot-3.png" alt="Changelog" width="24%">
<img src="https://raw.githubusercontent.com/hyperb1iss/git-iris/main/docs/images/git-iris-screenshot-4.png" alt="Chat with Iris" width="24%">
</div>
<p align="center"><em>Iris crafting commit messages, reviewing code, generating changelogs, and chatting about your changes</em></p>
## ๐ Overview
Git-Iris is powered by **Iris**, an intelligent agent that actively explores your codebase to understand what you're building. Rather than dumping context and hoping for the best, Iris uses tools to gather precisely the information she needsโanalyzing diffs, exploring file relationships, and building understanding iteratively.
### ๐ช What Iris Can Do
| โ๏ธ **Commit Messages** | Context-aware messages that capture the essence of your changes |
| ๐ฌ **Code Reviews** | Multi-dimensional analysis covering security, performance, and best practices |
| ๐ **Pull Requests** | Comprehensive PR descriptions for branches or individual commits |
| ๐๏ธ **Changelogs** | Keep a Changelog format with intelligent categorization |
| ๐ **Release Notes** | User-focused documentation highlighting impact and benefits |
| ๐ญ **Semantic Blame** | Ask "why does this code exist?" and get real answers |
### ๐ Iris Studio
**Studio** is a stunning terminal interface built with the **SilkCircuit Neon** design language that brings everything together. Press `/` to chat with Iris, ask her to refine your commit message or explain changesโshe can update content directly through intelligent tool calls!
## ๐ฆ Installation
### Quick Install (Recommended)
```bash
### Homebrew
```bash
brew tap hyperb1iss/tap
brew install git-iris
```
### Cargo
```bash
cargo install git-iris
```
### Docker
```bash
docker pull hyperb1iss/git-iris:latest
```
### From Releases
Download pre-built binaries from [GitHub Releases][releases] for Linux (x64/ARM64), macOS (ARM64), and Windows.
---
Then configure your AI provider:
```bash
git-iris config --provider anthropic --api-key YOUR_API_KEY
```
Supports **OpenAI**, **Anthropic**, and **Google**. See the [Configuration Guide](https://hyperb1iss.github.io/git-iris/getting-started/configuration) for details.
## ๐ Quick Start
### ๐ Launch Studio
```bash
git-iris
```
That's it. Studio auto-detects your context and suggests the right mode.
### ๐ซ Generate Commit Messages
```bash
git add .
git-iris gen # Interactive mode
git-iris gen --print # Just print the message
git-iris gen -a # Auto-commit with generated message
```
### ๐ฌ Review Code
```bash
git-iris review # Review staged changes
git-iris review --from main --to feature # Compare branches
git-iris review --commit abc1234 # Review specific commit
```
### ๐๏ธ Generate Changelogs & Release Notes
```bash
git-iris changelog --from v1.0.0 --update # Update CHANGELOG.md
git-iris release-notes --from v1.0.0 # Generate release notes
```
### ๐ Pull Request Descriptions
```bash
git-iris pr --from main --to feature-branch
```
## ๐ค GitHub Action
Automate release notes and changelogs in your CI/CD:
```yaml
- name: Generate release notes
uses: hyperb1iss/git-iris@v1
with:
from: v1.0.0
to: v1.1.0
api-key: ${{ secrets.OPENAI_API_KEY }}
output-file: RELEASE_NOTES.md
```
See the [GitHub Action documentation](https://hyperb1iss.github.io/git-iris/reference/cli#github-action) for all options.
## ๐ Documentation
Full documentation is available at **[hyperb1iss.github.io/git-iris](https://hyperb1iss.github.io/git-iris/)**
- ๐ [Getting Started](https://hyperb1iss.github.io/git-iris/getting-started/) โ Installation, configuration, quick start
- ๐ [Studio Guide](https://hyperb1iss.github.io/git-iris/studio/) โ Master the TUI, modes, and chat
- ๐ [CLI Reference](https://hyperb1iss.github.io/git-iris/reference/cli) โ All commands and options
- ๐๏ธ [Architecture](https://hyperb1iss.github.io/git-iris/architecture/) โ How Iris works under the hood
## ๐ค Contributing
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details.
## โ๏ธ License
Distributed under the Apache 2.0 License. See `LICENSE` for more information.
---
<div align="center">
๐ [Documentation](https://hyperb1iss.github.io/git-iris/) ยท ๐ [Report Bug](https://github.com/hyperb1iss/git-iris/issues) ยท ๐ก [Request Feature](https://github.com/hyperb1iss/git-iris/issues)
</div>
<div align="center">
Created by [Stefanie Jane ๐ ](https://github.com/hyperb1iss)
If you find Git-Iris useful, [buy me a Monster Ultra Violet](https://ko-fi.com/hyperb1iss)! โก๏ธ
</div>
[crates]: https://crates.io/crates/git-iris
[releases]: https://github.com/hyperb1iss/git-iris/releases