claude-remote-control.service floods journald with per-second TUI repaint #283
Labels
No labels
burndown-2026-06
coherence-core
consult
headless
interactive
P0
P1
P2
P3
P4
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
coilyco-flight-deck/infrastructure#283
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
claude-remote-control.serviceon kai-server floods the journal with its TUI repaint loop.The daemon renders its interactive status screen (
Capacity: N/32 …,Attached,Continue coding…,space to show QR code) to stdout roughly once per second. Running under systemd (non-tty), journald captures every frame.Measured on 2026-06-10 (uptime 3d 09h since the 2026-06-06 18:18:50 PDT start):
The service is otherwise healthy (MainPID stable, 0 restarts, ~1.85 GiB RSS, 0.6% CPU). This is pure log noise, but it bloats the journal and makes
journalctl -u claude-remote-controlunusable for finding real events.Root cause
claude remote-control --helpexposes no quiet/headless flag — only--debug-file <path>and-v/--verbose. The repaint can't be silenced in-app, and the unit has noStandardOutput=override, so it inheritsjournal.Proposed fix
In
systemd/claude-remote-control.service, under[Service]:Drops the stdout repaint loop while keeping real errors in the journal. Optionally pair with
--debug-file /var/log/claude/remote-control.log(or a path under kai's home) for on-demand diagnostics, since startup/connection state currently only shows on stdout.Acceptance
--debug-file)