The edge CLI lets you manage all Simplifyd Cloud resources from your terminal.
The edge CLI is the command-line interface for Simplifyd Cloud. It mirrors every operation available in the web dashboard and is designed for both interactive development and automated CI/CD pipelines.
Download the latest Edge CLI executable file here. Make sure to choose the version that applies to your system architecture.
Extract the zip archive.
Copy the executable file edge.exe preferably to a folder in your system's $PATH variable. This ensures you can simply run edge.exe in terminal from any directory. If you don't copy the executable to a folder or directory that's in your system's $PATH variable, then remember to always use the full path to the executable whenever you run it, for example: c:\path\to\cli\edge.exe assuming the executable was copied to the c:\path\to\cli directory.
For non-interactive environments (CI/CD, scripts), use a token instead:
Priority
Source
How to set
1 (highest)
--token flag
edge --token <jwt> workspace list
2
CLOUD_TOKEN env var
export CLOUD_TOKEN=<jwt>
3
~/.simplifyd/config.json
Set by edge auth login
The CLI picks the first token it finds in this order. This lets you override the stored token on a per-command basis without touching your config file.