Installation
Installation
Option 1: Install CLI (recommended)
Pre-built binaries for Linux, macOS, and Windows:
curl -fsSL https://raw.githubusercontent.com/spawn08/chronos/main/install.sh | bash
Verify:
chronos version
See CLI Install for platform-specific details and manual download options.
Option 2: Go Module
Add Chronos as a library to your Go project:
go get github.com/spawn08/chronos
Requirements: Go 1.24+, C compiler (for SQLite via CGO).
Option 3: Build from Source
git clone https://github.com/spawn08/chronos.git
cd chronos
make build # outputs to bin/chronos
Or directly:
go build -o chronos ./cli/main.go
./chronos version
Verify
Run the quickstart example (no API keys needed):
go run ./examples/quickstart/
Next Steps
- Quickstart — Build your first agent
- Examples — Browse all runnable examples