pi-tui
Installation
SKILL.md
pi-tui — Terminal UI Framework
Minimal terminal UI framework (@mariozechner/pi-tui) with differential rendering, component architecture, and flicker-free output via synchronized rendering (CSI 2026).
Mental Model
- TUI manages a vertical Component tree — children render top-to-bottom
- Differential rendering — only changed lines are written to the terminal
- Single focus — one component receives keyboard input at a time
- Overlay compositing — modal components layered on top of base content with ANSI-aware splicing
- Width is law — every
render(width)call must return lines ≤widthor TUI crashes