Files
our-claude-skills/custom-skills/93-tui-designer
Andrew Yim e2919eef18 feat(tui-designer): add line input mode pattern and gotchas
New section covering read_line() for text input in raw-mode TUI,
with implementation pattern and 5 gotchas from real usage.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 23:43:02 +09:00
..

93-tui-designer

Build Norton Commander / Gopher style TUI wizard interfaces for any Python CLI tool using Rich.

Purpose

Reusable patterns and battle-tested gotchas for building retro-style terminal wizards with:

  • Dual-panel layout (status + content)
  • Stack-based Gopher navigation (numbered menus, Back, Home)
  • Arrow-key list selector for long option lists
  • Bilingual i18n with runtime toggle
  • Keyboard-driven input (F-keys with alphanumeric fallbacks)
  • Three-tier responsive layout (wide/narrow/single panel)

Structure

93-tui-designer/
  code/SKILL.md              # Main skill (architecture, patterns, gotchas)
  shared/references/
    dtm-wizard-reference.md  # DTM Agent implementation reference
  docs/                      # Future: logs, lessons learned

First Implementation

DTM Agent TUI Wizard — 20 files, 21 screens, 29 tests. See shared/references/dtm-wizard-reference.md for details.