Amulet is a hardware-bound secret manager designed for solo developers and AI-assisted workflows. No more .env files. No more accidental commits. Structurally secure.
Install the CLI tool via your favorite package manager for your OS.
brew tap tsukasa-art/amulet && brew install amuletSecurely encrypt your secret and bind it to your machine identifier.
echo -n "secret" | amulet seal OPENAI_KEYUnseal your secrets in your code via the SDK or CLI. No traces on disk.
amulet unseal OPENAI_KEYSecrets are encrypted and bound to your OS machine identifier. They only work on the machine they were sealed on.
By reading from stdin, it structurally prevents AI coding assistants from seeing your secret values in command arguments.
No server dependencies. Works fully locally. Ensures maximum privacy and offline availability for your workflow.