standup-digest.nika.yaml
Before ยท nika inspect
Static anatomy: the DAGโs wave groups (what runs in parallel), plus
three planning lines โ the parallelism width, the pinch points, and each
taskโs blast radius. Zero execution, zero tokens:
During ยท the live render
In an interactive terminal,nika run animates a storyboard: tasks
light up as their dependencies clear, in the wave order inspect
predicted. Piped (CI logs, tee), the same run prints one plain,
deterministic frame instead โ โฅ marks tasks that ran in parallel:
| Flag | Surface |
|---|---|
| (none, terminal) | Live animated storyboard, then waterfall + verdict card |
--no-progress | One plain final frame (the CI-stable surface ยท default when piped) |
--quiet | The final verdict line only โ โ standup-digest ยท 3 tasks ยท 0.4s ยท $0.000 |
--json | Pure NDJSON events on stdout, progress to stderr (the machine lane ยท see Traces) |
After ยท the waterfall and the verdict card
An interactive run ends with two frames. The waterfall shows where the wall-clock went โ overlapping bars are the parallelism you actually got. The verdict card compresses the run into one box: the wave shape (โโ โ โ โ two in parallel, then one), tasks, waves, retries,
duration, cost, model, and the typed outputs it produced:
trace show prints the final frames; trace replay plays the recorded
events through the same renderer that drew the original run. Replay
calls no model and runs no command โ it is a projection of what already
happened (Traces & replay).
Terminals & CI
The live surfaces are TTY-only by design. Piped orNO_COLOR output is
the sober register (plain per-line events โ what CI logs want). Two
render themes ship: unicode (default) and --ascii (every glyph has an
ASCII twin โ use it on terminals without good box-drawing fonts,
including older Windows setups; Windows Terminal renders the default
theme fine). --no-color, NO_COLOR, and CLICOLOR_FORCE follow the
standard resolution order.
Related
- Concepts ยท Traces: the NDJSON event stream behind every frame on this page.
- Guides ยท Resume: the same trace doubles as a
checkpoint โ
--resumeskips completed work with visible cache hits. - Reference ยท CLI: every render flag.