Installation
How to install ody
Prerequisites
- Bun v1.3.8+ (required for building from source)
- At least one supported AI coding agent installed and on your
$PATH:
Install script (recommended)
The fastest way to install ody. The script auto-detects your OS and architecture, fetches the latest release binary, and places it on your system:
curl -fsSL https://raw.githubusercontent.com/8bittitan/ody/main/install.sh | shBy default the binary is installed to $HOME/.local/bin. To customize the install location, set ODY_INSTALL_DIR:
ODY_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/8bittitan/ody/main/install.sh | shDownload a release binary
Pre-built binaries are available on the GitHub Releases page. Download the binary for your platform:
| Binary | Platform |
|---|---|
ody-darwin-arm64 | macOS Apple Silicon |
ody-darwin-x64 | macOS Intel |
ody-linux-x64 | Linux x86_64 |
ody-linux-arm64 | Linux ARM64 |
After downloading, make it executable and move it to a directory on your $PATH:
chmod +x ody-darwin-arm64
mv ody-darwin-arm64 /usr/local/bin/odyBuild from source
Requires Bun v1.3.8+.
git clone https://github.com/8bittitan/ody.git
cd ody
bun install
bun run buildThe compiled binary is output to packages/cli/dist/ody. You can move it to a directory on your $PATH or run it directly:
./packages/cli/dist/ody --help