Skip to content

fix(opencode): accumulate step tokens instead of overwriting - #42326

Open
gold-beyond wants to merge 1 commit into
anomalyco:devfrom
gold-beyond:accumulate-step-tokens
Open

fix(opencode): accumulate step tokens instead of overwriting#42326
gold-beyond wants to merge 1 commit into
anomalyco:devfrom
gold-beyond:accumulate-step-tokens

Conversation

@gold-beyond

@gold-beyondgold-beyond commented Aug 13, 2026

Copy link
Copy Markdown

Issue for this PR

Closes#42324

Type of change

  • Bug fix
  • New feature
  • Refactor / code improvement
  • Documentation

What does this PR do?

In multi-step tool-call messages, processor.ts overwrites assistantMessage.tokens on every step-finish event, so only the last step's output, reasoning, and cache.write survive — while cost already accumulates with +=.

This change accumulates the additive fields (output, reasoning, cache.write) across steps. input and cache.read keep the final step's values, because the final step's request already includes all prior steps and accumulating those would double-count. total keeps the final step's value as before.

This fixes under-reported context metrics and delayed auto-compaction for multi-step messages.

How did you verify your code works?

  • Added a two-step test in packages/opencode/test/session/processor-effect.test.ts with distinct per-step usage, asserting the accumulated message tokens.
  • bun typecheck passes.
  • bun test --timeout 30000 test/session/processor-effect.test.ts passes (one pre-existing failure unrelated to this change, reproducible on clean dev).
  • bun test --timeout 30000 test/session/compaction.test.ts passes.

Screenshots / recordings

This is not a UI change.

Checklist

  • I have tested my changes locally
  • I have not included unrelated changes in this PR

Multi-step tool-call messages overwrite assistantMessage.tokens on
each step-finish, keeping only the last step's output, reasoning,
and cache.write. Accumulate those fields like cost already does, and
keep the final step's input and cache.read since its request already
includes all prior steps.
Fixesanomalyco#42324
@github-actionsgithub-actionsBot added needs:compliance This means the issue will auto-close after 2 hours. and removed needs:compliance This means the issue will auto-close after 2 hours. labels Aug 13, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Thanks for updating your PR! It now meets our contributing guidelines. 👍

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Multi-step tool calls overwrite token counts instead of accumulating (output, reasoning, cache.write lost)

1 participant

@gold-beyond