tuicr // code review tui
normal mode
Vim keybindings

Review withoutleaving home row.

A code review TUI with vim keybindings.

j / kgg:comment:approve
Illustrative review sessionlocal terminal
@@ harness/loop.ts
41const result = run(step)
42- if (result) return done()
43+ if (verify(result)) return done()
44return retry(step)
COMMENT
Verification belongs before completion, not after it.
Navigate → read → commentIllustrative interface