fix(ag-ui): graceful ACTIVITY_DELTA applyPatch + enforce assistant-role in subagent projection#694
Merged
Merged
Conversation
…le in subagent projection Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Two robustness hardening items flagged in the multi-message subagent-cards review (#692). The new structured JSON-Patch wire shape leans on index-correctness, so degrade gracefully.
reducer.tsACTIVITY_DELTA: wrapapplyPatchin try/catch — a malformed or out-of-order DELTA (e.g. areplace /messages/N/contentwhose index doesn't exist yet) now logs + drops the patch instead of throwing into theonEventsubscriber and breaking the stream.to-agent.tssubagent projection: hard-code projected transcript messages torole:'assistant'— the subagent transcript is exclusively assistant turns (tool calls live intoolCalls[]); this enforces the invariant the card relies on, so a buggy emitter puttingrole:'tool'inmessages[]can't double-render.Both TDD'd (confirmed fail→pass). ag-ui + chat lint/test green (859 tests).