# Test Plan Template Use this file when writing step-by-step tests. ## Inputs to Collect - Command and args to run. - Terminal size (cols/rows) if layout-sensitive. - Expected text or stability checkpoints. - Credentials or fixtures (if needed). ## Step Structure - Step 1: `screenshot` (or `screenshot --json`) - Step 2: Action (`press`, `type`) - Step 3: `wait --assert` for expected text or `wait --stable` - Step 4: Repeat until done - Step 5: Cleanup (`kill --yes`) ## Example 1) `agent-tui run ` 2) `agent-tui --session screenshot --format json` 3) `agent-tui --session press Tab` 4) `agent-tui --session type "value"` 5) `agent-tui --session press Enter` 6) `agent-tui --session wait "Success" --assert` 7) `agent-tui --session kill --yes`