pi-tui
Installation
SKILL.md
pi-tui — Component-Based Terminal UI
Component-based TUI framework with differential rendering and synchronized output for flicker-free terminals.
Core Setup
import { TUI, ProcessTerminal } from "@mariozechner/pi-tui";
const tui = new TUI(new ProcessTerminal());
tui.addChild(component); // any Component
tui.start(); // starts rendering loop
tui.stop(); // stops and drains input