BRO-010: the jab bro-pager omits status verb-token colour (mod/unk/… render uncoloured on a TTY, unlike be and the piped path)

jab status colours the status verb token (mod yellow, unk grey, adv blue, …) on the DIRECT path but NOT through the interactive pager, so on a real terminal the tokens come out uncoloured — diverging from native be status and from jab status --color | cat. Routing: jab status piped/--colorview/bro.js renderHunkLogtableHunk, which paints via the C THEME .color() sink (view/bro.js:565,571) — verified byte-identical to be (\e[33mmod\e[39m, \e[34madv\e[39m). But on a TTY, JAB-030 (core/loop.js:24-25) routes the hunk stream through the bro PAGER (views/bro/pager.js), a separate JS renderer (cellSGR over view/theme.js) that colours the date band but does not paint the per-row verb token. Net: the interactive pager is the one path that drops the verb colour. Surfaced during DIS-057's status-colour review (the new colours were invisible interactively) but pre-existing and independent of DIS-057 — the DIS-057 colour mapping itself is correct on the direct path. Scope: be/ JS pager. See Bro; method Issues.

Input

Context

Goals

Constraints

WIP

Design decisions

TODOs

Blockers and bummers

Outcome