Skip to main content

cc-session-control

tmux-first workbench (TUI + headless CLI) for the agent CLIs on one machine — Claude Code, Codex CLI, and Kimi Code: one session list across all three, plus a tmux-first project launcher.

CLI command: csctl

Features

  • Sessions Tab — One machine-wide list of Claude Code, Codex, and Kimi Code sessions (CLI column: cc/cx/km), discovered from each CLI's own on-disk state — not just sessions csctl started. Resume tmux-first (Enter resumes into a project-labelled window in the shared csctl tmux session via each CLI's native resume command; t bare-terminal fallback; R backgrounds into tmux; f forks where the CLI supports it; ⧉ marks tmux-resident sessions), terminate, and delete; a cleanup submenu (c) prunes empty/short Claude sessions and sweeps orphan artifact directories, zombie session files, and aged global entries (cleanup models Claude state only)
  • Projects Tab — The startup tab / launcher: member directories are discovered from evidence tiers (operator pins, any CLI's trust records, any CLI's session activity). Enter opens a CLI chooser (active providers only, claude focused first — so Enter-Enter starts claude) to open a new project-labelled window in the shared csctl tmux session; x/k jump straight to codex/kimi; p/h/H pin, hide, and reveal projects

Non-Claude liveness is deliberately conservative (ADR-0005). A real resume target in argv (codex resume <sid-or-unique-name> / kimi --session <sid>) has priority; csctl's own identity-checked tmux dispatch metadata is a supplement for dispatched windows, and is essential after Kimi rewrites its argv at runtime. A brand-new session started from the launcher (the Enter chooser or x/k) has no sid yet, so it stays unbound, as does any other bare-launched TUI; unbound processes are never stop/takeover targets.

Kimi can close that gap opt-in via its official hooks: add this to ~/.kimi-code/config.toml and every kimi session — bare-launched ones included — self-reports its pid↔session binding (verified on Kimi Code 0.34.0, re-verified on 0.35.0; csctl re-verifies pid identity and process start time per entry, so stale or forged entries never bind):

[[hooks]]
event = "SessionStart"
command = "csctl _kimi-hook"
timeout = 5

[[hooks]]
event = "SessionEnd"
command = "csctl _kimi-hook"
timeout = 5

# Self-heal: re-registers the live session every 60 s, so a SessionStart
# kimi never delivered becomes a ≤60 s unbound window instead of a lifetime.
[[hooks]]
event = "SessionHeartbeat"
command = "csctl _kimi-hook"
timeout = 5

The hook fires when a session materializes, and the binding appears on csctl's next refresh.

A resumed session registers immediately; only a new one waits for its first prompt, because that is when kimi creates its id — which is also why csctl cannot learn a new session's id at spawn. SessionStart delivery is fire-and-forget and not guaranteed (a live 0.36.1 session went unbound for hours on 2026-08-16 with zero trace), so the SessionHeartbeat rule re-registers the session every 60 seconds and a missed start self-heals. A session already running when the rule is added keeps its old config — reopen it to bind. ~/.kimi-code/run/hook-errors.log says whether the hook ran at all — the endpoint records every run that did not register, including an unrecognized event name.

All agent sessions csctl dispatches — new, resumed, forked, or backgrounded — share the tmux session named csctl; their window names retain the project. Existing live sessions in older or user-created tmux sessions are entered in place and are never migrated automatically.

Built with urwid.

UI language: Simplified Chinese (notifications and status text). CLI output is in English.

Requirements

  • Python 3.12+
  • At least one supported agent CLI installed and authenticated: Claude Code, Codex CLI, and/or Kimi Code — each is discovered automatically when its state home exists (~/.claude, ~/.codex, ~/.kimi-code; official relocation variables CODEX_HOME / KIMI_CODE_HOME are honored). Several codex identities on one machine are supported by declaring their homes — see Configuration below
  • tmux (the primary session-lifecycle carrier: launch, resume, background, and survive terminal/SSH disconnects)
  • Linux / WSL. Other POSIX systems are not supported; without /proc, csctl shows degraded state and refuses destructive actions whose safety it cannot prove.

Installation

Install the latest published release:

uv tool install cc-session-control
# or
pipx install cc-session-control

Upgrade later with uv tool upgrade cc-session-control (or pipx upgrade cc-session-control).

Latest master build

To try the newest master before it is released, install from GitHub:

uv tool install --reinstall git+https://github.com/dzshzx/cc-session-control.git

