npm-distributed installer for EverMe CLI. Detects your platform on install, downloads the matching pre-built binary from GitHub Releases, verifies its SHA-256 checksum, and exposes it as the evercli command.
npm install -g @everme/cli
evercli --help
# or, no install
npx @everme/cli --version@everme/cli is a thin Node-side installer + runner; the actual CLI is a pre-compiled binary downloaded from EverMind-AI/EverMe GitHub Releases on first install. On npm install:
- Detect platform / arch (darwin/linux/windows × amd64/arm64)
- Download the matching archive from
https://github.com/EverMind-AI/EverMe/releases/download/v<version>/evercli_<os>_<arch>.{tar.gz|zip} - Verify SHA-256 against the
sha256sums.txtshipped inside this npm package - Extract and place the binary under the package's
bin/directory - The
everclishim (scripts/run.js) execs that binary with your args
If postinstall was skipped (some npx flows, restricted CI), the installer runs lazily on first invocation.
The installer tries download sources in this order:
https://github.com/EverMind-AI/EverMe/releases/...(canonical)- The npm registry's binary mirror path (
<registry>/-/binary/everme-cli/...), if yournpm_config_registryis non-default.everme-clihere is only the binary mirror namespace. https://registry.npmmirror.com/-/binary/everme-cli/...(always tried as final fallback)
The first source to succeed wins. SHA-256 verification runs regardless of source.
Point the CLI at your own EverMe gateway:
export EVERCLI_API_BASE_URL=https://memory.acme-internal.com
evercli auth loginApache-2.0.