/install pi-tui
Pi TUI
Component-based architecture (TUI/Container/Box/Text/TruncatedText/Input/Editor/Markdown/Loader/CancellableLoader/SelectList/SettingsList/Spacer/Image), overlay system, IME support, autocomplete, Kitty keyboard protocol. Differential rendering TUI framework.
Install: npm install @earendil-works/pi-tui
Use Cases
Use when building terminal UIs, interactive CLI apps, TUI editors, terminal select lists/settings panels, terminal Markdown rendering, or inline terminal images.
Core Concepts
Component Interface — All components implement render(width): string[] (each line ≤ width), handleInput?(data), invalidate?(). Each line auto-appends SGR+OSC reset; styles do not carry across lines.
Focusable Interface — Components needing IME implement a focused: boolean property and insert CURSOR_MARKER before the cursor in render. Containers with Input/Editor children must propagate focus state (otherwise IME candidate window mispositions). Hardware cursor hidden by default; enable with PI_HARDWARE_CURSOR=1.
Differential Rendering — Three strategies: first render outputs all lines, width change clears and redraws, incremental only updates changed lines. CSI 2026 synchronized output prevents flicker.
Quick Start
import { TUI, Text, Editor, ProcessTerminal, matchesKey } from "@earendil-works/pi-tui";
const tui = new TUI(new ProcessTerminal());
tui.addChild(new Text("Welcome!"));
const editor = new Editor(tui, theme);
editor.onSubmit = (text) => tui.addChild(new Text(`> ${text}`));
tui.addChild(editor);
tui.setFocus(editor);
tui.addInputListener((data) => { if (matchesKey(data, 'ctrl+c')) { tui.stop(); process.exit(0); } });
tui.start();
// TUI API: addChild/removeChild/start/stop/requestRender/setFocus/onDebug
Progressive References
Load on demand, only when needed:
- Overlays/dialogs/menus →
references/overlays.md - Component API reference →
references/components.md - Autocomplete/key detection →
references/autocomplete.md
Gotchas
- render(width) line width: each line ≤ width, otherwise TUI throws
- Styles don't span lines: auto-reset at line end, reapply styles per line for multi-line styled text
- Container IME propagation: containers with Input/Editor must implement Focusable and propagate focus
- Ctrl+C: raw mode doesn't send SIGINT, must handle via
matchesKey(data, 'ctrl+c') - Overlay focus:
unfocus({ target: component })releases to specific component,unfocus({ target: null })clears focus
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install pi-tui - After installation, invoke the skill by name or use
/pi-tui - Provide required inputs per the skill's parameter spec and get structured output
What is Pi Tui?
Pi TUI — Terminal UI framework with differential rendering + synchronized output for flicker-free interactive CLIs. It is an AI Agent Skill for Claude Code / OpenClaw, with 41 downloads so far.
How do I install Pi Tui?
Run "/install pi-tui" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Pi Tui free?
Yes, Pi Tui is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Pi Tui support?
Pi Tui is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Pi Tui?
It is built and maintained by OpenLark (@openlark); the current version is v1.0.0.