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)
Navigate → read → commentIllustrative interface
Verification belongs before completion, not after it.