Control CLI
Use a repeatable local harness to exercise an interactive CLI instead of poking at it manually. First reuse the repo's own test/demo harness if it exists; otherwise assemble a temporary harness from standard local tools.
What It Is Used For
- Reproducing CLI/TUI bugs with deterministic input.
- Verifying keyboard flows, prompts, interrupts, resize behavior, and terminal layout.
- Capturing before/after transcripts for bug fixes.
- Profiling startup time, slow operations, hangs, or memory growth.
- Recording a short terminal demo when output is easier to show than explain.
Harness Loop
- Identify the command under test and the smallest reproducible workspace.
- Discover existing local harnesses: package scripts, e2e tests, demo recorders, expect scripts, or PTY helpers.
- If no harness exists, launch the CLI in an isolated terminal session with deterministic env vars.
- Capture the current screen before interacting.
- Send one action at a time: text, Enter, arrows, Escape, Ctrl-C, resize.
- Wait for a concrete screen pattern or prompt before the next action.
- Save the transcript and any profile artifacts.
- Kill the session cleanly.
Harness Options
- Repo-native harness: prefer checked-in scripts because they know the app's startup, env, and prompts.
tmux: managed sessions, capture-pane, send-keys, attach/detach.
- PTY probe: use a short Python, Node, or Expect script when tmux is unavailable.
- Runtime inspector: use Node or Bun inspector for CPU profiles, heap snapshots, and live evaluation.
- Terminal recorder: use repo-local demo tools or asciinema-compatible tools when the user asks for a demo.
Minimal tmux Harness
SESSION="cli-harness-$(date +%s)"
tmux new-session -d -s "$SESSION" -- <command-under-test>
tmux capture-pane -pt "$SESSION"
tmux send-keys -t "$SESSION" "help" Enter
tmux capture-pane -pt "$SESSION"
tmux kill-session -t "$SESSION"
For Node CLIs:
NODE_OPTIONS="--inspect=127.0.0.1:0" tmux new-session -d -s "$SESSION" -- <node-cli-command>
Read the terminal output to find the inspector URL, then use Chrome DevTools-compatible tooling if profiling is needed.
Minimal PTY Harness
Use a PTY script when you need deterministic waits in a repo that does not have tmux or a demo harness. Keep it temporary unless the user asks to add a reusable test.
import os
import pty
import select
import subprocess
import time
master_fd, slave_fd = pty.openpty()
proc = subprocess.Popen(
["<command>", "<arg>"],
stdin=slave_fd,
stdout=slave_fd,
stderr=slave_fd,
close_fds=True,
)
os.close(slave_fd)
deadline = time.time() + 30
buffer = b""
while time.time() < deadline:
ready, _, _ = select.select([master_fd], [], [], 0.25)
if not ready:
continue
chunk = os.read(master_fd, 4096)
buffer += chunk
if b"<ready text>" in buffer:
os.write(master_fd, b"help\n")
break
print(buffer.decode(errors="replace"))
proc.terminate()
os.close(master_fd)
If the CLI needs richer terminal control, use pty.fork() or an existing PTY library.
Profiling Recipes
- Startup regression: capture baseline and treatment startup timings under the same machine, env, and command.
- Slow operation: start a CPU profile, perform the operation, stop the profile, and compare top self-time functions.
- Memory leak: force GC if available, take a heap snapshot, perform the operation repeatedly, force GC again, and take another snapshot.
- Hang: capture the screen, active handles/resources, and a stack/CPU sample before interrupting.
Guardrails
- Prefer deterministic waits over sleeps. If you must sleep, explain why.
- Do not send credentials or destructive commands into a controlled session.
- Keep the harness in
/tmp unless the repo already has a testing/demo harness.
- Do not hard-code paths from another repository. Adapt commands to the current repo's scripts and runtime.
- Clean up tmux sessions, temp dirs, inspector processes, and demo artifacts unless the user asks to keep them.
1---2name: control-cli3description: Build or adapt a local harness to drive, inspect, and profile an interactive CLI or TUI without external services. Use for CLI UX checks, startup regressions, memory leaks, hangs, prompt flows, or terminal demos.4---5
6# Control CLI
7
8Use a repeatable local harness to exercise an interactive CLI instead of poking at it manually. First reuse the repo's own test/demo harness if it exists; otherwise assemble a temporary harness from standard local tools.
9
10## What It Is Used For
11
12- Reproducing CLI/TUI bugs with deterministic input.
13- Verifying keyboard flows, prompts, interrupts, resize behavior, and terminal layout.
14- Capturing before/after transcripts for bug fixes.
15- Profiling startup time, slow operations, hangs, or memory growth.
16- Recording a short terminal demo when output is easier to show than explain.
17
18## Harness Loop
19
201. Identify the command under test and the smallest reproducible workspace.
212. Discover existing local harnesses: package scripts, e2e tests, demo recorders, expect scripts, or PTY helpers.
223. If no harness exists, launch the CLI in an isolated terminal session with deterministic env vars.
234. Capture the current screen before interacting.
245. Send one action at a time: text, Enter, arrows, Escape, Ctrl-C, resize.
256. Wait for a concrete screen pattern or prompt before the next action.
267. Save the transcript and any profile artifacts.
278. Kill the session cleanly.
28
29## Harness Options
30
31- Repo-native harness: prefer checked-in scripts because they know the app's startup, env, and prompts.
32- `tmux`: managed sessions, `capture-pane`, `send-keys`, attach/detach.
33- PTY probe: use a short Python, Node, or Expect script when tmux is unavailable.
34- Runtime inspector: use Node or Bun inspector for CPU profiles, heap snapshots, and live evaluation.
35- Terminal recorder: use repo-local demo tools or asciinema-compatible tools when the user asks for a demo.
36
37## Minimal tmux Harness
38
39```bash
40SESSION="cli-harness-$(date +%s)"
41tmux new-session -d -s "$SESSION" -- <command-under-test>
42tmux capture-pane -pt "$SESSION"
43tmux send-keys -t "$SESSION" "help" Enter
44tmux capture-pane -pt "$SESSION"
45tmux kill-session -t "$SESSION"
46```
47
48For Node CLIs:
49
50```bash
51NODE_OPTIONS="--inspect=127.0.0.1:0" tmux new-session -d -s "$SESSION" -- <node-cli-command>
52```
53
54Read the terminal output to find the inspector URL, then use Chrome DevTools-compatible tooling if profiling is needed.
55
56## Minimal PTY Harness
57
58Use a PTY script when you need deterministic waits in a repo that does not have tmux or a demo harness. Keep it temporary unless the user asks to add a reusable test.
59
60```python
61import os
62import pty
63import select
64import subprocess
65import time
66
67master_fd, slave_fd = pty.openpty()
68proc = subprocess.Popen(
69 ["<command>", "<arg>"],
70 stdin=slave_fd,
71 stdout=slave_fd,
72 stderr=slave_fd,
73 close_fds=True,
74)
75os.close(slave_fd)
76
77deadline = time.time() + 30
78buffer = b""
79while time.time() < deadline:
80 ready, _, _ = select.select([master_fd], [], [], 0.25)
81 if not ready:
82 continue
83 chunk = os.read(master_fd, 4096)
84 buffer += chunk
85 if b"<ready text>" in buffer:
86 os.write(master_fd, b"help\n")
87 break
88
89print(buffer.decode(errors="replace"))
90proc.terminate()
91os.close(master_fd)
92```
93
94If the CLI needs richer terminal control, use `pty.fork()` or an existing PTY library.
95
96## Profiling Recipes
97
98- Startup regression: capture baseline and treatment startup timings under the same machine, env, and command.
99- Slow operation: start a CPU profile, perform the operation, stop the profile, and compare top self-time functions.
100- Memory leak: force GC if available, take a heap snapshot, perform the operation repeatedly, force GC again, and take another snapshot.
101- Hang: capture the screen, active handles/resources, and a stack/CPU sample before interrupting.
102
103## Guardrails
104
105- Prefer deterministic waits over sleeps. If you must sleep, explain why.
106- Do not send credentials or destructive commands into a controlled session.
107- Keep the harness in `/tmp` unless the repo already has a testing/demo harness.
108- Do not hard-code paths from another repository. Adapt commands to the current repo's scripts and runtime.
109- Clean up tmux sessions, temp dirs, inspector processes, and demo artifacts unless the user asks to keep them.