Files
our-claude-skills/custom-skills/92-tui-design-template
Andrew Yim 137b927477 fix(skills): make all skills load-valid + add scripts/verify_skills.py
Add a comprehensive load verifier and fix the two issues it found:

- scripts/verify_skills.py: validates every loadable unit (flat root, suite sub-skill,
  plugin skill) with real YAML parsing, name regex + global uniqueness, frontmatter
  <=1024, description sanity, plugin.json JSON validity, and orphan detection. Read-only.
- 92-tui-design-template (root + code/SKILL.md): fix invalid YAML `triggers:` block
  (`- "a", "b"` multi-scalar list items) -> one phrase per list item.
- 17-seo-schema-generator: remove ">" from description ("generate -> validate" ->
  "generate then validate"); angle brackets are disallowed in descriptions.

Result: 75/75 loadable skills valid — 0 failures, 0 name collisions, 0 orphans,
0 plugin-manifest errors (65 flat + 3 plugins + 7 suite sub-skills).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 01:22:33 +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.