feat(multi-subagent): record Turn-bound native child reports - #5052
Open
huangruiteng wants to merge 5 commits into
Open
huangruiteng wants to merge 5 commits into
huangruiteng wants to merge 5 commits into
Conversation
Signed-off-by: huangruiteng <14976749+huangruiteng@users.noreply.github.com>
Signed-off-by: huangruiteng <14976749+huangruiteng@users.noreply.github.com>
Signed-off-by: huangruiteng <14976749+huangruiteng@users.noreply.github.com>
Signed-off-by: huangruiteng <14976749+huangruiteng@users.noreply.github.com>
Signed-off-by: huangruiteng <14976749+huangruiteng@users.noreply.github.com>
This branch has not been deployed
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.
Problem and behavior
A Goal's
max_childrenand model preference did not show whether a host-native child was attempted, skipped, rejected for capacity, or adopted by the parent. This PR adds a provider-neutral, Turn-boundnative-child record/readcontract. It stores typed decision, result, and parent-review reports with a stable operation ID; duplicate reports are idempotent, conflicts are rejected, and capacity/host failures stop same-Turn spawn retries while parent work can continue.The shared read model keeps the configured ceiling separate from reported starts. Missing reports remain
unknown. Coordinator reports are explicitlycoordinator_reportedandhost_attested=false; they do not become authoritative host observations. Boundloopx delegationkeeps its existing authority.User entry points
agent-contextcan record or read the exact Turn's report. Goal status JSON and Markdown use the same projection.multi_subagentand a reported native decision. The existing configuration editor remains the configuration owner. Desktop/mobile and Chinese/English packaging were checked.Validation
smoke:home-browserrun stopped at its Files projection assertion before reaching this card's assertion. The focused native-child browser path passed; the broad failure's cause is not established here.Remaining boundary
This implements the generic reporting and readback substrate for #5051. LoopX cannot attest an arbitrary host-native tool call without a host integration. This PR does not add a Codex-specific adapter or claim host-observed receipts; keep #5051 open for adapter-backed attestation and end-to-end acceptance.