Skip to main content

Terminal UI for browsing, previewing, resuming and managing Claude Code sessions

Project description

ccsessions

A fast terminal UI for browsing, previewing, resuming and managing Claude Code terminal sessions.

ccsessions in a fullscreen terminal — wide layout with a full-height conversation pane

Features

  • Project & session browser — every Claude Code project on your machine, newest first, with live-session indicators (●), message counts and token usage (input / output / cache read / cache write)

  • Conversation preview — the tail of any session rendered with roles, Markdown (for Claude's replies), tool calls (⚙) and slash commands (⌘), without opening Claude Code

  • One-key resumer replaces the TUI with claude --resume <id> in the session's working directory; c copies a ready cd <dir> && claude --resume <id> command to the clipboard (OSC 52)

  • Archive & delete — move sessions out of claude --resume (reversibly) or delete them for good, per session or per project, with confirmation dialogs; sessions whose transcript lives on another synced machine are detected and marked (✕)

  • Responsive layout — wide terminals get a side-by-side layout with a full-height conversation pane; narrow (half-screen) terminals get a stacked layout with a full-width conversation pane:

    ccsessions in a half-screen terminal — stacked layout with a full-width conversation pane
  • Export — write a whole session to Markdown (YAML front matter with session metadata, then the conversation — ready for Quarto/Pandoc) or copy the raw JSONL transcript verbatim; existing files are never overwritten

  • Fast — token stats are cached per transcript (invalidated by mtime + size), scanning runs off the UI thread, and conversation previews read only the tail of multi-megabyte files

Requirements

  • Python ≥ 3.10
  • Claude Code installed (claude on PATH — needed only for resuming)
  • macOS or Linux (Windows untested)

Installation

pipx install ccsessions-tui        # or: uv tool install ccsessions-tui

Both install the ccsessions command.

Or from a clone:

git clone https://github.com/miskiewiczm/ccsessions
pip install -e ccsessions

Usage

ccsessions
Key Action
j / k / arrows Move within the focused pane
Tab / Shift+Tab Switch panes
r Resume the selected session (in place)
c Copy the resume command to the clipboard
a Archive ↔ restore session · archive ↔ restore project
d Delete session / project (with confirmation)
n Rename project (set a display alias)
e Export the session (Markdown or raw JSONL)
/ Filter the focused list (projects or sessions)
Ctrl+R Rescan ~/.claude now (a rescan also runs automatically)
q Quit

a and d act on the session when the Sessions pane is focused and on the whole project when the Projects pane is focused.

Project names default to the last component of the project's working directory. n sets a purely cosmetic alias (stored in ~/.config/ccsessions/aliases.json — nothing under ~/.claude is touched); submitting an empty alias removes the entry and restores the default name.

Configuration

  • Theme — switch at runtime with Ctrl+P → "Change theme"; the choice is remembered across runs (~/.config/ccsessions/settings.json). The CCSESSIONS_THEME env var overrides it. The default ansi-dark follows your terminal's palette and keeps terminal transparency; RGB themes (nord, gruvbox, tokyo-night, dracula, …) paint opaque backgrounds.
  • Code blocks — fenced code follows the app theme with a matching pygments style. Set CCSESSIONS_CODE_THEME to pin a specific one (any name from pygments.styles.get_all_styles()).
  • CCSESSIONS_REFRESH_SECONDS — auto-refresh interval (default 10, 0 disables it). Rescans keep your selection and never scroll the conversation pane; they pause while a dialog or the filter bar is open.
  • ~/.config/ccsessions/aliases.json — project display aliases, managed with the n key.

How it works

ccsessions reads the data Claude Code already keeps on disk:

  • ~/.claude/projects/<encoded-path>/*.jsonl — session transcripts
  • ~/.claude/projects/<encoded-path>/sessions-index.json — session metadata (summaries, first prompts, message counts)
  • ~/.claude/sessions/*.json — live-session records (PID liveness is checked with signal 0)

Archiving a session moves its transcript into an archived/ subdirectory of the project folder (invisible to claude --resume, fully restorable). Archiving a project moves the whole folder to ~/.claude/projects-archive/; archived projects stay listed (dimmed, ▪) after the active ones and can be restored with a. Deleting removes the transcript and its index entry. Token-stats caching lives in ~/.cache/ccsessions/.

Note: Claude Code automatically deletes transcripts older than its cleanupPeriodDays setting (30 days by default). If you rely on your session history, raise that value in ~/.claude/settings.json.

Privacy

Everything happens locally: ccsessions only reads files under ~/.claude/ and writes its cache under ~/.cache/ccsessions/. It makes no network requests and sends nothing anywhere.

Development

pip install -e . --group dev
pytest

License

MIT

Project details


Download files

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

Source Distribution

ccsessions_tui-0.2.1.tar.gz (3.2 MB view details)

Uploaded Source

Built Distribution

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

ccsessions_tui-0.2.1-py3-none-any.whl (30.1 kB view details)

Uploaded Python 3

File details

Details for the file ccsessions_tui-0.2.1.tar.gz.

File metadata

  • Download URL: ccsessions_tui-0.2.1.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ccsessions_tui-0.2.1.tar.gz
Algorithm Hash digest
SHA256 b327060118811ac7a851acc37e00b5625bd8ad0f1f5278f2cde5bef886ccca1f
MD5 a2209bf7c22f7bc8b7bc99e6a7095502
BLAKE2b-256 02cae2d641066d5f40d1a5739da177874e9fd6dd7fe71bbc9a8b592ac6063b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ccsessions_tui-0.2.1.tar.gz:

Publisher: publish.yml on miskiewiczm/ccsessions

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

File details

Details for the file ccsessions_tui-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: ccsessions_tui-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ccsessions_tui-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e2887cea4c004b0e7666d5b342b22b74e564d7d20d65e258668acb2bbecae166
MD5 a62e53cd83d52f196e0974b8d606ec89
BLAKE2b-256 536404a15a9e1f565bb12a28729cb7c4e70c27c64d9eb781afcbf063f8d384ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ccsessions_tui-0.2.1-py3-none-any.whl:

Publisher: publish.yml on miskiewiczm/ccsessions

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 Pingdom Monitoring Sentry Error logging StatusPage Status page