Generate structured design prompt packets for terminal UIs and web UIs from natural-language briefs. Use when the user asks to design/redesign a TUI, web page, landing page, dashboard, or UI flow, or says /tui-web-design-orchestrator.
Generate production-minded design prompt packets for web-page, web-app, tui-dashboard, and tui-wizard workflows.
/tui-web-design-orchestrator --mode <mode> --brief "<brief>" [options]
--mode <web-page|web-app|tui-dashboard|tui-wizard>: Required mode preset.--brief "<text>": Required design brief.--audience "<text>": Optional audience/persona.--constraints "<text>": Optional constraint (repeatable).--style "<text>": Optional style direction.--tech "<text>": Optional implementation stack override.--output <markdown|json>: Optional output format (default: markdown).--outfile <path>: Optional path to write output file.--mode and --brief are present.python3 ~/.claude/skills/tui-web-design-orchestrator/scripts/design_prompt_packet.py $ARGUMENTS
--outfile is provided, confirm the file path written.--outfile is provided, return the generated packet inline.~/.claude/skills/tui-web-design-orchestrator/references/source-crawl-synthesis.md~/.claude/skills/tui-web-design-orchestrator/references/design-prompt-blueprints.mdA complete packet should include:
default, hover/focus, active, disabled, error, empty, loading, success)web-page: conversion narrative and responsive section flow.web-app: recurring workflow efficiency and data-heavy UI patterns.tui-dashboard: keyboard-first, split-pane, terminal-width-aware operations.tui-wizard: low-error multi-step guidance with confirmation checkpoints.# Web app packet
/tui-web-design-orchestrator --mode web-app --brief "Design a release-readiness dashboard" --audience "engineering managers"
# TUI packet with constraints
/tui-web-design-orchestrator --mode tui-dashboard --brief "Design an incident triage terminal UI" --audience "SRE on-call" --constraints "must run over SSH" --constraints "keyboard only"
# JSON output to file
/tui-web-design-orchestrator --mode web-page --brief "Design a landing page for devtool analytics" --output json --outfile /tmp/devtool-ui.json