Vault stores your API keys and credentials encrypted at rest, then hands them out only in exchange for a scoped, rotatable access key — so you never copy raw secrets between machines again.
$ simpli run --env prod ✓ exchanged access key for 14 secrets ✓ injected into environment $ node server.js
Encrypted storage, scoped access, and a CLI that just works — without standing up your own secrets infrastructure.
API keys, tokens and credentials in a single source of truth — encrypted at rest with AES-256-GCM, never in a shared doc or .env passed around Slack.
Hand machines and CI runners a single scoped key, not your raw secrets. Rotate or revoke it instantly — the underlying secrets never leave the vault.
Exchange one access key for an entire environment from the simpli CLI and inject the secrets into your shell or a subprocess. AWS Secrets Manager / Doppler style.
Share a single credential across environments. Rotate it in one place and every linked environment updates — no hunting down copies.
Group secrets into prod, staging and dev, then into projects. Everyone on the team works from the same structure instead of ad-hoc spreadsheets.
Every reveal, rotation and exchange is recorded in an append-only audit log. Know what was accessed, by whom, and when.
Spin up prod, staging or a per-developer environment from the dashboard.
Drop your API keys and secrets in — encrypted at rest the moment they land.
Generate a scoped, rotatable env access key. The raw key is shown once — only its hash is stored.
Hand the key to the simpli CLI and every secret lands in your shell, file, or process.
Exchange an environment access key for all of its secrets — AWS Secrets Manager / Doppler style — with no per-secret round-trip and no vendor lock-in. Pop them into your shell, write a .env, or run a command with them injected and nothing left on disk.
npm i -g @startsimpli/cli# every secret in the env, straight into your shell $ eval "$(simpli exchange creds --env prod)" # …or run a command with them injected, nothing on disk $ simpli run --env prod -- npm start
Create your vault, mint an access key, and pull your secrets from any machine in seconds.