Skip to main content

Read-only shadow-memory sidecar for coding agents: faithful, evidence-cited recap + safety judgment + grounded chat.

Project description

CC-Copilot

PyPI Python CI License: MIT

CC-Copilot helps you stay aligned with AI coding agents.

Cockpit is the primary TUI experience: a live supervision layer for ongoing agentic work, shared context, and next decisions.

Ask questions across one session, selected sessions, or an entire project without injecting supervision chatter into the main Claude Code or Codex workflow.

CC-Copilot Cockpit

Quick Start

cc-copilot cockpit

The first launch greets you with a one-time welcome screen to pick the model that powers recaps, chat, and sinceClaude or Codex (uses the agent's own login, no API key) or an API provider (OpenAI / DeepSeek / OpenRouter, key captured inline). It only shows once; reopen it anytime with /init, or run cc-copilot init in a plain terminal (handy over SSH). The deterministic core (brief / check / observe) needs no model at all.

Inside Cockpit:

/sessions   choose one or more agent sessions (incl. your own live session)
/here       observe the session you're running inside of
/observe    attention queue and next human decision
/since      recap since you last looked (or 30m / 2h; --raw = cited delta)
/handoff    shareable Markdown handoff (brief + what changed)
/brief      deterministic recap with citations
/check      safety / off-track verdict
/diff       changes since last turn
/model      choose backend/model
/init       reopen the model picker (Claude / Codex / an API key)
/resume     resume a Cockpit Session

Install

One command, no clone — install it as an isolated tool:

uv tool install "cc-copilot[tui]"      # recommended (https://docs.astral.sh/uv/)
# or
pipx install "cc-copilot[tui]"

Then:

cc-copilot cockpit

Or run it without installing anything:

uvx --from "cc-copilot[tui]" cc-copilot cockpit

Requirements: Python 3.9+. The CLI core is dependency-free; the Cockpit TUI pulls in the optional [tui] extra (Textual) — drop it (cc-copilot instead of cc-copilot[tui]) if you only want the command-line briefs.

plain pip / from source
pip install "cc-copilot[tui]"                         # from PyPI
# from a clone (development):
pip install -e ".[tui]"

On fresh Debian/Ubuntu servers pipx/venv may need:

sudo apt-get update && sudo apt-get install -y python3-venv python3-pip pipx

Why CC-Copilot

Past copilots reduced the cognitive burden of understanding code.

Agentic coding creates a new burden: understanding what agents are doing over time. Long-running Claude Code, Codex, and multi-agent workflows produce continuous context, decisions, tool calls, errors, and partial progress.

CC-Copilot gives humans a separate supervision layer. You can inspect, ask, compare, and realign without interrupting the working agent or forcing yourself to reconstruct context manually.

What Makes It Different

  1. Read-only supervision CC-Copilot observes agent transcripts and project context without editing files, issuing agent actions, or interfering with the working agent.

  2. Separate Cockpit workflow Ask supervision questions outside the main agent conversation, so the agent's working context stays clean.

  3. Evidence-grounded answers Answers are grounded in transcript lines, tool results, project facts, git state, and file evidence.

  4. Multi-session awareness Follow one session, selected sessions, or an entire project from one interface.

  5. Attention-first UI Cockpit surfaces status, risk, progress, and the next human decision instead of forcing you to read the whole transcript.

  6. Model-flexible Use Codex, Claude, OpenAI-compatible APIs, DeepSeek, OpenRouter, Ollama, Gemini, or custom CLI backends.

  7. Terminal-native Keyboard-first TUI with mouse support, designed for side-window and CMUX-style workflows.

  8. Resumable Cockpit Sessions Your supervision conversation is independent from the agent session and can be resumed later.

Usage

cc-copilot cockpit                 # open the TUI
cc-copilot sessions                # list project sessions
cc-copilot status                  # fleet board, neediest first
cc-copilot observe                 # attention queue
cc-copilot brief                   # deterministic recap
cc-copilot check                   # safety verdict
cc-copilot since                   # grounded LLM recap since you last looked
cc-copilot since 30m               # …or within a time window
cc-copilot since --raw             # the deterministic cited delta, no model call
cc-copilot handoff --out h.md      # shareable Markdown handoff
cc-copilot watch --notify          # desktop alert when the agent needs you
cc-copilot ask "what changed?"     # one-shot grounded Q&A
cc-copilot chat                    # plain terminal chat mode
cc-copilot resume                  # resumable Cockpit Sessions

Scope options:

cc-copilot cockpit                 # one agent session by default
cc-copilot cockpit --scope multi   # selected/all sessions in this project
cc-copilot cockpit --scope project # project-level evidence context

cc-copilot ask --scope multi --scope-sessions a1b2c3d4,b5c53c29 "compare these"
cc-copilot observe --scope project

Session discovery spans every coding agent with sessions on this machine:

${CLAUDE_CONFIG_DIR:-~/.claude}/projects/<encoded-cwd>/<session>.jsonl   # Claude Code
${CODEX_HOME:-~/.codex}/sessions/YYYY/MM/DD/rollout-*.jsonl              # Codex

A project's sessions from both agents appear on one board, grouped by project cwd and tagged with their agent. Restrict the set with --agent claude, --agent codex, $CC_COPILOT_AGENTS, or [agents] enabled in the config.

By default, commands report on the most recent session other than the current one, so running CC-Copilot from inside a live agent session watches the agent you want to supervise. To watch your own current session instead, use --here (e.g. cc-copilot cockpit --here) or /here inside the cockpit — it is also always listed in /sessions as "your live session", even across projects. See docs/cross-model-adapters.md.

Cockpit

Cockpit is the main product surface.

It gives you:

  • Status header for project, evidence range, Cockpit Session, backend, and risk.
  • Live activity strip from the observed session(s).
  • Attention queue and next human decision via /observe.
  • Grounded chat over one session, selected sessions, or project evidence.
  • Context HUD showing estimated input context, output estimate, and evidence split across raw transcript, project facts, chat, memory, and summary index.
  • Background alerts when the agent stalls, errors, or goes off track.
  • Checkbox session picker with [ ] / [x] multi-select.
  • Resumable Cockpit Sessions via /resume.

Keyboard is primary; mouse works too. Click anywhere to return focus to the composer. Enter sends, Ctrl+J inserts a newline, / opens command suggestions, and Ctrl+P opens the command palette. Shift+↑ / Shift+↓ resize the activity timeline (the chat fills the rest); the height is remembered across launches.

While You Were Away

The hardest part of supervising long-running agents is re-entry: you stepped away, the agent kept working, and now you have to reconstruct what happened.

  • since answers "what changed since I last looked" — by default a short LLM recap narrated from the deterministic, cited diff of new asks, agent messages, commands, failures, changed files, and any status/safety transition (the model sees only that cited delta and keeps its [L…] citations; --raw or no backend gives the deterministic delta itself). cc-copilot remembers where you last looked (a small marker under $CC_COPILOT_STATE_DIR, never under ~/.claude/~/.codex); the cockpit stamps it when you leave and greets you with "⟳ N new since you last looked" when you return. Or scope by time: since 30m, since 2h.
  • handoff turns the current state into a shareable Markdown document — the brief plus an optional "while you were away" section — to paste into a ticket or hand to a teammate. Every line keeps its [L…] citation.
  • watch --notify pings you (desktop notification, terminal-bell fallback) only when a session crosses into needing you — a fresh intervene verdict, a slide into stalled, or a new failure — so you can step away without missing the moment it actually needs a human.

All three are LLM-free and work across Claude Code and Codex sessions.

Evidence Context

v0.7 introduced the Evidence Context Engine.

For model-backed ask, chat, and Cockpit answers, CC-Copilot now retrieves primary evidence first:

  • raw assistant messages
  • raw human prompts
  • tool calls and tool results
  • cited line windows
  • recent transcript tail
  • selected multi-session records
  • read-only project facts
  • git/file evidence
  • Cockpit conversation memory

Summaries still exist, but they are navigation aids and UI surfaces, not the only source of truth. See docs/evidence-context-engine.md.

Models

cc-copilot backends
cc-copilot cockpit --backend codex
cc-copilot cockpit --backend claude
cc-copilot ask "what matters next?" --backend openai --model gpt-4o

Supported backend families:

backend authentication notes
codex your codex login default; local agent CLI
claude your Claude Code login claude -p; no API key
gemini / llm the CLI's own config if installed on PATH
deepseek DEEPSEEK_API_KEY OpenAI-compatible HTTP
openai OPENAI_API_KEY OpenAI-compatible HTTP
openrouter OPENROUTER_API_KEY any OpenRouter model
ollama none local server at http://localhost:11434
custom CC_COPILOT_API_BASE or CC_COPILOT_LLM_CMD proxy/API/CLI escape hatch

Set defaults once — the guided way (pick a model, capture an API key):

cc-copilot init           # interactive wizard (also runs on the first cockpit launch)

Or scaffold/inspect the file directly:

cc-copilot config --init  # write a commented starter ~/.cc-copilot.toml
cc-copilot config         # show the effective backend

Example ~/.cc-copilot.toml:

backend = "codex"
# model = "..."

[history]
enabled = true

Precedence: explicit flags > environment variables > config file > built-in default.

Read-Only Contract

CC-Copilot is an observer.

It reads:

  • agent transcripts
  • session metadata
  • read-only project facts
  • git status
  • cited file excerpts
  • saved Cockpit conversation state

It does not:

  • mutate the observed agent session
  • edit project files
  • run tools on behalf of the observed agent
  • write under ~/.claude
  • inject supervision chatter into Claude Code or Codex

Deterministic commands work without an LLM:

cc-copilot brief
cc-copilot observe
cc-copilot check
cc-copilot status

Interactive /diff is available inside Cockpit and cc-copilot chat.

LLM-backed answers receive bounded cited evidence context, not tool access or ambient repo access.

Cockpit Sessions

A Cockpit Session is separate from an agent session.

It stores:

  • your supervision Q&A
  • backend/model selection
  • project cwd
  • selected evidence sessions
  • durable compacted memory for older Q&A

Changing evidence with /sessions changes what the current Cockpit reads; it does not switch to another Cockpit Session.

Saved state lives under:

${CC_COPILOT_STATE_DIR:-~/.local/state/cc-copilot}

Directories are 0700, files are 0600. Disable persistence with:

cc-copilot cockpit --no-persist

or:

[history]
enabled = false

How It Works

sources/        agent adapters: discover sessions + parse a transcript
  base.py         the AgentSource contract + registry/dispatch
  claude.py       Claude Code (~/.claude/projects/**)
  codex.py        Codex (~/.codex/sessions/**/rollout-*.jsonl)
transcript.py   the normalized record model Claude Code parses into
state.py        fold records into deterministic session state
assess.py       classify stalls, failures, retry loops, and safety signals
brief.py        render deterministic cited recaps
since.py        "what changed since you last looked" (cited diff)
lastlook.py     remember where the human last looked (per session)
handoff.py      a shareable Markdown handoff artifact
notify.py       conservative away-alerts (desktop / terminal)
observe.py      rank attention and next human decision
scope.py        collect session, multi-session, and project evidence
context.py      retrieve raw evidence for model-backed answers
store.py        persist resumable Cockpit Sessions and compacted memory
backends.py     call Codex, Claude, OpenAI-compatible APIs, Ollama, etc.
tui.py          Cockpit, the Textual TUI

Agent specifics live entirely in sources/. Each adapter supplies just two things — discovery and parse — and emits the same normalized records, so state, assessment, briefing, context, and cockpit are agent-agnostic. One cockpit can watch Claude Code and Codex sessions side by side, grouped by project. Adding another agent (Gemini CLI, Aider, …) is a new sources/ adapter, not a rewrite.

Development

git clone https://github.com/Audiofool934/cc-copilot.git
cd cc-copilot
pip install -e ".[tui]"          # editable install with the Cockpit extra

python3 -m unittest discover     # stdlib-only test suite
cc-copilot cockpit

Core tests are stdlib-only. Textual is optional and lazy-imported by Cockpit. Releases publish to PyPI automatically on a v* tag — see docs/RELEASING.md.

Roadmap

  • Homebrew tap + a curl | sh one-line installer
  • deeper project evidence retrieval and file ranking
  • streaming responses and exact backend token usage
  • additional transcript parsers beyond Claude Code
  • hook-driven push alerts for unattended runs

Rust migration is tracked separately in docs/rust-migration.md.

Philosophy

The main agent conversation should stay focused on doing the work.

Supervision is a different job: inspect what happened, compare evidence, ask what matters, preserve decisions, and decide whether to intervene. Mixing that into the working agent thread creates noise and changes the very context you are trying to observe.

CC-Copilot keeps supervision outside the main workflow. Cockpit is where the human can regain situational awareness without contaminating the agent's own conversation.

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

cc_copilot-0.14.0.tar.gz (169.3 kB view details)

Uploaded Source

Built Distribution

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

cc_copilot-0.14.0-py3-none-any.whl (139.1 kB view details)

Uploaded Python 3

File details

Details for the file cc_copilot-0.14.0.tar.gz.

File metadata

  • Download URL: cc_copilot-0.14.0.tar.gz
  • Upload date:
  • Size: 169.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cc_copilot-0.14.0.tar.gz
Algorithm Hash digest
SHA256 c244ed2d71739152eb37cb1d45a42dd905c81f106df646c0ed4cfdae70259e92
MD5 b5e98e62527fa1ee6f87cae79cb76838
BLAKE2b-256 0033a80d22fbe879fb82c642eb01ab6a0f2f4c598dde14f8e77b8f73674213a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cc_copilot-0.14.0.tar.gz:

Publisher: release.yml on Audiofool934/cc-copilot

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_copilot-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: cc_copilot-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 139.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cc_copilot-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f2bf6afc49c8c786b1b59b172d1578383d2afd892290e7f2bbe744685bef5e42
MD5 82b12698ec9cf3c5e3c60c4c1c0258c5
BLAKE2b-256 d007cd1f8928f1d325e5e13b25bd4afc7c9ae6c808c565cb16cd0602ce198614

See more details on using hashes here.

Provenance

The following attestation bundles were made for cc_copilot-0.14.0-py3-none-any.whl:

Publisher: release.yml on Audiofool934/cc-copilot

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