.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/opentui-skill/opentui
home/skills/msmps/opentui-skill/opentui
msmps avatar

opentui

bymsmps· 1 skill

Installs

53k

Stars

224

Forks

9

Category

Productivity & Workflow

View on GitHub

TL;DR

OpenTUI skill for building terminal user interfaces with the Core, React, or Solid APIs. Use for any TUI task including components, layout, keyboard and keymap handling, animations, and testing.

How to install opentui?

msmps/opentui-skill/opentui
$npx -y skills add msmps/opentui-skill --skill opentui

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/msmps/opentui-skill" --skill "msmps/opentui-skill/opentui"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/msmps/opentui-skill" that are relevant to the current task. Run `npx skills add "https://github.com/msmps/opentui-skill"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# OpenTUI Platform Skill
2 
3Consolidated skill for building terminal user interfaces with OpenTUI. Use decision trees below to find the right framework and components, then load detailed references.
4 
5## Critical Rules
6 
7**Follow these rules in all OpenTUI code:**
8 
91. **Use `create-tui` for new projects.** See framework `REFERENCE.md` quick starts.
102. **`create-tui` options must come before arguments.** `bunx create-tui -t react my-app` works, `bunx create-tui my-app -t react` does NOT.
113. **Never call `process.exit()` directly.** Use `renderer.destroy()` (see `core/gotchas.md`).
124. **Text styling requires nested tags in React/Solid.** Use modifier elements, not props (see `components/text-display.md`).
13 
14## How to Use This Skill
15 
16### Reference File Structure
17 
18Framework references follow a 5-file pattern. Cross-cutting concepts are single-file guides.
19 
20Each framework in `./references/<framework>/` contains:
21 
22| File | Purpose | When to Read |
23|------|---------|--------------|
24| `REFERENCE.md` | Overview, when to use, quick start | **Always read first** |
25| `api.md` | Runtime API, components, hooks | Writing code |
26| `configuration.md` | Setup, tsconfig, bundling | Configuring a project |
27| `patterns.md` | Common patterns, best practices | Implementation guidance |
28| `gotchas.md` | Pitfalls, limitations, debugging | Troubleshooting |
29 
30Cross-cutting concepts in `./references/<concept>/` have `REFERENCE.md` as the entry point.
31 
32### Reading Order
33 
341. Start with `REFERENCE.md` for your chosen framework
352. Then read additional files relevant to your task:
36 - Building components -> `api.md` + `components/<category>.md`
37 - Setting up project -> `configuration.md`
38 - Layout/positioning -> `layout/REFERENCE.md`
39 - Keyboard/input handling -> `keyboard/REFERENCE.md`
40 - Layered keybindings/commands -> `keymap/REFERENCE.md`
41 - Animations -> `animation/REFERENCE.md`
42 - Troubleshooting -> `gotchas.md` + `testing/REFERENCE.md`
43 
44### Example Paths
45 
46```
47./references/react/REFERENCE.md # Start here for React
48./references/react/api.md # React components and hooks
49./references/solid/configuration.md # Solid project setup
50./references/components/inputs.md # Input, Textarea, Select docs
51./references/core/gotchas.md # Core debugging tips
52```
53 
54### Runtime Notes
55 
56OpenTUI runs on Bun and uses Zig for native builds. Read `./references/core/gotchas.md` for runtime requirements and build guidance.
57 
58## Quick Decision Trees
59 
60### "Which framework should I use?"
61 
62```
63Which framework?
64├─ I want full control, maximum performance, no framework overhead
65│ └─ core/ (imperative API)
66├─ I know React, want familiar component patterns
67│ └─ react/ (React reconciler)
68├─ I want fine-grained reactivity, optimal re-renders
69│ └─ solid/ (Solid reconciler)
70└─ I'm building a library/framework on top of OpenTUI
71 └─ core/ (imperative API)
72```
73 
74### "I need to display content"
75 
76```
77Display content?
78├─ Plain or styled text -> components/text-display.md
79├─ Container with borders/background -> components/containers.md
80├─ Scrollable content area -> components/containers.md (scrollbox)
81├─ Standalone scrollbar -> components/containers.md (scrollbar)
82├─ ASCII art banner/title -> components/text-display.md (ascii-font)
83├─ QR code -> components/text-display.md (qr-code, @opentui/qrcode)
84├─ Data table with borders/wrapping -> components/code-diff.md (TextTable)
85├─ Code with syntax highlighting -> components/code-diff.md
86├─ Diff viewer (unified/split, hunk nav) -> components/code-diff.md
87├─ Line numbers with diagnostics -> components/code-diff.md
88└─ Markdown content (streaming) -> components/code-diff.md (markdown)
89```
90 
91### "I need user input"
92 
93```
94User input?
95├─ Single-line text field -> components/inputs.md (input)
96├─ Multi-line text editor -> components/inputs.md (textarea)
97├─ Select from a list (vertical) -> components/inputs.md (select)
98├─ Tab-based selection (horizontal) -> components/inputs.md (tab-select)
99├─ Value slider -> components/inputs.md (slider)
100├─ Declarative/layered keybindings -> keymap/REFERENCE.md (@opentui/keymap)
101└─ Custom keyboard shortcuts -> keyboard/REFERENCE.md
102```
103 
104### "I need layout/positioning"
105 
106```
107Layout?
108├─ Flexbox-style layouts (row, column, wrap) -> layout/REFERENCE.md
109├─ Absolute positioning -> layout/patterns.md
110├─ Responsive to terminal size -> layout/patterns.md
111├─ Centering content -> layout/patterns.md
112└─ Complex nested layouts -> layout/patterns.md
113```
114 
115### "I need animations"
116 
117```
118Animations?
119├─ Timeline-based animations -> animation/REFERENCE.md
120├─ Easing functions -> animation/REFERENCE.md
121├─ Property transitions -> animation/REFERENCE.md
122└─ Looping animations -> animation/REFERENCE.md
123```
124 
125### "I need to handle input"
126 
127```
128Input handling?
129├─ Keyboard events (keypress, release) -> keyboard/REFERENCE.md
130├─ Layered bindings, commands, leader keys -> keymap/REFERENCE.md
131├─ Focus management -> keyboard/REFERENCE.md
132├─ Paste events -> keyboard/REFERENCE.md
133├─ Mouse events -> components/containers.md
134├─ Text selection & copy-on-select -> keyboard/REFERENCE.md (selection)
135└─ Clipboard (OSC 52) -> keyboard/REFERENCE.md (clipboard)
136```
137 
138### "I need to test my TUI"
139 
140```
141Testing?
142├─ Snapshot testing -> testing/REFERENCE.md
143├─ Interaction testing -> testing/REFERENCE.md
144├─ Test renderer setup -> testing/REFERENCE.md
145└─ Debugging tests -> testing/REFERENCE.md
146```
147 
148### "I need platform capabilities (audio, notifications, SSH)"
149 
150```
151Platform capability?
152├─ Play sound / native audio -> core/api.md (Audio)
153├─ Desktop notifications (OSC 9/777/99) -> core/api.md (triggerNotification)
154├─ Custom stdin/stdout (PTY, xterm.js) -> core/api.md (createCliRenderer)
155└─ Serve a TUI over SSH -> core/REFERENCE.md (@opentui/ssh)
156```
157 
158### "I need to debug/troubleshoot"
159 
160```
161Troubleshooting?
162├─ Runtime errors, crashes -> <framework>/gotchas.md
163├─ Layout issues -> layout/REFERENCE.md + layout/patterns.md
164├─ Input/focus issues -> keyboard/REFERENCE.md
165└─ Repro + regression tests -> testing/REFERENCE.md
166```
167 
168### Troubleshooting Index
169 
170- Terminal cleanup, crashes -> `core/gotchas.md`
171- Text styling not applying -> `components/text-display.md`
172- Input focus/shortcuts -> `keyboard/REFERENCE.md`
173- Layout misalignment -> `layout/REFERENCE.md`
174- Flaky snapshots -> `testing/REFERENCE.md`
175 
176For component naming differences and text modifiers, see `components/REFERENCE.md`.
177 
178## Product Index
179 
180### Frameworks
181| Framework | Entry File | Description |
182|-----------|------------|-------------|
183| Core | `./references/core/REFERENCE.md` | Imperative API, all primitives |
184| React | `./references/react/REFERENCE.md` | React reconciler for declarative TUI |
185| Solid | `./references/solid/REFERENCE.md` | SolidJS reconciler for declarative TUI |
186 
187### Cross-Cutting Concepts
188| Concept | Entry File | Description |
189|---------|------------|-------------|
190| Layout | `./references/layout/REFERENCE.md` | Yoga/Flexbox layout system |
191| Components | `./references/components/REFERENCE.md` | Component reference by category |
192| Keyboard | `./references/keyboard/REFERENCE.md` | Low-level keyboard input handling |
193| Keymap | `./references/keymap/REFERENCE.md` | Declarative layered keybindings (`@opentui/keymap`) |
194| Animation | `./references/animation/REFERENCE.md` | Timeline-based animations |
195| Testing | `./references/testing/REFERENCE.md` | Test renderer and snapshots |
196 
197### Component Categories
198| Category | Entry File | Components |
199|----------|------------|------------|
200| Text & Display | `./references/components/text-display.md` | text, ascii-font, styled text, qr-code |
201| Containers | `./references/components/containers.md` | box, scrollbox, scrollbar, borders |
202| Inputs | `./references/components/inputs.md` | input, textarea, select, tab-select, slider |
203| Code & Diff | `./references/components/code-diff.md` | code, line-number, diff, markdown, text-table |
204 
205### Additional Packages
206| Package | Description | Docs |
207|---------|-------------|------|
208| `@opentui/keymap` | Layered keybinding/command engine (Bun or Node, no FFI) | `./references/keymap/REFERENCE.md` |
209| `@opentui/qrcode` | QR code component | `./references/components/text-display.md` |
210| `@opentui/ssh` | Serve a TUI over SSH | `./references/core/REFERENCE.md` |
211| `@opentui/three` | Three.js WebGPU renderer (formerly `core/src/3d`) | upstream `packages/three` |
212| `@opentui/examples` | Runnable examples (formerly `core/src/examples`) | upstream `packages/examples` |
213 
214Core also ships a native **Audio** engine and OSC desktop **notifications** — see `./references/core/api.md`.
215 
216## Resources
217 
218**Repository**: https://github.com/anomalyco/opentui
219**Core Docs**: https://github.com/anomalyco/opentui/tree/main/packages/core/docs
220**Examples**: https://github.com/anomalyco/opentui/tree/main/packages/examples/src
221**Awesome List**: https://github.com/msmps/awesome-opentui

Security

Passed

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykpass
  • Runlayerpass
  • ZeroLeakspass

Preview

msmps/opentui-skillmsmps/opentui-skill

$ npx -y skills add msmps/opentui-skill --skill opentui

▸ installing to .claude/skills…

✓ opentui ready

Repomsmps/opentui-skill
TypeSkills
CategoryProductivity & Workflow
ForDeveloper
UpdatedJul 2026
License—
First seenJul 28, 2026

Tags

Skill

Related

6 picks
Type
  1. juliusbrussee avatarcavemanUltra-compressed communication mode. Cuts output tokens 65% (measured) by speaking like caveman while keeping full technical accuracy.SkillsJul 2026391k93k
  2. larksuite avatarlark-im飞书即时通讯:收发消息和管理群聊。发送和回复消息、搜索聊天记录、管理群聊成员、上传下载图片和文件(支持大文件分片下载)、管理表情回复、发送应用内/短信/电话加急、发送和处理交互卡片(Interactive…SkillsJul 2026390k16k
  3. larksuite avatarlark-calendar飞书日历:管理日历日程和会议室。查看/搜索日程、创建/更新日程、管理参会人、查询忙闲和推荐时段、预定会议室。当用户需要查看日程安排、创建/修改会议、查询/预定会议室时使用。不负责:查询过去的视频会议记录(走 lark-vc)、待办任务(走 lark-task)。SkillsJul 2026388k16k
  4. larksuite avatarlark-contact飞书 / Lark 通讯录:按姓名 / 邮箱解析成 open_id,或按 open_id 反查姓名 / 部门 / 邮箱 / 联系方式 / 个人状态 / 签名。当用户提到某人姓名要下一步发消息 / 排日程,或拿到 open_id 想查具体信息时使用。不负责部门树遍历、按部门列员工、组织架构图,这类需求走原生…SkillsJul 2026387k16k
  5. larksuite avatarlark-workflow-meeting-summary会议纪要整理工作流:汇总指定时间范围内的会议纪要并生成结构化报告。当用户需要整理会议纪要、生成会议周报、回顾一段时间内的会议内容时使用。SkillsJul 2026386k16k
  6. larksuite avatarlark-workflow-standup-report日程待办摘要:编排 calendar +agenda 和 task +get-my-tasks,生成指定日期的日程与未完成任务摘要。适用于了解今天/明天/本周的安排。SkillsJul 2026386k16k