Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
msmps avatar

Opentui

  • 52.8k installs
  • 224 repo stars
  • Updated July 1, 2026
  • msmps/opentui-skill

opentui is an agent skill that generates correct, idiomatic OpenTUI code for terminal user interfaces using the core, React, or Solid reconciler.

About

opentui is a consolidated skill for building terminal user interfaces with OpenTUI, covering the core imperative API, the React reconciler, and the Solid reconciler. It uses decision trees to pick the right framework and component, then points to bundled per-framework references for API, configuration, patterns, and gotchas, plus cross-cutting guides for layout, keyboard input, animation, and testing. A developer uses it for any TUI task (dashboards, interactive CLIs, terminal apps) to write correct OpenTUI code instead of guessing APIs.

  • Covers OpenTUI core, React, and Solid reconcilers
  • Decision trees to pick framework and component
  • 26 bundled reference files across frameworks and concepts
  • Critical rules: create-tui, no process.exit(), nested text tags
  • Runs on Bun with Zig native builds

Opentui by the numbers

  • 52,841 all-time installs (skills.sh)
  • +1,142 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #14 of 560 CLI & Terminal skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

opentui capabilities & compatibility

Free skill; no API key required (needs the Bun runtime).

Capabilities
tui development · opentui code · terminal ui · reconciler selection
Use cases
frontend
Platforms
macOS · Linux
Pricing
Free
From the docs

What opentui says it does

Consolidated skill for building terminal user interfaces with OpenTUI.
SKILL.md
1. **Use `create-tui` for new projects.** See framework `REFERENCE.md` quick starts.
SKILL.md
OpenTUI runs on Bun and uses Zig for native builds.
SKILL.md
npx skills add https://github.com/msmps/opentui-skill --skill opentui

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs52.8k
repo stars224
Security audit3 / 3 scanners passed
Last updatedJuly 1, 2026
Repositorymsmps/opentui-skill

How do I write correct OpenTUI terminal-UI code and pick between the core, React, and Solid reconcilers?

Build terminal user interfaces with OpenTUI using the core, React, or Solid reconciler.

Who is it for?

Developers building terminal UIs, interactive CLIs, or TUI dashboards who want idiomatic OpenTUI code and framework-choice guidance.

Skip if: Web or GUI frontends and non-OpenTUI terminal libraries; it is specific to the OpenTUI framework on Bun.

When should I use this skill?

The user is doing any OpenTUI or TUI development task including components, layout, keyboard handling, animations, or testing.

What you get

Produces idiomatic OpenTUI code with the right reconciler and components, following the skill's critical rules and references.

  • OpenTUI terminal UI code

By the numbers

  • 26 bundled reference files
  • 3 frameworks covered (core, React, Solid)
  • 4 critical rules

Files

SKILL.mdMarkdownGitHub ↗

OpenTUI Platform Skill

Consolidated skill for building terminal user interfaces with OpenTUI. Use decision trees below to find the right framework and components, then load detailed references.

Critical Rules

Follow these rules in all OpenTUI code:

1. Use `create-tui` for new projects. See framework REFERENCE.md quick starts. 2. `create-tui` options must come before arguments. bunx create-tui -t react my-app works, bunx create-tui my-app -t react does NOT. 3. Never call `process.exit()` directly. Use renderer.destroy() (see core/gotchas.md). 4. Text styling requires nested tags in React/Solid. Use modifier elements, not props (see components/text-display.md).

How to Use This Skill

Reference File Structure

Framework references follow a 5-file pattern. Cross-cutting concepts are single-file guides.

Each framework in ./references/<framework>/ contains:

FilePurposeWhen to Read
REFERENCE.mdOverview, when to use, quick startAlways read first
api.mdRuntime API, components, hooksWriting code
configuration.mdSetup, tsconfig, bundlingConfiguring a project
patterns.mdCommon patterns, best practicesImplementation guidance
gotchas.mdPitfalls, limitations, debuggingTroubleshooting

Cross-cutting concepts in ./references/<concept>/ have REFERENCE.md as the entry point.

Reading Order

