Files
our-claude-skills/custom-skills/82-tui-design-template/README.md
Andrew Yim 877db1aa0f refactor: reorganize skill numbering, remove obsolete skills, rename shared libs
- Rename: 00→80 claude-settings-optimizer, 88→79 dintel-skill-update,
  92→81 mac-optimizer, 93→82 tui-design-template
- Rename: dintel-shared → _dintel-shared (consistent with _ourdigital-shared)
- Remove: 61-gtm-manager, 62-gtm-guardian (obsolete), 99_archive
- Update all dintel-* skill refs (114 occurrences across 31 files)
- Sync README.md, CLAUDE.md, AGENTS.md with new structure

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

29 lines
932 B
Markdown

# 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.