agentsclimarketplace

Building glamorous tuis

Skill nikships/skills-registry/.agents/skills/building-glamorous-tuis

Your personal GitHub registry for AI Agent Skills. One repo. EVERY agent. EVERY device. Loaded on demand — Zero startup bloat.

Install
npx -y skills add nikships/skills-registry --skill building-glamorous-tuis

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 11 stars11 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Build terminal UIs with Charmbracelet (Bubble Tea, Lip Gloss, Gum). Use when: Go TUI, shell prompts/spinners, "make CLI prettier", adaptive layouts, async rendering, focus state machines, sparklines, heatmaps, kanban boards, SSH apps.

SKILL.md

13.4 KB, as published. Nobody here has run it

Building Glamorous TUIs with Charmbracelet

Quick Router — Start Here

I need to...UseReference
Add prompts/spinners to a shell scriptGum (no Go)Shell Scripts
Build a Go TUIBubble Tea + Lip GlossGo TUI
Build a production-grade Go TUIAbove + elite patternsProduction Architecture
Serve a TUI over SSHWish + Bubble TeaInfrastructure
Record a terminal demoVHSShell Scripts
Find a Bubbles componentlist, table, viewport, spinner, progress...Component Catalog
Get a copy-paste patternLayouts, forms, animation, testingQuick Reference / Advanced Patterns

Decision Guide

Is it a shell script?
├─ Yes → Use Gum
│        Need recording? → VHS
│        Need AI? → Mods
│
└─ No (Go application)
   │
   ├─ Just styled output? → Lip Gloss only
   ├─ Simple prompts/forms? → Huh standalone
   ├─ Full interactive TUI? → Bubble Tea + Bubbles + Lip Gloss
   │  │
   │  └─ Production-grade?  → Also add elite patterns:
   │     (multi-view, data-    two-phase async, immutable snapshots,
   │      dense, must be       adaptive layout, focus state machine,
   │      fast & polished)     semantic theming, pre-computed styles
   │                           → See Production Architecture reference
   │
   └─ Need SSH access? → Wish + Bubble Tea

Shell Scripts (No Go Required)

brew install gum  # One-time install
# Input
NAME=$(gum input --placeholder "Your name")

# Selection
COLOR=$(gum choose "red" "green" "blue")

# Fuzzy filter from stdin
BRANCH=$(git branch | gum filter)

# Confirmation
gum confirm "Continue?" && echo "yes"

# Spinner
gum spin --title "Working..." -- long-command

# Styled output
gum style --border rounded --padding "1 2" "Hello"

Full Gum Reference → VHS Recording → Mods AI →


Go Applications

go get github.com/charmbracelet/bubbletea github.com/charmbracelet/lipgloss

Minimal TUI (Copy & Run)

package main

import (
    "fmt"
    tea "github.com/charmbracelet/bubbletea"
    "github.com/charmbracelet/lipgloss"
)

var highlight = lipgloss.NewStyle().Foreground(lipgloss.Color("212")).Bold(true)

type model struct {
    items  []string
    cursor int
}

func (m model) Init() tea.Cmd { return nil }

func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
    switch msg := msg.(type) {
    case tea.KeyMsg:
        switch msg.String() {
        case "q", "ctrl+c":
            return m, tea.Quit
        case "up", "k":
            if m.cursor > 0 { m.cursor-- }
        case "down", "j":
            if m.cursor < len(m.items)-1 { m.cursor++ }
        case "enter":
            fmt.Printf("Selected: %s\n", m.items[m.cursor])
            return m, tea.Quit
        }
    }
    return m, nil
}

func (m model) View() string {
    s := ""
    for i, item := range m.items {
        if i == m.cursor {
            s += highlight.Render("▸ "+item) + "\n"
        } else {
            s += "  " + item + "\n"
        }
    }
    return s + "\n(↑/↓ move, enter select, q quit)"
}

func main() {
    m := model{items: []string{"Option A", "Option B", "Option C"}}
    tea.NewProgram(m).Run()
}

Library Cheat Sheet

NeedLibraryExample
TUI frameworkbubbleteatea.NewProgram(model).Run()
Componentsbubbleslist.New(), textinput.New()
Stylinglipglossstyle.Foreground(lipgloss.Color("212"))
Formshuhhuh.NewInput().Title("Name").Run()
Markdownglamourglamour.Render(md, "dark")
Animationharmonicaharmonica.NewSpring()

Full Go TUI Guide → All Bubbles Components → Layout & Animation Patterns →


SSH Apps (Infrastructure)

s, _ := wish.NewServer(
    wish.WithAddress(":2222"),
    wish.WithHostKeyPath(".ssh/key"),
    wish.WithMiddleware(
        bubbletea.Middleware(handler),
        logging.Middleware(),
    ),
)
s.ListenAndServe()

Connect: ssh localhost -p 2222

Full Infrastructure Guide →


Production TUI Architecture (Elite Patterns)

Beyond basic Bubble Tea: patterns that make TUIs feel fast, polished, and professional. Each links to a full code example in Production Architecture.

