Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Compaction has no visual feedback — /compact and auto-compaction appear to hang

Open
#928 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
68/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Active
Domain
cli

Research direction

Start by tracing the TUI handling for the harness's compaction_start and compaction_done events, then follow the manual /compact entry point and the automatic compaction path. Done means both paths show an in-progress indication, a completion result using the available token data, and a neutral finished or failure message when result data is absent.

Written by the indexing model from the issue text.

Description

Summary

Compaction runs with no visual feedback. Every stage of it is already recorded on disk — the compaction_start / compaction_done events fire, the transcript gets a compaction entry, and the session meta.json gets cumulative stats — but the TUI renders nothing while it runs and nothing when it finishes.

Because compaction is a summarization model call over the whole context, it is not instant (this session compacted 446,626 tokens). With no indicator, the session looks hung for the duration, and after it returns there is no way to tell it happened, how much was reclaimed, or that /compact did anything at all.

This affects both paths: manual /compact and automatic compaction near the context limit.

Expected Behavior
  • While compacting: some visible indication that work is in progress — a status/spinner line, ideally with the token count being summarized, so the session doesn't read as frozen.
  • When finished: a feed line reporting the result, e.g. tokens before → after and tokens saved. /compact is an explicit user action, so it should always confirm what it did.
  • On failure/cancel: a visible message rather than a silent no-op.

The data needed for all of this is already produced by the harness (see evidence below) — this looks like a rendering gap rather than a missing-instrumentation problem.

Actual Behavior
  • No progress indicator during compaction. The TUI is unchanged while the summarization call is in flight.
  • No completion line. Nothing reports tokens saved, before/after counts, or event count.
  • /compact produces no visible result, so there is no way to distinguish "compacted successfully" from "ignored my command".
Steps to reproduce the issue
  1. Start a session and build up a large context (or let it approach the limit).
  2. Run /compact (or wait for automatic compaction to trigger).
  3. Observe: nothing renders while compaction runs.
  4. Observe: nothing renders when it completes — no token counts, no confirmation.
Command Code Version

1.65.2

Operating System

macOS

Terminal/IDE

Ghostty

Shell

zsh

Session file (optional)

Not attached — the affected session contains private data (personal bookmarks and account context) and the template notes it holds the whole session. Happy to provide a redacted extract, or a minimal reproduction session, on request.

Fix prompt (optional)

Compaction currently renders nothing. Surface it in the feed. The harness already emits compaction_start and compaction_done (the latter with tokensSaved, only when > 0), and the session meta.json already carries {count, tokensSaved, lastTokensSaved, lastCompactedAt} — so this is a rendering change, not new instrumentation. On compaction_start, render a status/spinner line indicating history is being summarized. On compaction_done, replace it with a completed line showing tokens saved and the running session total. Make sure the manual /compact path renders the same result so the command visibly confirms what it did. If tokensSaved is 0 or the event doesn't arrive, fall back to a neutral "compaction finished" line rather than leaving the spinner up.

Additional context

Compaction is frequent and does substantial work, all of it invisible. Aggregated across the 10 sessions on this machine that have compacted:

Metric Value
Sessions with compaction 10
Total compaction events 33
Total tokens reclaimed 16,665,573

Largest single session: 9 events, 5,423,527 tokens reclaimed.

Affected session (this one):

// ~/.commandcode/projects/<project>/6672a74d-….meta.json
"compaction": {
  "count": 1,
  "tokensSaved": 351429,
  "lastTokensSaved": 351429,
  "lastCompactedAt": "2026-09-25T02:38:11.873Z"
}

That compaction saved 351,429 tokens (446,626 before → ≈95,197 after). The user-visible result of that was nothing.

The transcript records it as a first-class entry:

// <session>.jsonl — entry type "compaction"
{
  "type": "compaction",
  "id": "002d875a",
  "parentId": "8e7d9c82",
  "timestamp": "2026-09-25T02:38:11.871Z",
  "firstKeptEntryId": "bbf7600d",
  "tokensBefore": 446626
}

Entry-type counts in that transcript: message 429, session 1, compaction 1.

The events the harness emits (from the mods API reference):

compaction_start / compaction_done | compaction mod | tokensSaved (done, only when > 0)

(subagent_start/subagent_stop are SubagentStart/Stop; compaction_start/compaction_done are Pre/PostCompact; notice is Notification.)

So compaction_start and compaction_done are both available and compaction_done already carries tokensSaved.

Related gap — script hooks cannot see compaction. The documented hook events are PreToolUse, PostToolUse, Stop, and SessionStart. There is no PreCompact/PostCompact for settings.json hooks (the mods API has them, script hooks do not). That means users who want their own compaction indicator or log currently have no hook-level way to do it, which makes the built-in rendering the only route. Worth considering as a follow-up.

Note on the docs: product-help.md cites the project as https://github.com/commandcode/command-code, which 404s (the commandcode org has 0 public repos). The live repo is CommandCodeAI/command-code. Minor, but it is where the in-product /feedback flow points users.

Dominant language
No language data
Stars
4k
Forks
357
PR merge metrics
No merged PRs in 30d

Getting set up

This project ships no dev container, Dockerfile or contributing guide, so setting up is up to you: start from its README, and see our first-contribution guide for the general steps.

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from CommandCodeAI/command-code

All issues in CommandCodeAI/command-code

Similar issues

More CLI issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.