passage
Age-based password and secret manager (pass-compatible)
TLDR
SYNOPSIS
passage [options] command [args]
DESCRIPTION
passage is a fork of the classic `pass` (password-store) tool that stores secrets in age-encrypted files instead of GPG.Each secret lives in its own file under `~/.passage/store` (or `$PASSAGE_DIR`). The directory can be tracked with Git. passage supports insert, generate, edit, show, copy, list, and remove operations with a simple CLI.For decryption, age identities at `~/.passage/identities` (or `$PASSAGEIDENTITIESFILE`) are used. For encryption, the nearest `.age-recipients` file is preferred; if none is found, the identities file is used.There is no `init` command. Set up identities yourself (for example with `age-keygen`), then start inserting secrets. Moving or copying a secret always re-encrypts it.
PARAMETERS
Common subcommands and flags (password-store–compatible where applicable):-c, --clip
Copy the secret to the clipboard instead of printing.insert [-m | --multiline] name
Add or overwrite an entry. `-m` for multiline.generate name [length]
Generate and store a random password.edit name
Edit an entry in $EDITOR.ls, list
Show the store tree.rm, remove name
Delete an entry.show name (or just name)
Decrypt and print an entry.
ENVIRONMENT
PASSAGE_DIR
Password store location (default: `~/.passage/store`).PASSAGE_IDENTITIES_FILE
Identities file location (default: `~/.passage/identities`).PASSAGE_AGE
age binary to use (tested with `age` and `rage`).PASSAGE_RECIPIENTS_FILE / PASSAGE_RECIPIENTS
Override encryption recipients (`-R` / `-r` to age).Other password-store variables such as `PASSWORDSTORECLIPTIME` and `PASSWORDSTOREGENERATEDLENGTH` are respected.
INSTALL
CAVEATS
The `init` command is not available. Create `~/.passage/identities` with `age-keygen` (or a password-protected / hardware-backed identity) before first use. Optionally write public recipients to `~/.passage/store/.age-recipients`.The age identity (private key) must be available when decrypting. Unlike GPG, age keys are not usually on keyservers; you are responsible for backups. Clipboard support depends on platform tools (xclip, pbcopy, wl-copy, etc.).
SEE ALSO
pass(1), age(1), age-keygen(1)