What problem does it solve? Verifying changes to a terminal user interface is difficult without a repeatable way to launch the app, capture detailed logs, and send keystrokes programmatically. This Skill provides a consistent procedure for interactively testing the Codex TUI. ## Core Features & Use Cases - Interactive Launch Procedure: Starts the Codex TUI through the just codex target so changes can be verified in a live session. - Trace-Level Logging: Enforces RUST_LOG="trace" and a -c log_dir=<temp_dir> argument so every run writes detailed logs to a known location for debugging. - Programmatic Input Guidance: Specifies sending text first and Enter in a separate write, avoiding input bursts that the TUI may mishandle. - Use Case: After modifying TUI rendering code, launch the app with trace logging, send a test message programmatically, and inspect the log directory to confirm the change behaves as expected. ## Quick Start Start the Codex TUI with just codex, set RUST_LOG to trace, pass a log directory via -c log_dir, then send a test message followed by Enter as a separate write.