fancy-tui

@particle-academy/fancy-tui

One component vocabulary, browser and terminal. Browse the same layouts, agent workflows, and Human+ patterns as semantic HTML or a real ANSI console.

TypeScriptTerminal UIMCP ready
Quick startexamples/quick-start.tsx
Start here

Quick start

Compose an Ink app with Fancy spacing, theme, and stable surface handles.

HTML preview
Deploy agent
connected
RUN

Ready for instructions.

Tab focus Enter submit Alt+Enter newline
React / Ink
import { render } from "ink";
import { FancyTuiProvider, Header, Panel, Text } from "@particle-academy/fancy-tui";

render(
  <FancyTuiProvider>
    <Header title="Deploy agent" status="connected" />
    <Panel title="Run"><Text>Ready for instructions.</Text></Panel>
  </FancyTuiProvider>
);