fix(session): keep cost monotonic across compaction#3663
Merged
Conversation
…ession # Conflicts: # pkg/runtime/runtime.go
…ession # Conflicts: # pkg/session/migrations.go # pkg/session/migrations_pinned_test.go # pkg/session/session.go
dgageot
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix session cost snapshots that can drop after compaction, for example from
$49to$12, when restored sub-session costs are replaced by a live root-only usage event.Root cause and behavior
OwnCost()replaces the restored total and can display a large dropTotalCost()is used globallyCompaction did not remove billed messages. It emitted the next token-usage snapshot, exposing the mismatch between restore-time
TotalCost()and liveOwnCost()accounting.Implementation
AddLiveSubSessionSessionUsagesession_items.costwith append-only migration023_add_cost_to_session_itemsSessionSummaryEvent,PersistenceObserver,Store.AddSummary, and the remote HTTP APIRegression coverage
Validation
task buildtask lintenv -u HTTP_PROXY -u HTTPS_PROXY -u ALL_PROXY -u http_proxy -u https_proxy -u all_proxy task testgo test -race -count=1 ./pkg/session ./pkg/runtime ./pkg/acp ./pkg/tui/components/sidebar ./pkg/leantui/...The latest full-suite run has one recording-proxy fixture failure in
TestExec_Anthropic_AgentsMd(requested interaction not found), reproduced unchanged onorigin/main; all other packages pass. A full suite on the same patch before the upstream recording fixture changed passed completely.