RVault is a local-first password manager written in Rust, with a terminal UI, a CLI, and a browser extension that talks to the local rvault binary through native messaging.
Current version: 1.4.2.
RVault keeps storage local. Passwords are encrypted before they are written to SQLite, browser integration goes through a local native host, and the extension does not store plaintext credentials.
- Install RVault
- Install the Browser Extension
- Quick Start
- Backup and Restore
- Encrypted Export and Import
- TUI Keybindings
- How RVault Works
- Build and Test From Source
- Release Checklist
- Current Boundaries
- License
Install the CLI from the v1.4.2 release assets:
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ata-sesli/rvault/releases/download/v1.4.2/rvault-cli-installer.sh | shOn Windows PowerShell:
powershell -ExecutionPolicy Bypass -c "irm https://github.com/ata-sesli/rvault/releases/download/v1.4.2/rvault-cli-installer.ps1 | iex"Confirm the install:
rvault --versionExpected version:
rvault-cli 1.4.2
Requirements:
- Rust toolchain with Cargo
- Bun, only needed for the browser extension
- Helium, Chrome, Chromium, or Firefox, only needed to run browser integration
Install the CLI from this repository:
git clone https://github.com/ata-sesli/rvault.git
cd rvault
cargo install --path crates/rvault-cli --force
rvault --versionRun the terminal UI:
rvaultRVault supports Helium, Google Chrome, Chromium, and Firefox through local native messaging. The browser starts the installed rvault binary when the extension sends a request; RVault does not run a server or background daemon.
- Install the
rvaultCLI. - Download
rvault-extension-<version>.zipfrom the matching GitHub release. - Extract it somewhere that will not move.
- Open
chrome://extensionsin the browser. - Enable Developer mode, choose Load unpacked, and select the extracted directory.
- Register the native messaging host for that browser:
rvault browser enable --browser helium
rvault browser enable --browser chrome
rvault browser enable --browser chromiumThe original command remains compatible and defaults to Helium:
rvault browser enableTo remove a registration, use the matching browser value:
rvault browser disable --browser chromeHelium registration is available on macOS. Chrome and Chromium registration is available on macOS, Linux, and Windows.
Releases produced after this browser-support change include a Mozilla-signed rvault-extension-firefox-<version>.xpi. Open the XPI in Firefox and approve the installation, then register the native host:
rvault browser enable --browser firefoxFirefox registration is available on macOS, Linux, and Windows. The extension uses the fixed add-on ID rvault@ata-sesli.github.io, which must match RVault's native host manifest.
For local development, build the Firefox target and load its manifest temporarily from about:debugging:
cd extension
bun install
bun run build:firefoxSelect extension/build/firefox-mv3-prod/manifest.json when Firefox asks for a temporary add-on file.
cd extension
bun install
bun run buildLoad extension/build/chrome-mv3-prod through the browser's extension page. Do not load the top-level extension/ directory.
If the extension says the native host is unavailable, disable and re-enable the same browser registration, then reload the extension:
rvault browser disable --browser firefox
rvault browser enable --browser firefoxIf the rvault binary moves after an update or reinstall, run the enable command again. The pinned Chromium extension ID is gnfmkmiklgghclejbbdmjgcldajahfhh.
Set up RVault once:
rvault setupUnlock the vault:
rvault unlockAdd a credential:
rvault add github alice:correct-horse-battery-stapleCopy a credential password to the clipboard:
rvault get github aliceGenerate a password and copy it to the clipboard:
rvault generate --length 20 --special-charactersLaunch the terminal UI:
rvaultLock the vault:
rvault lockBackups are full encrypted binary recovery bundles. A backup is for the owner of the vault, not for sharing selected entries.
Create a backup:
rvault backup create --out rvault.rvault-backupRestore a backup:
rvault backup restore rvault.rvault-backupSkip the interactive restore confirmation:
rvault backup restore rvault.rvault-backup --yesRestore replaces local RVault data after confirmation. Keep backup files somewhere you control.
Exports are encrypted binary .rvault-export files for selected-entry sharing with another RVault user.
The recipient gets their public RVault identity code:
rvault unlock
rvault identityThe sender exports one entry for that recipient:
rvault export --to rvault1-recipient-code --entry github alice --out github.rvault-exportThe sender can export multiple selected entries:
rvault export --to rvault1-recipient-code \
--selected github:alice \
--selected email:alice@example.com \
--out shared.rvault-exportThe recipient imports the file:
rvault unlock
rvault import shared.rvault-exportConflict shortcuts:
rvault import shared.rvault-export --overwrite-all
rvault import shared.rvault-export --skip-allOnly the recipient identity can decrypt the export.
| Key | Action |
|---|---|
Up / Down |
Move through entries |
Enter |
Copy the selected password to the clipboard |
a |
Add a new entry |
e |
Edit the selected entry |
d |
Delete the selected entry |
p |
Pin or unpin the selected entry |
i |
Copy this device's public identity code |
b |
Create a backup |
r |
Restore a backup |
x |
Export the selected entry |
m |
Import an encrypted export file |
S |
Open sort selection |
t |
Open theme selection |
Tab |
Switch to the password generator |
q / Esc |
Quit |
Shift+Q |
Lock and quit |
| Key | Action |
|---|---|
Left / Right |
Decrease or increase password length |
s |
Toggle special characters |
Enter |
Generate a password and copy it |
Tab |
Return to the main table |
q / Esc |
Quit |
| Key | Action |
|---|---|
Up / Down |
Move through options |
j / k |
Move through options in sort and theme selection |
Enter |
Confirm |
q / Esc |
Close the dialog |
Library users should prefer the typed rvault-core APIs: SecretKey, Ciphertext,
encrypt/decrypt, SessionKey::load, and EntryRepository. The retained Table clipboard
helpers and raw string crypto helpers are deprecated for the remainder of the 1.x line; existing
callers can migrate without changing the SQLite or session formats. See the
RVault Core 2.0 migration guide for replacements and rollout
order.
RVault is split into three Rust crates and one browser extension:
rvault-corehandles config, keystore management, encryption, sessions, binary envelopes, backup, identity, export/import, storage, and clipboard integration.rvault-clibuilds thervaultbinary, CLI commands, and native messaging host.rvault-tuiprovides the terminal UI.extensioncontains the Plasmo MV3 extension for Chromium-family browsers and Firefox.
At setup time, RVault stores a master-password hash in the config directory and creates a local keystore file encrypted with a key derived from the master password.
When the vault is unlocked, protected operations use the active session key instead of asking for the master password for every command.
Browser integration uses native messaging. Chromium-family browsers pass their extension origin to rvault; Firefox passes the fixed RVault add-on ID. rvault browser enable writes the browser-specific manifest or registry entry and does not start a background daemon.
Build Rust crates:
cargo buildRun Rust tests:
cargo test -p rvault-core
cargo test -p rvault-cli
cargo test -p rvault-tui
cargo checkBuild and test the extension:
cd extension
bun install
bun test
bun run build
bun run build:firefoxCreate a local extension ZIP:
cd extension/build/chrome-mv3-prod
zip -r ../../../rvault-extension-1.4.2.zip .The ZIP must contain manifest.json at the ZIP root.
For a release version <version>:
- Confirm versions match in
Cargo.toml,Cargo.lock, andextension/package.json. - Run Rust checks:
cargo test -p rvault-core
cargo test -p rvault-cli
cargo test -p rvault-tui
cargo check- Run extension checks:
cd extension
bun test
bun run build
bun run build:firefox-
Configure the
AMO_JWT_ISSUERandAMO_JWT_SECRETrepository secrets used to request an unlisted Mozilla signature for the Firefox XPI. -
Tag and push the release:
./release-rvault <version>The cargo-dist release workflow builds the CLI installers. The extension release workflow uploads rvault-extension-<version>.zip for Chromium-family browsers and the Mozilla-signed rvault-extension-firefox-<version>.xpi after the GitHub Release exists.
- The browser extension is distributed through GitHub Releases; it is not published in the Chrome Web Store or AMO.
- Helium native host registration is macOS-only.
- RVault does not provide hosted sync.
- Export/import is encrypted recipient sharing, not plaintext export.
- Backups are full recovery files and replace local RVault data on restore.
Dual-licensed under MIT or Apache-2.0.