· Announcement

Introducing Pi-Go

pi-go is a terminal-based AI coding agent built on Google ADK Go. It ships as a single binary, runs multiple LLM providers side by side, keeps your filesystem safe behind a sandbox, and remembers what you have worked on across sessions.

Why another coding agent?

The browser-tab and IDE-plugin coding agents are powerful, but they pull you out of the terminal — where real work happens. pi-go is opinionated about staying there. It’s a TUI that speaks JSON-RPC to language servers, talks to whatever LLM you prefer, and executes tools inside a strict sandbox so you don’t have to trust it beyond what it needs to see.

What’s in the box

Get started in one command

# Linux and macOS
$ curl -fsSL https://raw.githubusercontent.com/dimetron/pi-go/main/scripts/install.sh | bash

# Windows PowerShell
PS> powershell -NoProfile -Command "iwr https://raw.githubusercontent.com/dimetron/pi-go/main/scripts/install.ps1 -UseBasicParsing | iex"

# Or with go install
$ go install github.com/dimetron/pi-go/cmd/pi@latest

# Run it
$ pi

What’s next

This is the first post and the project is very much in motion. Upcoming: deeper dives on the Memory Palace, the sandbox threat model, and how the subagent system dispatches work. Subscribe to the RSS feed or watch the repo on GitHub to follow along.

Try pi-go

Open source, MIT licensed, one binary away.