Skip to content

Downloads and checksums

The latest 0d3sa release is 0.7.0, released on 2026-09-19. Binaries are published as GitHub Release assets at yakovkhalinsky/eden-releases.

Each release ships two binaries:

  • od3sa-memory — the full CLI with MCP server, memory tools, sync, and pairing.
  • od3sa-relay — a dedicated, lightweight relay server with no MCP or memory subcommands.

The recommended installer defaults to od3sa-memory. Pass a binary name to install od3sa-relay instead:

Terminal window
# Default: install od3sa-memory
curl -fsSL https://0d3sa.com/memory/install.sh | sh
# Install the dedicated relay binary
curl -fsSL https://0d3sa.com/memory/install.sh | sh -s od3sa-relay

The installer places the binary at ~/.local/bin/<binary-name>.

PlatformArchitectureFilenameSizeSHA-256Download
linuxamd64od3sa-memory-linux-amd64103.5 MB52703e17c2bc053c59dd5b6e21ff678fd5751a6b800407bc1549adfb048f4d0edownload
linuxarm64od3sa-memory-linux-arm6467.5 MB377999e466e0a933cf66697828bb3e35113ffc4d2f71fec3e51c2887dc8e02d6download
darwinamd64od3sa-memory-darwin-amd6464.8 MBdd7f2bffc1f1d87cd6f27362c11e0b066fd54fd9d7cc51c9b314c1d7031f95b4download
darwinarm64od3sa-memory-darwin-arm6464.5 MB87e7dcfb435e4e44628370912cb6ff1a06f7ca5dbf8db110a254b245c0bee3d4download
PlatformArchitectureFilenameSizeSHA-256Download
linuxamd64od3sa-relay-linux-amd6411.0 MB38e9843b52872bf7b1d549eb4d1ec377345aefce7af66779656f8096696a6738download
linuxarm64od3sa-relay-linux-arm6410.4 MB0b04740ca39a0af63236e4bdf75d9ddbff80e28ca2faf5787bebcd000fcc8793download
darwinamd64od3sa-relay-darwin-amd6411.2 MBf46584535bd73516a6d73649990f7659c85a9d79c2c1d8807ec8680642a70e97download
darwinarm64od3sa-relay-darwin-arm6410.7 MB61ba8c6ee8a25498ace39facef095b42337bfa88020c39b5dc3870c0f72d2d1cdownload

If you prefer to download and verify manually, replace BINARY with od3sa-memory or od3sa-relay and PLATFORM with your platform key from the tables above:

Terminal window
VERSION={downloads.version}
BINARY=od3sa-memory
PLATFORM=linux-amd64
FILENAME=${BINARY}-${PLATFORM}
wget https://github.com/yakovkhalinsky/eden-releases/releases/latest/download/${FILENAME}
wget https://github.com/yakovkhalinsky/eden-releases/releases/latest/download/${FILENAME}.sha256
sha256sum -c ${FILENAME}.sha256
mkdir -p ~/.local/bin
mv ${FILENAME} ~/.local/bin/${BINARY}
chmod +x ~/.local/bin/${BINARY}

From the 0d3sa monorepo. The two binaries are separate projects with their own Makefiles, so each is built independently and writes to its own dist/:

Terminal window
make -C apps/memory release # od3sa-memory for linux-amd64/arm64, darwin-amd64/arm64
make -C apps/relay release # od3sa-relay for linux-amd64/arm64, darwin-amd64/arm64

This produces apps/memory/dist/od3sa-memory-<platform> and apps/relay/dist/od3sa-relay-<platform> for each supported platform.

After installing:

Terminal window
od3sa-memory version
od3sa-memory health

For od3sa-relay:

Terminal window
od3sa-relay --db /var/lib/relay/relay.db --addr 127.0.0.1:8787 &
curl http://localhost:8787/health