team-tui

Run parallel TUI component, hook, and integration tests during team verify.

Updated Mar 21, 2026
One-click install
npx skills add https://github.com/gtpgg1013/claude-skills-collection --skill team-tui
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team-tui
Source: https://github.com/gtpgg1013/claude-skills-collection/tree/main/skills/claude-local/team-tui
Command: npx skills add https://github.com/gtpgg1013/claude-skills-collection --skill team-tui

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill extends the /team workflow by adding parallel TUI test QA in the verify stage, ensuring TUI changes are validated with unit and E2E tests as part of the standard pipeline.

Core Features & Use Cases

  • Integrates TUI test workers into the /team verify stage to run component, hook, and integration tests in parallel.
  • Auto-detects changed TUI files and assigns scoped QA tasks to dedicated workers to maximize coverage without slowing unchanged areas.
  • Supports optional interactive E2E testing via tmux when --interactive is requested, including prerequisites validation and test pattern guidance.
  • Intercepts the verify stage to inject TUI QA while preserving the base orchestration from /team for plan/prd/exec.

Quick Start

Trigger the team-tui workflow by invoking the oh-my-claudecode:team skill with a task description and worker count.

Frequently Asked Questions about team-tui

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

FAQPage Schema
How do I automate TUI testing within a team pipeline workflow?

Automated TUI testing in a team pipeline is handled by intercepting the verify stage to spawn parallel test workers. These workers run component, hook, and integration tests to validate TUI changes before completion, outputting results under the TUI test directory for review.

Can I run interactive E2E tests for CLI components using tmux?

Interactive E2E tests for CLI components are supported using tmux when the --interactive flag is requested. The workflow includes prerequisites validation and test pattern guidance to ensure the interactive testing environment is correctly configured before execution.

Do I need the /team skill to coordinate TUI QA orchestration?

The /team skill is required to coordinate TUI QA orchestration because this workflow extends it by preserving base plan, prd, and exec stages. It intercepts the verify stage to inject parallel TUI test workers while relying on the parent skill for overall pipeline management.

How does parallel TUI test automation detect which files need QA validation?

Parallel TUI test automation auto-detects changed TUI files and assigns scoped QA tasks to dedicated workers. By targeting only modified areas, it maximizes test coverage without slowing down unchanged components, hooks, or integration paths during the verify stage.

What is the best way to structure TUI test scopes for components, hooks, and integration?

The best way to structure TUI test scopes is using the provided categories of components, hooks, and integration. This scope categorization allows the parallel test workers to target specific TUI layers independently, ensuring comprehensive validation across the CLI interface architecture.

When should I avoid using parallel TUI test workers in my QA pipeline?

You should avoid parallel TUI test workers if your project does not use the /team workflow orchestration or lacks TUI components under packages/cli/src/tui. The skill is specifically designed to intercept team pipeline verify stages and requires that structural context to function correctly.