1. Start with REFERENCE.md for your chosen framework 2. Then read additional files relevant to your task:

  • Building components -> api.md + components/<category>.md
  • Setting up project -> configuration.md
  • Layout/positioning -> layout/REFERENCE.md
  • Keyboard/input handling -> keyboard/REFERENCE.md
  • Animations -> animation/REFERENCE.md
  • Troubleshooting -> gotchas.md + testing/REFERENCE.md

Example Paths

./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

Runtime Notes

OpenTUI runs on Bun and uses Zig for native builds. Read ./references/core/gotchas.md for runtime requirements and build guidance.

Quick Decision Trees

"Which framework should I use?"

Which 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)

"I need to display content"

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)
├─ Data table with borders/wrapping -> components/code-diff.md (TextTable)
├─ Code with syntax highlighting -> components/code-diff.md
├─ Diff viewer (unified/split) -> components/code-diff.md
├─ Line numbers with diagnostics -> components/code-diff.md
└─ Markdown content (streaming) -> components/code-diff.md (markdown)

"I need user input"

User 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.md

"I need layout/positioning"

Layout?
├─ 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.md

"I need animations"

Animations?
├─ Timeline-based animations -> animation/REFERENCE.md
├─ Easing functions -> animation/REFERENCE.md
├─ Property transitions -> animation/REFERENCE.md
└─ Looping animations -> animation/REFERENCE.md

"I need to handle input"

Input 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 & copy-on-select -> keyboard/REFERENCE.md (selection)
└─ Clipboard (OSC 52) -> keyboard/REFERENCE.md (clipboard)

"I need to test my TUI"

Testing?
├─ Snapshot testing -> testing/REFERENCE.md
├─ Interaction testing -> testing/REFERENCE.md
├─ Test renderer setup -> testing/REFERENCE.md
└─ Debugging tests -> testing/REFERENCE.md

"I need to debug/troubleshoot"

Troubleshooting?
├─ 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.md

Troubleshooting Index

  • Terminal cleanup, crashes -> core/gotchas.md
  • Text styling not applying -> components/text-display.md
  • Input focus/shortcuts -> keyboard/REFERENCE.md
  • Layout misalignment -> layout/REFERENCE.md
  • Flaky snapshots -> testing/REFERENCE.md

For component naming differences and text modifiers, see components/REFERENCE.md.

Product Index

Frameworks

FrameworkEntry FileDescription
Core./references/core/REFERENCE.mdImperative API, all primitives
React./references/react/REFERENCE.mdReact reconciler for declarative TUI
Solid./references/solid/REFERENCE.mdSolidJS reconciler for declarative TUI

Cross-Cutting Concepts

ConceptEntry FileDescription
Layout./references/layout/REFERENCE.mdYoga/Flexbox layout system
Components./references/components/REFERENCE.mdComponent reference by category
Keyboard./references/keyboard/REFERENCE.mdKeyboard input handling
Animation./references/animation/REFERENCE.mdTimeline-based animations
Testing./references/testing/REFERENCE.mdTest renderer and snapshots

Component Categories

CategoryEntry FileComponents
Text & Display./references/components/text-display.mdtext, ascii-font, styled text
Containers./references/components/containers.mdbox, scrollbox, borders
Inputs./references/components/inputs.mdinput, textarea, select, tab-select
Code & Diff./references/components/code-diff.mdcode, line-number, diff, markdown, text-table

Resources

Repository: https://github.com/anomalyco/opentui Core Docs: https://github.com/anomalyco/opentui/tree/main/packages/core/docs Examples: https://github.com/anomalyco/opentui/tree/main/packages/core/src/examples Awesome List: https://github.com/msmps/awesome-opentui

Related skills

Forks & variants (2)

Opentui has 2 known copies in the catalog totaling 78 installs. They canonicalize to this original listing.

FAQ

Which frameworks does the opentui skill cover?

Three: the OpenTUI core imperative API, the React reconciler, and the Solid reconciler, with decision trees to pick between them.

What runtime does OpenTUI need?

OpenTUI runs on Bun and uses Zig for native builds; new projects are scaffolded with create-tui.

Is Opentui safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

CLI & Terminalfrontenddocs

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.