fix(quickjs): propagate JS task() subagent interrupts#4401
Open
Mason Daugherty (mdrxy) wants to merge 1 commit into
Open
fix(quickjs): propagate JS task() subagent interrupts#4401Mason Daugherty (mdrxy) wants to merge 1 commit into
task() subagent interrupts#4401Mason Daugherty (mdrxy) wants to merge 1 commit into
Conversation
task() subagent interruptstask() subagent interrupts
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.
QuickJS exposes a JavaScript
task()helper so an eval can fan out work to Deep Agents subagents, but that helper was not quite equivalent to the normaltasktool path. When a JS-launched subagent hit HITL, the nestedGraphInterruptwas caught and rendered as an eval error instead of reaching LangGraph’s normal interrupt machinery; the bridge also skipped the parent runtime config and child tool call id when invoking the underlying task tool.Changes
ToolRuntime.configand pass a synthetic childtool_call_idwhencall_subagent_task_toolinvokes the Deep Agents task tool. This keeps subagent dispatch closer to the normalToolNodepath, including config-driven behavior such as thread/run metadata and runtime context propagation.GraphInterruptbubble through both the subagent helper and the QuickJStask()bridge. Other validation/runtime failures are still wrapped as eval errors, but LangGraph interrupts remain control-flow signals rather than being converted into<error type="GraphInterrupt">....