💡 Summary
A reference skill providing documentation and decision trees for the OpenTUI framework to assist AI agents in developing Terminal User Interfaces.
🎯 Target Audience
🤖 AI Roast: “It's essentially a well-organized offline copy of the docs, so your AI can be just as confused by layout quirks as you are.”
The install script fetches and executes code from a remote URL, posing a supply chain risk. Mitigation: Review the install.sh script before execution, or host a verified copy internally.
OpenTUI Skill for OpenCode
OpenTUI platform reference docs. Covers the Core imperative API, React reconciler, Solid reconciler, layout system, components, keyboard handling, animations, and testing.
Install
Local installation (current project only):
curl -fsSL https://raw.githubusercontent.com/msmps/opentui-skill/main/install.sh | bash
Global installation (available in all projects):
curl -fsSL https://raw.githubusercontent.com/msmps/opentui-skill/main/install.sh | bash -s -- --global
Usage
Once installed, the skill appears in OpenCode's <available_skills> list. The agent loads it automatically when working on OpenTUI tasks.
Use the /opentui command to load the skill and get contextual guidance:
/opentui create a React TUI with keyboard navigation
Updating
To update to the latest version:
/opentui --update-skill
Structure
The installer adds both a skill and a command:
# Skill (reference docs)
skill/opentui/
├── SKILL.md # Main manifest + decision trees
└── references/ # Framework and concept subdirectories
├── core/ # Imperative API (5-file pattern)
├── react/ # React reconciler (5-file pattern)
├── solid/ # Solid reconciler (5-file pattern)
├── components/ # Component categories
├── layout/ # Yoga/Flexbox layout
├── keyboard/ # Input handling
├── animation/ # Timeline animations
└── testing/ # Test renderer + snapshots
# Command (slash command)
command/opentui.md # /opentui entrypoint
Decision Trees
The main SKILL.md contains decision trees for:
- Choosing a framework (Core, React, Solid)
- Displaying content (text, containers, code, diffs)
- Handling user input (inputs, keyboard, focus)
- Layout and positioning (flexbox, absolute, responsive)
- Animations (timeline, easing, transitions)
- Testing (snapshots, interaction, debugging)
- Troubleshooting (gotchas, common issues)
Topics Covered
Frameworks: Core (imperative), React (declarative), Solid (fine-grained reactivity)
Components: text, box, scrollbox, input, textarea, select, tab-select, ascii-font, code, line-number, diff
Cross-cutting: Layout (Yoga/Flexbox), Keyboard handling, Animations, Testing
Credits & Inspiration
This skill's structure and patterns are heavily inspired by:
-
cloudflare-skill by Dillon Mulroy — an excellent example of a platform skill, demonstrating decision trees, progressive disclosure, and the multi-file reference pattern.
-
Anatomy of an Excellent OpenCode Skill by JP Caparas — an insightful breakdown of what makes cloudflare-skill effective, covering context management, troubleshooting indexes, and intent-based routing.
License
MIT - see LICENSE
Pros
- Comprehensive coverage of OpenTUI concepts and APIs
- Clear decision trees for framework and component selection
- Well-structured, modular reference documentation
Cons
- Primarily passive documentation, lacks interactive examples
- Utility is limited to agents already working within the OpenCode/OpenTUI ecosystem
- No clear demonstration of unique agent capabilities beyond info retrieval
Related Skills
pytorch
S“It's the Swiss Army knife of deep learning, but good luck figuring out which of the 47 installation methods is the one that won't break your system.”
agno
S“It promises to be the Kubernetes for agents, but let's see if developers have the patience to learn yet another orchestration layer.”
nuxt-skills
S“It's essentially a well-organized cheat sheet that turns your AI assistant into a Nuxt framework parrot.”
Disclaimer: This content is sourced from GitHub open source projects for display and rating purposes only.
Copyright belongs to the original author msmps.
