cybsecrets CLI
Install the SecretOps CLI from npm and wire any codebase to the control plane.
- npm install -g @cyberiasoftware/cybsecrets
- Zero-install usage with npx cybsecrets
- Organization → Project → App → Environment resolution
- Local .cybsecrets.json stores scope, never values
- MIT licensed, semver released
- Works in local shells, CI runners and build images
What it looks like
@cyberiasoftware/cybsecrets is the public SecretOps CLI. Install it globally or run it with npx, and it resolves secrets through the same hierarchy the console uses — Organization → Project (group) → App → Environment.


One package, every environment
A single global install covers local development, CI runners and container build steps. npx keeps ephemeral environments clean by pulling the pinned version at run time.
Secrets live on apps
The CLI mirrors the console hierarchy exactly, so what an engineer sees in the browser is what the terminal resolves — no second mental model.
Config on disk, secrets in memory
.cybsecrets.json records only the selected scope. Values are fetched over the API at run time and injected into the process, never written to the repository.