The Enno CLI has moved out of this SDK repository. The standalone coding-agent CLI is now Godo:
../godo-coding-agent
Install Godo locally from that repository:
cd ../godo-coding-agent
go install ./cmd/godoCommon commands:
godo
godo run "Analyze this repository"
godo --config /path/to/config.yaml
godo --workdir .Godo owns CLI behavior including YAML config, TUI, history, project instruction loading, coding-agent prompt assembly, and app-owned default paths. Enno remains the SDK dependency used by Godo through public packages:
github.com/dean2021/ennogithub.com/dean2021/enno/sdkgithub.com/dean2021/enno/provider/openaigithub.com/dean2021/enno/provider/anthropic
Former Enno CLI paths moved to Godo-owned paths:
| Old path | New path |
|---|---|
~/.enno/config.yaml |
~/.godo/config.yaml |
~/.enno/history.jsonl |
~/.godo/history.jsonl |
~/.enno/skills |
~/.godo/skills |
~/.enno/tasks/<session_id>/ |
~/.godo/tasks/<session_id>/ |
~/.enno/transcripts |
~/.godo/transcripts |
No automatic migration is performed. Copy any desired files manually and adjust
paths in config.yaml.