GUIDEGuide

Browse Vault in the TUI

movitera opens a full-screen interface for browsing teams and credentials without rendering secret values in the terminal.

Open the interface

bash
$ movitera
# opens the interactive UI on a TTY terminal

$ movitera tui
# does the same thing explicitly

In CI, pipes, or any session without a TTY, movitera prints help instead of opening the interface. Scripts do not block waiting for input.

Use the keyboard

KeyAction
↑ / ↓Move between teams or credential rows.
/Focus search and filter the current team's credentials.
tFocus the teams list.
uSet the selected team as default.
EnterOpen the action menu for the selected credential.
rRefresh teams and credentials.
qQuit the TUI.

Actions by credential type

  • ENV_BUNDLE: copy dotenv to the clipboard or write a file with mode 0600.
  • Credentials with OTPAUTH_URI: generate a TOTP code with a countdown.
  • Other credentials: browse metadata without printing secret values.

Values do not appear on screen

The TUI shows names, kinds, tags, and scopes. Secret content only goes to the clipboard, a 0600 file, or the process you run with movitera run.

Next