Loading...
Loading...
Comprehensive OpenTUI skill for building terminal user interfaces. Covers the core imperative API, React reconciler, and Solid reconciler. Use for any TUI development task including components, layout, keyboard handling, animations, and testing.
npx skill4agent add msmps/opentui-skill opentuicreate-tuiREFERENCE.mdcreate-tuibunx create-tui -t react my-appbunx create-tui my-app -t reactprocess.exit()renderer.destroy()core/gotchas.mdcomponents/text-display.md./references/<framework>/| File | Purpose | When to Read |
|---|---|---|
| Overview, when to use, quick start | Always read first |
| Runtime API, components, hooks | Writing code |
| Setup, tsconfig, bundling | Configuring a project |
| Common patterns, best practices | Implementation guidance |
| Pitfalls, limitations, debugging | Troubleshooting |
./references/<concept>/REFERENCE.mdREFERENCE.mdapi.mdcomponents/<category>.mdconfiguration.mdlayout/REFERENCE.mdgotchas.mdtesting/REFERENCE.md./references/react/REFERENCE.md # Start here for React
./references/react/api.md # React components and hooks
./references/solid/configuration.md # Solid project setup
./references/components/inputs.md # Input, Textarea, Select docs
./references/core/gotchas.md # Core debugging tips./references/core/gotchas.mdWhich framework?
├─ I want full control, maximum performance, no framework overhead
│ └─ core/ (imperative API)
├─ I know React, want familiar component patterns
│ └─ react/ (React reconciler)
├─ I want fine-grained reactivity, optimal re-renders
│ └─ solid/ (Solid reconciler)
└─ I'm building a library/framework on top of OpenTUI
└─ core/ (imperative API)Display content?
├─ Plain or styled text -> components/text-display.md
├─ Container with borders/background -> components/containers.md
├─ Scrollable content area -> components/containers.md (scrollbox)
├─ ASCII art banner/title -> components/text-display.md (ascii-font)
├─ Code with syntax highlighting -> components/code-diff.md
├─ Diff viewer (unified/split) -> components/code-diff.md
└─ Line numbers with diagnostics -> components/code-diff.mdUser input?
├─ Single-line text field -> components/inputs.md (input)
├─ Multi-line text editor -> components/inputs.md (textarea)
├─ Select from a list (vertical) -> components/inputs.md (select)
├─ Tab-based selection (horizontal) -> components/inputs.md (tab-select)
└─ Custom keyboard shortcuts -> keyboard/REFERENCE.mdLayout?
├─ Flexbox-style layouts (row, column, wrap) -> layout/REFERENCE.md
├─ Absolute positioning -> layout/patterns.md
├─ Responsive to terminal size -> layout/patterns.md
├─ Centering content -> layout/patterns.md
└─ Complex nested layouts -> layout/patterns.mdAnimations?
├─ Timeline-based animations -> animation/REFERENCE.md
├─ Easing functions -> animation/REFERENCE.md
├─ Property transitions -> animation/REFERENCE.md
└─ Looping animations -> animation/REFERENCE.mdInput handling?
├─ Keyboard events (keypress, release) -> keyboard/REFERENCE.md
├─ Focus management -> keyboard/REFERENCE.md
├─ Paste events -> keyboard/REFERENCE.md
├─ Mouse events -> components/containers.md
└─ Text selection -> components/text-display.mdTesting?
├─ Snapshot testing -> testing/REFERENCE.md
├─ Interaction testing -> testing/REFERENCE.md
├─ Test renderer setup -> testing/REFERENCE.md
└─ Debugging tests -> testing/REFERENCE.mdTroubleshooting?
├─ Runtime errors, crashes -> <framework>/gotchas.md
├─ Layout issues -> layout/REFERENCE.md + layout/patterns.md
├─ Input/focus issues -> keyboard/REFERENCE.md
└─ Repro + regression tests -> testing/REFERENCE.mdcore/gotchas.mdcomponents/text-display.mdkeyboard/REFERENCE.mdlayout/REFERENCE.mdtesting/REFERENCE.mdcomponents/REFERENCE.md| Framework | Entry File | Description |
|---|---|---|
| Core | | Imperative API, all primitives |
| React | | React reconciler for declarative TUI |
| Solid | | SolidJS reconciler for declarative TUI |
| Concept | Entry File | Description |
|---|---|---|
| Layout | | Yoga/Flexbox layout system |
| Components | | Component reference by category |
| Keyboard | | Keyboard input handling |
| Animation | | Timeline-based animations |
| Testing | | Test renderer and snapshots |
| Category | Entry File | Components |
|---|---|---|
| Text & Display | | text, ascii-font, styled text |
| Containers | | box, scrollbox, borders |
| Inputs | | input, textarea, select, tab-select |
| Code & Diff | | code, line-number, diff |