一键导入
textual-cli
Use Textual CLI dev tools to run, debug, and inspect the TUI app, including dev mode, key-press simulation, console, and style preview commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use Textual CLI dev tools to run, debug, and inspect the TUI app, including dev mode, key-press simulation, console, and style preview commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | textual-cli |
| description | Use Textual CLI dev tools to run, debug, and inspect the TUI app, including dev mode, key-press simulation, console, and style preview commands. |
Use Textual commands for local TUI development. Use visual-analysis skill for screenshots.
# Standard run
source venv/bin/activate && textual run kubeagle/main.py
# Dev mode (live CSS editing)
source venv/bin/activate && textual run --dev kubeagle/main.py
# With charts data
source venv/bin/activate && textual run --dev kubeagle/main.py -- --charts-path ../web-helm-repository
# Navigate with key presses
source venv/bin/activate && timeout 30 textual run kubeagle/main.py --press "c,2"
# Textual utilities
source venv/bin/activate && textual console
source venv/bin/activate && textual keys
source venv/bin/activate && textual colors
source venv/bin/activate && textual borders
source venv/bin/activate && textual easing
Do not use --screenshot or --press "q" for visual validation. Use visual-analysis for capture workflows.
Run all code convention checks (constants, enums, keybindings, models, inline CSS). Run after implementation to enforce project standards.
Run lint + typecheck together. Use after implementation, before committing, or when checking code quality.
Textual CLI devtools for running, debugging, and exploring TUI apps. Includes run, console, serve, keys, colors, borders, easing commands. Used by tui-developer, tui-test-engineer, and tui-ux-specialist.
Run Textual TUI tests with proper timeouts. Use when running TUI unit tests or after making code changes.
Complete visual analysis workflow - screenshot capture with automatic PNG conversion, AI vision analysis. Use for UX review, freeze detection, and visual verification.
Run all TUI code convention checks (constants, enums, keybindings, models, inline CSS) after implementation to enforce project standards and catch misplaced patterns.