Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add arlalala01/opentui-skill
Or install specific skill: npx add-skill https://github.com/arlalala01/opentui-skill/tree/main/skill/opentui
# Description
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.
# SKILL.md
name: opentui
description: 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.
metadata:
references: core, react, solid
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:
- Use
create-tuifor new projects. See frameworkREFERENCE.mdquick starts. create-tuioptions must come before arguments.bunx create-tui -t react my-appworks,bunx create-tui my-app -t reactdoes NOT.- Never call
process.exit()directly. Userenderer.destroy()(seecore/gotchas.md). - 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:
| File | Purpose | When to Read |
|---|---|---|
REFERENCE.md |
Overview, when to use, quick start | Always read first |
api.md |
Runtime API, components, hooks | Writing code |
configuration.md |
Setup, tsconfig, bundling | Configuring a project |
patterns.md |
Common patterns, best practices | Implementation guidance |
gotchas.md |
Pitfalls, limitations, debugging | Troubleshooting |
Cross-cutting concepts in ./references/<concept>/ have REFERENCE.md as the entry point.
Reading Order
- Start with
REFERENCE.mdfor your chosen framework - 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 - 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)
ββ Code with syntax highlighting -> components/code-diff.md
ββ Diff viewer (unified/split) -> components/code-diff.md
ββ Line numbers with diagnostics -> components/code-diff.md
"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 -> components/text-display.md
"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
| Framework | Entry File | Description |
|---|---|---|
| Core | ./references/core/REFERENCE.md |
Imperative API, all primitives |
| React | ./references/react/REFERENCE.md |
React reconciler for declarative TUI |
| Solid | ./references/solid/REFERENCE.md |
SolidJS reconciler for declarative TUI |
Cross-Cutting Concepts
| Concept | Entry File | Description |
|---|---|---|
| Layout | ./references/layout/REFERENCE.md |
Yoga/Flexbox layout system |
| Components | ./references/components/REFERENCE.md |
Component reference by category |
| Keyboard | ./references/keyboard/REFERENCE.md |
Keyboard input handling |
| Animation | ./references/animation/REFERENCE.md |
Timeline-based animations |
| Testing | ./references/testing/REFERENCE.md |
Test renderer and snapshots |
Component Categories
| Category | Entry File | Components |
|---|---|---|
| Text & Display | ./references/components/text-display.md |
text, ascii-font, styled text |
| Containers | ./references/components/containers.md |
box, scrollbox, borders |
| Inputs | ./references/components/inputs.md |
input, textarea, select, tab-select |
| Code & Diff | ./references/components/code-diff.md |
code, line-number, diff |
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
# README.md
π opentui-skill - Enhance Your Experience with OpenCode
π Getting Started
Welcome to opentui-skill! This application enhances your experience with OpenCode, making your workflow smoother and more effective. Follow these simple steps to get started.
π₯ Download & Install
To download the latest version of opentui-skill, visit the link below:
Download opentui-skill from Releases
π οΈ System Requirements
Before you begin, ensure your system meets the following requirements:
- Operating System: Windows 10 or later, Mac OS X 10.12 or later, or Linux
- RAM: 4 GB or more is recommended
- Disk Space: At least 100 MB of free space
- Internet Connection: Required for downloading and updating the application
π Features
opentui-skill offers a range of features to improve your OpenCode experience:
- User-Friendly Interface: Navigate easily with a simple and intuitive design.
- Customizable Settings: Adjust features to fit your needs easily.
- Fast Performance: Quick load times and efficient resource use.
- Frequent Updates: Regular improvements and new features based on user feedback.
π Updating
To keep your application up to date, periodically check our releases page:
Visit the releases page for updates
When a new version is available, download and install it following the steps outlined in the "Download & Install" section.
π» Running the Application
Once you have downloaded opentui-skill, follow these steps to run it:
- Locate the Downloaded File: Find the file you downloaded in your computerβs Downloads folder or the location you chose.
- Open the File: Double-click the file to begin the installation.
- Follow the Installer: Follow the prompts in the installation wizard. Accept the terms and choose your preferred settings.
- Start the Application: Once installed, you can find opentui-skill in your applications menu. Click to open it and start enhancing your OpenCode experience!
β Troubleshooting
If you encounter any issues while downloading or running the application, consider the following steps:
- Check System Requirements: Ensure your system meets the necessary requirements.
- Re-download the File: Sometimes files can become corrupted during the download. Try downloading again.
- Disable Security Software Temporarily: Some security programs might block installation. Consider disabling them temporarily during the installation.
- Consult Documentation: Check the FAQs or user guides available in our GitHub repository for more specific issues.
π Support
If you need help or have questions, feel free to reach out through the following channels:
- GitHub Issues: Report an issue here
- Email Support: [email protected]
π Conclusion
You are now ready to enjoy the benefits of opentui-skill with OpenCode. The user-friendly interface and customizable options will help you enhance your productivity. Download and start exploring today!
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.