Downloads and checksums
Downloads and checksums
Section titled “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.
Quick install
Section titled “Quick install”The recommended installer defaults to od3sa-memory. Pass a binary name to install od3sa-relay instead:
# Default: install od3sa-memorycurl -fsSL https://0d3sa.com/memory/install.sh | sh
# Install the dedicated relay binarycurl -fsSL https://0d3sa.com/memory/install.sh | sh -s od3sa-relayThe installer places the binary at ~/.local/bin/<binary-name>.
od3sa-memory
Section titled “od3sa-memory”| Platform | Architecture | Filename | Size | SHA-256 | Download |
|---|---|---|---|---|---|
| linux | amd64 | od3sa-memory-linux-amd64 | 103.5 MB | 52703e17c2bc053c59dd5b6e21ff678fd5751a6b800407bc1549adfb048f4d0e | download |
| linux | arm64 | od3sa-memory-linux-arm64 | 67.5 MB | 377999e466e0a933cf66697828bb3e35113ffc4d2f71fec3e51c2887dc8e02d6 | download |
| darwin | amd64 | od3sa-memory-darwin-amd64 | 64.8 MB | dd7f2bffc1f1d87cd6f27362c11e0b066fd54fd9d7cc51c9b314c1d7031f95b4 | download |
| darwin | arm64 | od3sa-memory-darwin-arm64 | 64.5 MB | 87e7dcfb435e4e44628370912cb6ff1a06f7ca5dbf8db110a254b245c0bee3d4 | download |
od3sa-relay
Section titled “od3sa-relay”| Platform | Architecture | Filename | Size | SHA-256 | Download |
|---|---|---|---|---|---|
| linux | amd64 | od3sa-relay-linux-amd64 | 11.0 MB | 38e9843b52872bf7b1d549eb4d1ec377345aefce7af66779656f8096696a6738 | download |
| linux | arm64 | od3sa-relay-linux-arm64 | 10.4 MB | 0b04740ca39a0af63236e4bdf75d9ddbff80e28ca2faf5787bebcd000fcc8793 | download |
| darwin | amd64 | od3sa-relay-darwin-amd64 | 11.2 MB | f46584535bd73516a6d73649990f7659c85a9d79c2c1d8807ec8680642a70e97 | download |
| darwin | arm64 | od3sa-relay-darwin-arm64 | 10.7 MB | 61ba8c6ee8a25498ace39facef095b42337bfa88020c39b5dc3870c0f72d2d1c | download |
Manual install
Section titled “Manual install”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:
VERSION={downloads.version}BINARY=od3sa-memoryPLATFORM=linux-amd64FILENAME=${BINARY}-${PLATFORM}
wget https://github.com/yakovkhalinsky/eden-releases/releases/latest/download/${FILENAME}wget https://github.com/yakovkhalinsky/eden-releases/releases/latest/download/${FILENAME}.sha256sha256sum -c ${FILENAME}.sha256
mkdir -p ~/.local/binmv ${FILENAME} ~/.local/bin/${BINARY}chmod +x ~/.local/bin/${BINARY}Release build targets
Section titled “Release build targets”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/:
make -C apps/memory release # od3sa-memory for linux-amd64/arm64, darwin-amd64/arm64make -C apps/relay release # od3sa-relay for linux-amd64/arm64, darwin-amd64/arm64This produces apps/memory/dist/od3sa-memory-<platform> and
apps/relay/dist/od3sa-relay-<platform> for each supported platform.
Verify the binary
Section titled “Verify the binary”After installing:
od3sa-memory versionod3sa-memory healthFor od3sa-relay:
od3sa-relay --db /var/lib/relay/relay.db --addr 127.0.0.1:8787 &curl http://localhost:8787/health