csctl manages local state on the machine where it is installed: the active providers' ~/.claude, ~/.codex, and ~/.kimi-code homes, local tmux, and the project launcher entries recorded in ~/.claude.json. Install it separately on each machine whose sessions you want to manage. For working on the code instead of using it, see CONTRIBUTING.md.

Usage

The TUI is the primary surface — the project launcher and session cleanup live there (Projects tab and the Sessions cleanup submenu). The headless CLI keeps only the agent-facing command: resume.

# Open TUI
csctl

# Resume rescue (headless): list sessions of ALL providers across
# directories with ready-to-copy resume commands (native /resume only
# searches the cwd and hides sdk-ts/bridge sessions); non-Claude rows
# are tagged [codex]/[kimi]
csctl resume                 # Page 1, 20 per page
csctl resume mybug           # Keyword: sid/cwd/title, then transcript body
csctl resume --page 2        # Next page
csctl resume --all           # Everything, no paging

# Options
csctl --theme light            # Force the TUI palette (auto/dark/light)
csctl --version

The companion Claude Code skill (claude-session-doctor) is deprecated: its background-agent and Remote Control instructions depended on surfaces removed in 0.8.8. Session rescue lives in csctl itself (csctl resume and the TUI).

Configuration

Environment Variable Default Description
CSCTL_PROVIDERS claude,codex,kimi Comma list of allowed agent-CLI providers; a listed provider is active only when its state home also exists
CSCTL_CLEANUP_AGE_DAYS 14 Minimum age in days for the age sweep in the Sessions cleanup submenu (must be an integer ≥ 0)
CSCTL_THEME auto TUI palette: auto (detect the terminal background via $COLORFGBG, else dark) / dark / light. Most terminals (including tmux) don't set $COLORFGBG, so auto falls back to dark — set this (or --theme) explicitly for a light terminal

Multiple codex identities

CODEX_HOME says which home one codex process uses, and it is inherited by everything that process spawns — including csctl. Reading it as the machine's inventory made csctl show only the identity it happened to be launched from. So when you run more than one codex identity, declare their homes in ~/.config/csctl/providers.json (XDG-respecting) instead:

{
  "codex_homes": [
    {"label": "cx",  "home": "~/.codex"},
    {"label": "cx2", "home": "~/.codex-eva02"}
  ]
}

That list is then the complete codex inventory and CODEX_HOME no longer takes part, so csctl shows the same machine state from any terminal. Each entry becomes its own provider — separate sessions, trust records, badges, and launcher entry — tagged in the CLI column by its label (ASCII alphanumeric, ≤3 characters). The first entry keeps the provider key codex; later ones become codex:<label>. Every command csctl synthesizes for a declared identity carries its CODEX_HOME explicitly. Without this file there is exactly one codex instance following CODEX_HOME/~/.codex, and a malformed file falls back to that same single instance with a visible reason. Changes take effect on the next csctl start. See ADR-0008.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cc_session_control-0.8.10.tar.gz (253.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cc_session_control-0.8.10-py3-none-any.whl (162.4 kB view details)

Uploaded Python 3

File details

Details for the file cc_session_control-0.8.10.tar.gz.

File metadata

  • Download URL: cc_session_control-0.8.10.tar.gz
  • Upload date:
  • Size: 253.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cc_session_control-0.8.10.tar.gz
Algorithm Hash digest
SHA256 0b6e380c646789e3524f6e64fb165a3390fd46926d8a98cc5352fe18e0364d90
MD5 7a7a70a0740a3884a149fc57fc2f6551
BLAKE2b-256 0c7b37275d4fabf3215d6e1627cfcce800d853838c62e7f0b95bee59dc185a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for cc_session_control-0.8.10.tar.gz:

Publisher: release.yml on dzshzx/cc-session-control

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cc_session_control-0.8.10-py3-none-any.whl.

File metadata

File hashes

Hashes for cc_session_control-0.8.10-py3-none-any.whl
Algorithm Hash digest
SHA256 6108259e48a7ef371b3d92890acab67e3a074e2f15e61c5bf697bfa38e7d6d50
MD5 29082d3c8e4367b59b7deb6dcd824a46
BLAKE2b-256 bc7aeb0d86a078716ba33d1b5fbf5d79611646b5b7188fbc3bb98c8ebc9aa3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cc_session_control-0.8.10-py3-none-any.whl:

Publisher: release.yml on dzshzx/cc-session-control

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page