@clef-sh/cli
v0.1.9
Published
CLI for Clef — git-native secrets management
Readme
@clef-sh/cli
CLI for Clef — git-native secrets management built on Mozilla SOPS. Adds structure, visibility, and guardrails to encrypted secrets without servers, databases, or vendor lock-in.
Install
npm install -g @clef-sh/cliPrerequisites
Run clef doctor to verify your environment.
Quick start
# Initialise a new Clef repo
clef init --namespaces database,payments,auth --non-interactive
# Set and retrieve secrets
clef set database/staging DB_PASSWORD
clef get database/staging DB_HOST
# Compare environments
clef diff database dev staging
# Validate the repo
clef lint
# Run a command with injected secrets
clef exec payments/production -- ./deploy.sh
# Launch the local web UI
clef uiCommands
| Command | Description |
| -------------------- | ------------------------------------------------- |
| clef doctor | Check dependencies and configuration |
| clef init | Initialise a new Clef repo |
| clef update | Scaffold missing matrix cells |
| clef get | Retrieve a single decrypted value |
| clef set | Set a secret value |
| clef compare | Compare a stored secret with a value |
| clef delete | Remove a key from an encrypted file |
| clef diff | Compare secrets between two environments |
| clef lint | Full repo health check |
| clef rotate | Re-encrypt with a new recipient key |
| clef scan | Scan for plaintext secrets in the repo |
| clef import | Import secrets from .env, JSON, or YAML |
| clef export | Print secrets as shell export statements |
| clef recipients | Manage age recipients and access requests |
| clef hooks install | Install the pre-commit hook |
| clef exec | Run a command with injected secrets |
| clef service | Manage service identities (create, list, delete) |
| clef pack | Pack an encrypted artifact for a service identity |
| clef revoke | Revoke a packed artifact |
| clef drift | Detect key-set drift across environments |
| clef report | Generate a JSON posture report |
| clef install | Install a broker template from the registry |
| clef search | Search the broker registry |
| clef ui | Start the local web UI |
| clef merge-driver | Git merge driver for encrypted files |
Global options
clef --version # Print version
clef --help # Print help
clef <cmd> --help # Help for a specific command
clef --dir <path> <cmd> ... # Run against a different local directory
clef --plain <cmd> ... # Plain output without emoji/colorDocumentation
Full docs at docs.clef.sh.
License
MIT
