Create and manage secure notes directly from your terminal. No accounts, no authentication — just simple, secure note sharing.
Install the CLI globally using your preferred package manager
npm install -g @enclosed/cliyarn global add @enclosed/clipnpm add -g @enclosed/cliCreate secure notes without signing up or logging in
Attach and share files securely alongside your notes
Set notes to auto-delete after reading or by timer
Configure to use your own Enclosed instance
Create a secure note from the command line
enclosed create "Hello, World!"Pipe file contents to create a note
cat file.txt | enclosed create --stdinAttach files to your note
enclosed create --file document.pdf "Check this out"Note deletes after being read
enclosed create --deleteAfterReading "Secret message"Add password protection
enclosed create --password "mypassword" "Secure note"Auto-delete after specified time
enclosed create --ttl 3600 "Expires in 1 hour"By default, the CLI uses enclosed.cc. Configure it to use twn.cx instead:
enclosed config set instance-url https://twn.cxView notes directly from the terminal:
enclosed view <note-url>enclosed view --password "mypassword" <note-url>Install the CLI and start creating secure notes from your terminal in seconds.
npm install -g @enclosed/cliView Full Docs