bubbletea-code-review

Review BubbleTea TUI code for Elm architecture and Lipgloss styling issues.

43|6|Updated Mar 16, 2026
One-click install
npx skills add https://github.com/1024XEngineer/bytemind --skill bubbletea-code-review-1024xengineer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bubbletea-code-review
Source: https://github.com/1024XEngineer/bytemind/tree/main/.agents/skills/bubbletea-code-review
Command: npx skills add https://github.com/1024XEngineer/bytemind --skill bubbletea-code-review-1024xengineer

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

The skill helps engineers identify architectural and styling issues in BubbleTea TUI code, ensuring maintainable and safe code practices.

Core Features & Use Cases

  • Elm architecture adherence checks for proper separation of model, update, view, and Cmd usage in BubbleTea apps.
  • View purity and styling reviews Lipgloss usage, layout composition, and responsive sizing.
  • Sub-component orchestration assesses how sub-components are updated and communicated, with a focus on safe, non-blocking operations.
  • Use cases include pre-merge code audits, design reviews of terminal UIs, and onboarding developers to BubbleTea best practices.

Quick Start

Run a BubbleTea code review on your project to identify Elm-architecture issues, Update pitfalls, and Lipgloss styling gaps.

Frequently Asked Questions about bubbletea-code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review BubbleTea code for proper Elm architecture and maintainability?

To review BubbleTea code, statically analyze the separation of model, update, and view patterns. Check for blocking I/O in Update, improper Cmd usage, and side effects in View to ensure safe TUI operations.

What are common architectural pitfalls in Go BubbleTea TUI applications?

Common BubbleTea architectural pitfalls include performing blocking I/O operations inside the Update function, misusing TeaCmd, and introducing side effects within the View function, all of which degrade TUI safety and maintainability.

How do I check Lipgloss styling and layout composition in a terminal UI?

Checking Lipgloss styling involves reviewing layout composition and responsive sizing within your View function. Ensure the View remains pure without side effects while correctly composing sub-components for terminal UI rendering.

Can I use this approach to audit sub-component orchestration in BubbleTea apps?

Yes, you can audit sub-component orchestration in BubbleTea apps by assessing how sub-components are updated and communicate. This ensures safe, non-blocking operations and proper Elm architecture adherence across Go projects.

When should I run a BubbleTea code review for my Go project?

You should run a BubbleTea code review during pre-merge code audits and terminal UI design reviews. It is also useful for onboarding developers to BubbleTea best practices and ensuring proper architecture before merging.