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
- Start a session and build up a large context (or let it approach the limit).
- Run
/compact (or wait for automatic compaction to trigger).
- Observe: nothing renders while compaction runs.
- 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.
Summary
Compaction runs with no visual feedback. Every stage of it is already recorded on disk — the
compaction_start/compaction_doneevents fire, the transcript gets acompactionentry, and the sessionmeta.jsongets 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
/compactdid anything at all.This affects both paths: manual
/compactand automatic compaction near the context limit.Expected Behavior
/compactis an explicit user action, so it should always confirm what it did.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
/compactproduces no visible result, so there is no way to distinguish "compacted successfully" from "ignored my command".Steps to reproduce the issue
/compact(or wait for automatic compaction to trigger).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_startandcompaction_done(the latter withtokensSaved, only when > 0), and the sessionmeta.jsonalready carries{count, tokensSaved, lastTokensSaved, lastCompactedAt}— so this is a rendering change, not new instrumentation. Oncompaction_start, render a status/spinner line indicating history is being summarized. Oncompaction_done, replace it with a completed line showing tokens saved and the running session total. Make sure the manual/compactpath renders the same result so the command visibly confirms what it did. IftokensSavedis 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:
Largest single session: 9 events, 5,423,527 tokens reclaimed.
Affected session (this one):
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:
Entry-type counts in that transcript:
message429,session1,compaction1.The events the harness emits (from the mods API reference):
So
compaction_startandcompaction_doneare both available andcompaction_donealready carriestokensSaved.Related gap — script hooks cannot see compaction. The documented hook events are
PreToolUse,PostToolUse,Stop, andSessionStart. There is noPreCompact/PostCompactforsettings.jsonhooks (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.mdcites the project ashttps://github.com/commandcode/command-code, which 404s (thecommandcodeorg has 0 public repos). The live repo isCommandCodeAI/command-code. Minor, but it is where the in-product/feedbackflow points users.