fix(agent-core-v2): don't record turn.steer when an unconsumed steer … - #3933
Merged
Merged
Conversation
…seeds the next turn
🦋 Changeset detectedLatest commit: c7cfc8b The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
commit: |
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
The targeted condition fixes duplicate transcript rendering and is covered by focused regression tests.
Review effort: Balanced
Findings: None
What changed in this PR
Prevents seeded post-cancellation prompts from being recorded as duplicate in-turn steer messages.
Changes:
- Suppresses redundant
turn.steerevents for prompts seeding a new turn. - Updates regression coverage and adds a CLI patch changeset.
| File | Description |
|---|---|
packages/agent-core-v2/src/agent/loop/loopService.ts |
Avoids redundant steer dispatch. |
packages/agent-core-v2/test/agent/prompt/promptService.test.ts |
Verifies correct event and message materialization behavior. |
.changeset/steer-seeded-turn-duplicate-message.md |
Documents the user-visible fix. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
sailist
approved these changes
Sep 19, 2026
Merged
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.
Related Issue
N/A — internal bug, reproduced from a live desktop session (no tracking issue).
Problem
When a user steers a message while the agent is running, and the running turn then ends before the steer is consumed (cancelled via Esc, or completed before the next step boundary), the unconsumed steered prompt seeds the next turn as its opening prompt. The engine recorded both
turn.prompt(the turn's opening) andturn.steer(steer consumption) for the same message, so the live transcript projected it twice — the chat showed the steered message as two identical user bubbles.The cold transcript rebuild already deduplicates this case (a message whose id opened a turn is not folded as a steer), so reloading the session showed a single bubble — confirming the
turn.steerrecord is spurious when the steered message itself opens the new turn.What changed
AgentLoopService.consumeDrainedNudges, skip dispatchingTurnSteerwhen the nudge being consumed is the message that opened the active turn (nudge.contextMessage.id === active.prompt.message.id). The message is still materialized into context exactly once; only the durableturn.steerrecord is no longer written for it.turn.steernow only fires when a steer is actually injected mid-turn into an already-running turn, which is the only case that needs a separate steer frame in the transcript. Live rendering then matches the cold rebuild: one user bubble (the turn's opening prompt).turn.steeris published and the message lands in context exactly once.turn.steer; they now assert on the materialized context message (merged content, FIFO client metadata, reserved message id), which is the more direct seam for what they guard.Checklist
/approve). — N/A, internal buggen-changesetsskill, or this PR needs no changeset.gen-docsskill, or this PR needs no doc update.