claude-remote-control.service floods journald with per-second TUI repaint #283
Labels
No labels
burndown-2026-06
burndown-2026-08
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
coherence-core
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
qa-fixture
role/advocate
role/director
role/exec
role/frontend
role/gamedev
role/human
role/platform
role/qa
role/science
role/sysadmin
state
ambient
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…
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)