xa.tmux
Pure tmux wrappers.
No Claude Code knowledge lives here. Every public function takes a
binary keyword so callers can override the tmux executable (tests,
cross-platform installs, remote-host bridges).
Key gotchas encoded below:
session_target(name)returnsf"{name}:"— the trailing colon is essential. A bare session name can be silently resolved as a window or pane spec and mis-target a different session.list_sessionsreturns an empty list (not raises) when the tmux server isn’t running; tmux exits non-zero in that case and we absorb it.
- class xa.tmux.TmuxSession(name: str, created: int, activity: int, attached: bool)[source]
Minimal view of one tmux session, from
list-sessions.
- xa.tmux.capture_pane(name: str, *, lines: int = 200, binary: str = 'tmux') str[source]
Return the last
linesof the session’s first pane, or ‘’ on failure.
- xa.tmux.descendants(pid: int) list[int][source]
All transitive descendant PIDs of
pid.Scans
/proc/*/status; silently tolerates races (processes dying mid-scan). Not available on non-Linux platforms — returns[]if/procis absent.
- xa.tmux.list_sessions(*, binary: str = 'tmux') list[TmuxSession][source]
Return all live tmux sessions; empty list if server isn’t running.
- xa.tmux.new_session(name: str, *, command: str, binary: str = 'tmux') None[source]
Create a detached tmux session running
commandas its pane’s program.commandis passed to a shell: the caller is responsible for quoting. Useshlex.quotefor untrusted parts.
- xa.tmux.pane_pid(name: str, *, binary: str = 'tmux') int | None[source]
Return the pid of the first pane’s program, or None if the session is gone.
- xa.tmux.pipe_pane_to_file(name: str, *, path: Path, binary: str = 'tmux') None[source]
Start streaming the pane’s output to
path(append mode).Uses
-oso a duplicate call toggles the pipe off, matching edualc’s behavior. tmux stops piping automatically when the pane dies.
- xa.tmux.proc_comm(pid: int) str[source]
Return the
commname of a pid (kernel-level process name), ‘’ if unreadable.
- xa.tmux.rename_session(old_name: str, new_name: str, *, binary: str = 'tmux') None[source]
Rename a live tmux session.
Both names must match the strict
[A-Za-z0-9_.-]{1,48}pattern used elsewhere inxa; callers should validate before calling.