Skip to content

Installation

ichi is a single Go binary. You’ll need Go 1.25+ and git available on your PATH.

Terminal window
go install github.com/atterpac/ichi/cmd/ichi@latest

This drops the ichi binary into $(go env GOPATH)/bin. Make sure that directory is on your PATH:

Terminal window
export PATH="$PATH:$(go env GOPATH)/bin"
Terminal window
git clone https://github.com/atterpac/ichi
cd ichi
go build -o ichi ./cmd/ichi

From inside any Git repository:

Terminal window
ichi

Or point it at a repository elsewhere:

Terminal window
ichi -path /path/to/repo

To skip the splash screen on launch:

Terminal window
ichi -no-splash
FlagDefaultDescription
-path.Path to the Git repository to open
-no-splashfalseSkip the splash screen

The pull request views talk to GitHub. Authenticate with the gh CLI (gh auth login) so ichi can read your repository’s PRs.

Head to the Quick Start to make your first commit.