Show every unlocked TUI value and a live clipboard cleanup countdown #67
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Goal
Make the terminal UI immediately useful after authentication: every field value, including passwords and other sensitive values, is visible on unlocked entries; selection and status chrome remain high-contrast; and clipboard cleanup has a truthful live countdown.
Observed behavior
The native TUI still renders the password as
••••••••after the entry has been authenticated and opened, even though other values such as URL,autotype_enabled, andiconare visible. Requiring another reveal step defeats the primary use case of opening an entry to read its password. The selected entry and parts of the status chrome also still combine faint foreground colors with a light selection background. Afterycopies a field, the status reports the configured 45-second cleanup delay once, but it does not count down, so the user cannot tell when the clipboard will actually be cleared. These failures are reproduced in the attached report screenshot against commit7c64be3.Required behavior
crates/storage; the TUI consumes the typedEntryDocumentand must not reparse labels or infer field policy from display strings. Storage sensitivity metadata may still govern explicit output operations, but it must not mask an already authenticated TUI entry view.NativeClipboardManagercleanup lifecycle must use the same presentation instance/deadline.Safety and boundaries
pass,gpg,git, shells, or helper processes.unsafeRust and preserve thecrates/storageownership boundary.Tests and verification
cargo fmt --all -- --check,RUSTFLAGS="-D warnings" cargo check --workspace --all-targets,cargo clippy --workspace --all-targets -- -D warnings, andcargo test --workspace.Acceptance criteria
Implemented and verified in commit
75d4ead.What changed:
Review:
Verification:
All gates passed.