Downloads and checksums
Downloads and checksums
Section titled “Downloads and checksums”The latest eden-memory monorepo release is 0.3.76, released on 2026-08-07. Binaries are published as GitHub Release assets at yakovkhalinsky/eden-releases.
The monorepo ships three binaries:
eden-memory— the full CLI with MCP server, memory tools, sync, pairing, and the legacyrelay-serversubcommand.eden-relay— a dedicated, lightweight relay server with no MCP or memory subcommands.eden-team— a headless ATP supervisor that drives the Agentic Team Protocol.
Quick install
Section titled “Quick install”The recommended installer defaults to eden-memory. Pass a binary name to install eden-relay or eden-team instead:
# Default: install eden-memorycurl -fsSL https://0d3sa.com/eden-memory/install.sh | sh
# Install the dedicated relay binarycurl -fsSL https://0d3sa.com/eden-memory/install.sh | sh -s eden-relay
# Install the headless ATP supervisorcurl -fsSL https://0d3sa.com/eden-memory/install.sh | sh -s eden-teamThe installer places the binary at ~/.local/bin/<binary-name>.
eden-memory
Section titled “eden-memory”| Platform | Architecture | Filename | Size | SHA-256 | Download |
|---|---|---|---|---|---|
| linux | amd64 | eden-memory-linux-amd64 | 101.9 MB | e917da14becec12e32ce59d7a38cbee7873842abd48553fc4f736023b3057562 | download |
| linux | arm64 | eden-memory-linux-arm64 | 66.3 MB | 46e69374b0278e06dbc645eedbf3acec90c4fc575c255b48969e276a976c9162 | download |
| darwin | amd64 | eden-memory-darwin-amd64 | 63.3 MB | 8a05d12d390010f41b057277f000f4d37f1ecdbd1f35ad290a324ca4f5e4c5c5 | download |
| darwin | arm64 | eden-memory-darwin-arm64 | 63.1 MB | 8baf332c7ea3e0a5a8d06f250630dfd9fad51b0da3a3f144f2cc49c5fd7d5068 | download |
eden-relay
Section titled “eden-relay”| Platform | Architecture | Filename | Size | SHA-256 | Download |
|---|---|---|---|---|---|
| linux | amd64 | eden-relay-linux-amd64 | 10.1 MB | 320c1514d043bc06c72327eec96b517706e9b21b7d8d0e63af916f90f97b2fb0 | download |
| linux | arm64 | eden-relay-linux-arm64 | 9.8 MB | a2f2357a6de8329e24c64f5ea46304ffbf6be8fab039cef071cab749a5d0d39b | download |
| darwin | amd64 | eden-relay-darwin-amd64 | 10.3 MB | a5546f9c52316178a1c36d2501ad34bbdad9bb73c7847da49b5b624f17dface9 | download |
| darwin | arm64 | eden-relay-darwin-arm64 | 9.9 MB | 6ba8e179cc6f45e2eaedef9a9ff1824164989df748a98834ede8023227ea10bc | download |
eden-team
Section titled “eden-team”| Platform | Architecture | Filename | Size | SHA-256 | Download |
|---|---|---|---|---|---|
| linux | amd64 | eden-team-linux-amd64 | 2.9 MB | 6301761e3a59543b55a575f9d135e031461de6385ba51587b962b3e43d2b0722 | download |
| linux | arm64 | eden-team-linux-arm64 | 2.8 MB | 292bc90a1d28b00e1f74b1e6a6a2af2d79b8acf5a851a1a36619aa87ac1fca77 | download |
| darwin | amd64 | eden-team-darwin-amd64 | 2.9 MB | 06328d7701900df144d15efeba9faafe538172056e223f1012c169814504e0e7 | download |
| darwin | arm64 | eden-team-darwin-arm64 | 2.8 MB | 92846e6cbf68221f9670cf2971c110d401d657cf671f9ae27ec284e7dacfcfa0 | download |
Manual install
Section titled “Manual install”If you prefer to download and verify manually, replace BINARY with eden-memory, eden-relay, or eden-team and PLATFORM with your platform key from the tables above:
VERSION={downloads.version}BINARY=eden-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 eden-memory repository source tree:
make release # eden-memory for linux-amd64/arm64, darwin-amd64/arm64make release-relay # eden-relay for linux-amd64/arm64, darwin-amd64/arm64, windows-amd64make release-team # eden-team for linux-amd64/arm64, darwin-amd64/arm64make release-all # all of the aboveThis produces dist/eden-memory-<platform>, dist/eden-relay-<platform>, and dist/eden-team-<platform> for each supported platform.
Verify the binary
Section titled “Verify the binary”After installing:
eden-memory versioneden-memory healthFor eden-relay:
eden-relay --db /var/lib/eden-relay/relay.db --addr :8787 &curl http://localhost:8787/healthFor eden-team:
eden-team --helpeden-team --version