EveryframeDocs
Open Studio ↗
Mining/Install everycli

Install everycli

everycli is Everyframe's command-line tool for approved miners. The package is @everyframe/cli, version 0.1.0; the executable is everycli. It is not published to the npm registry — install it from the reviewed archive hosted by Everyframe, or from the source repository.

#From the release archive

bash
curl --fail --proto '=https' --tlsv1.2 -O https://subnet.everyframe.studio/downloads/everyframe-cli-0.1.0.tgz
curl --fail --proto '=https' --tlsv1.2 -O https://subnet.everyframe.studio/downloads/everyframe-cli-0.1.0.tgz.sha256
sha256sum -c everyframe-cli-0.1.0.tgz.sha256
npm install --global --ignore-scripts ./everyframe-cli-0.1.0.tgz
everycli --help

On macOS use shasum -a 256 -c everyframe-cli-0.1.0.tgz.sha256.

#From source

bash
cd everyframe-subnet/cli
npm ci --ignore-scripts
npm install --global --ignore-scripts .
everycli --help

#What is pinned inside

The CLI carries its trust anchors in code, so there is nothing to configure and nothing to get wrong:

  • Coordinator origin https://subnet.everyframe.studio
  • Coordinator Ed25519 verification key
  • Network testnet, netuid 566
  • Phala Cloud SDK 0.4.0, API version 2026-06-23

There is no --coordinator, --insecure, policy override or simulation flag. TLS overrides, API-origin overrides and SDK debug logging are rejected. Unknown flags fail closed.

#Check the install

bash
everycli --version
everycli miner --help

everycli miner doctor will report not ready (exit code 2) until you have run init with an invitation — that is expected. Continue with Deploy your miner.