My TUI is slow or janky

SymptomPatternFix
UI blocks during computationTwo-Phase AsyncPhase 1 instant, Phase 2 background goroutine
Render path holds mutexImmutable SnapshotsPre-build snapshot, atomic pointer swap
File changes cause stutterBackground WorkerDebounced watcher + coalescing
Thousands of allocs per framePre-Computed StylesAllocate delegate styles once at startup
O(n²) string concat in View()strings.BuilderPre-allocated Builder with Grow()
Glamour re-renders every frameCached MarkdownCache by content hash, invalidate on width change
GC pauses during interactionIdle-Time GCTrigger GC during idle periods
Large dataset = high memoryObject Poolingsync.Pool with pre-allocated slices
Rendering off-screen itemsViewport VirtualizationOnly render visible rows

My layout breaks on different terminals

SymptomPatternFix
Hardcoded widths breakAdaptive Layout3-4 responsive breakpoints (80/100/140/180 cols)
Colors wrong on light terminalsSemantic Theminglipgloss.AdaptiveColor + WCAG AA contrast
Items have equal priority → list shufflesDeterministic SortingStable sort with tie-breaking secondary key
Sort mode not visibleDynamic Status BarLeft/right segments with gap-fill

My TUI has multiple views and it's getting messy

SymptomPatternFix
Key routing chaosFocus State MachineExplicit focus enum + modal priority layer
User gets lost in nested viewsBreadcrumb NavigationHome > Board > Priority path indicator
Overlay dismiss loses positionFocus RestorationSave focus before overlay, restore on dismiss
Old async results overwrite new dataStale Message DetectionCompare data hash before applying results
Multiple component updates per frametea.Batch AccumulationCollect cmds in slice, return tea.Batch(cmds...)
Background goroutine panic kills TUIError Recoverydefer/recover wrapper for all goroutines

I want to add data-rich visualizations

WantPatternCode
Bar charts in list columnsUnicode Sparklines▇▅▂ using 8-level block characters
Color-by-intensityPerceptual Heatmapsgray → blue → purple → pink gradient
Dependency graph in terminalASCII Graph RendererCanvas + Manhattan routing (╭─╮│╰╯)
Age at a glanceAge Color CodingFresh=green, aging=yellow, stale=red
Borders that mean somethingSemantic BordersRed=blocked, green=ready, yellow=high-impact

I want my TUI to feel polished and professional

WantPatternKey Idea
Vim-style gg/GVim Key CombosTrack waitingForG state between keystrokes
Search without jankDebounced Search150ms timer, fire only when typing stops
Search across all fields at onceComposite FilterValueFlatten all fields into one string
4-line cards with metadataRich DelegatesCustom delegate with Height()=4
Expand detail inlineInline ExpansionToggle with d, auto-collapse on j/k
Copy to clipboardClipboard Integrationy for ID, C for markdown + toast feedback
? / ` / ; helpMulti-Tier HelpQuick ref + tutorial + persistent sidebar
Kanban with mode switchingKanban SwimlanesPre-computed board states, O(1) switch
Collapsible tree with h/lTree NavigationFlatten tree to visible list for j/k nav
Suspend TUI for vim editEditor Dispatchtea.ExecProcess for terminal, background for GUI
Remember expand/collapsePersistent StateSave to JSON, graceful degradation on corrupt
Tune via env varsEnv PreferencesNO_COLOR, theme, debounce, split ratio
Optional feature missing?Graceful DegradationDetect at startup, hide unavailable features

Full Production Architecture Guide →


Pre-Flight Checklist (Every TUI)

  • Handle tea.WindowSizeMsg — resize all components
  • Handle ctrl+c — cleanup, restore terminal state
  • Detect piped stdin/stdout — fall back to plain text
  • Test on 80×24 minimum terminal
  • Provide --no-tui / NO_TUI escape hatch
  • Test with both light AND dark backgrounds
  • Test with NO_COLOR=1 and TERM=dumb

For production TUIs, see the full checklist (16 must-have + 20 polish items).


When NOT to Use Charm

  • Output is piped: mytool | grep → plain text
  • CI/CD: No terminal → use flags/env vars
  • One simple prompt: Maybe fmt.Scanf is fine

Escape hatch:

if !term.IsTerminal(os.Stdin.Fd()) || os.Getenv("NO_TUI") != "" {
    runPlainMode()
    return
}

All References

I need...Read this
Copy-paste one-linersQuick Reference
Prompts to give Claude for TUI tasksPrompts
Gum / VHS / Mods / Freeze / GlowShell Scripts
Bubble Tea architecture, debugging, anti-patternsGo TUI
Bubbles component APIs (list, table, viewport...)Component Catalog
Theming, layouts, animation, Huh forms, testingAdvanced Patterns
Elite patterns: async, snapshots, focus machines, adaptive layout, sparklines, kanban, trees, cachingProduction Architecture
Wish SSH server, Soft Serve, teatestInfrastructure

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.