refactor(mobile): checked reply readers for the session domain (step 7) (#21089)

* test(mobile): record main's session reply behaviour at every unrecorded read site

Step 7 for the session domain changes how 51 RPC readers read a *malformed*
reply. Eleven of the session read sites had no recording family, so main's
answer to a malformed reply at those sites was undocumented and the reader
change would have had nothing to move. This commit is the before picture, taken
from main's own tree with no product edit in it.

Ten new families, twelve scenarios, twenty-five goldens:

- `session.review-file-diff` / `session.review-branch-diff` — `git.diff` and
  `git.branchDiff` read through the review projection, which the Changes
  screen's verbatim readers do not cover.
- `session.review-git-mutations` — the single-file `git.stage` / `git.discard`
  and the bulk stage sweep's second `git.stage`.
- `session.review-send-sheet` — `session.tabs.list` read for the agent
  terminals the send sheet lists, the third reader on that method. Needs an
  `open-send-sheet` action on the review-action adapter, which re-digests that
  family's eight goldens on `adapterSha256` and nothing else.
- `session.browser-tab-create` — `browser.tabCreate`.
- `agentSession.structured-create` — `agentSession.create`, whose family base
  only ever covered the support probe.
- `session.tab-rename` / `session.tab-close-session` — `terminal.rename` and
  `session.tabs.close`.
- `settings.new-tab-local-agents` — `preflight.detectAgents`, the arm the
  new-tab loader takes for a workspace with no connection.

`baseline` is repinned to main's tip because two commits (#20659, #21004)
touched a fenced path after the pilot's pin, so `--record` refuses on main's own
tree until it moves. The repin is what rewrites `baseline` on all 705 existing
goldens; nothing else about them moves.

Decoded against origin/main through the value pool: 705 header-only (`baseline`
on every one, `adapterSha256` on the eight review-action goldens), 0 body-moved,
25 added, 0 deleted.

Not covered, with the reason: the chunked clipboard upload's
`appendImageUploadChunk`, `commitImageUpload` and `abortImageUpload` cannot be
matrixed, because `replyMatrixSites` takes every completion in the base scenario
and the chain's later params carry the `uploadId` the start reply named. Driving
`clipboard.startImageUpload#1` therefore makes main send an append whose params
no scripted step matches, and the recorder raises `Request params mismatch:
clipboard.appendImageUploadChunk#1` instead of recording. The two families were
written, probed and removed.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* refactor(mobile): checked reply readers for the session domain (step 7)

Fifty-one unchecked reply readers across nine files become checked zod readers,
so a malformed host reply surfaces as one readable error at the operation
boundary instead of a downstream `TypeError`, a rendered `undefined`, or a
screen left ready over garbage. Deliberately a behaviour change on malformed
replies only.

Eight schema modules, one per reply family, each recording the consumer line
behind every requirement and the host handler that publishes it:

- `clipboard-image-reply-schema.ts` — the upload slot's `uploadId`, the commit
  and single-frame path strings, and the two legs whose body nothing reads.
- `github-pr-mutation-reply-schema.ts` — the `{ ok, error }` status envelope as
  two variants, and the bare-boolean confirmation.
- `github-pr-entity-reply-schema.ts` / `github-pr-read-reply-schema.ts` — the
  seven PR sidebar reads. Every identity requirement the hand parsers had is
  kept, so a payload that degraded to null still degrades to null; what changes
  is a payload that is not the declared container at all.
- `diff-review-reply-schema.ts` — the normalized branch compare, the review
  notes on the worktree record, the three file-diff arms, and the file-level git
  mutations.
- `review-terminal-reply-schema.ts`, `session-launch-reply-schema.ts`,
  `session-read-reply-schema.ts`, `session-write-reply-schema.ts` — the review
  send sheet, the launch paths, the session screen's reads and its writes.

Requirements are exactly the members a consumer reads unguarded, everything else
is a salvaged optional with main's own default applied in the transform, and no
schema is `.strict()`: a member a newer host adds passes through untouched.
Enum arm sets that a reader compares against pass through or degrade to the arm
the reader handles most conservatively; the two closed sets — the committed
change status and the diff kind — are closed because main *dropped* an arm it
did not know rather than passing it through, and degrading them would draw a row
or render a diff main never did. No member is coerced on the way back to the
host.

`github-pr-parsers.ts`, `github-pr-comment-parsers.ts` and
`github-pr-value-readers.ts` are gone; their suite is now the parity record for
the schemas that replaced them, with the four cases that refuse rather than
degrade marked as such. Twelve call-site casts are deleted, and three dead
"response was invalid" branches with them: the reader refuses those replies now,
so the error names its method.

The nine session files come off `unchecked-rpc-reader-inventory.ts` entirely
rather than being lowered. `git show --stat` on this commit touches nothing
under `mobile/rpc-foundation`.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): unit-pin every session reply schema's decision

Three kinds of case, one per kind of decision the schemas encode: a member a
consumer reads unguarded is required and its absence refuses, an arm set a
reader compares against degrades to the arm that reader handles most
conservatively, and a reply whose arms need different members is declared as
variants and each arm is read.

The last suite is the wire-compatibility claim: a member no reader knows passes
straight through, on the markdown document, the upload slot and the terminal
inventory alike, so a newer host is never refused for a field mobile does not
read.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): refresh the corpus for the session domain's checked readers

Repins `baseline` to the last commit touching a fenced path and re-records all
730 goldens, which is the disclosed behaviour change taken as an observation.

Decoded through the value pool against the pre-refactor tree on this branch:
688 header-only with `baseline` the only key that moved, 42 body-moved, 0 added,
0 deleted. The 42 are seven named scenarios and thirty-five matrix goldens, and
every moved checkpoint's own reply is malformed or refused. Three `normal`
partitions appear in the list and none of them reads a well-formed reply
differently: the review file-diff family's base scenario drives three legs and
its third is scripted `{ kind: 'unknown' }`, so that leg's checkpoint moves in
every variant, the varied leg included. The same append-only-history effect puts
`pr-read-upstream-error`'s `no-pr` checkpoint in the list for the malformed PR
recorded before it.

What the corpus now records, in one sentence: a property read on null, a V8
destructuring message shown to the user, and four hand-written "response was
invalid" strings are replaced by one message that names the method, and four
screens that published a malformed payload as ready state now show an error
instead.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* refactor(mobile): split the expanded check run out of the PR read schemas

`github-pr-read-reply-schema.ts` was 328 code lines against the 300-line cap.
The expanded check run and the annotations, jobs and steps listed under it are
one reply with no reader in common with the other six, so they move to
`github-pr-check-reply-schema.ts` whole. A move, not an edit: no schema changes
and no golden moves.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): repin the corpus to the branch's last fenced-path commit

The schema-module split touched `mobile/src`, so `--record` refuses on the pin
the previous refresh left behind. Repins to that commit and re-records. Decoded
against the previous corpus: 730 header-only with `baseline` the only key that
moved, 0 body-moved, 0 added, 0 deleted — the split is a move, and the corpus
says so.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* refactor(mobile): drop the worktree display-name cast's type import

The live-title read is typed by its schema now, so the cast it annotated is gone
and the import it needed with it. oxlint flags the leftover.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): repin the corpus to the branch tip

The unused-import removal touched a fenced path, so the pin moves with it.
Decoded against the previous corpus: 730 header-only on `baseline` alone,
0 body-moved, 0 added, 0 deleted.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* fix(mobile): contain a refused prChecks reply to the checks section

The checks read was the one phase-1 dependency that could take the whole PR
sidebar down. `loadPrSidebarData` routed `!checksOutcome.ok` through
`failureState`, so a host whose `github.prChecks` shape drifted cost the user
the title, body, comments, reviewers and merge controls — everything they
opened the sidebar for — over a section that renders a row of icons. Main
never noticed because its unchecked reader answered `[]` for the same reply;
this branch's reader refuses it, which is correct, and which is what makes the
containment necessary.

Contained the way phase 2 already is: a failed read keeps `kind: 'ready'`,
empties `checks`, and carries the message in a new `checksError` so the checks
section can say what happened. The sidebar can no longer reach `error` or
`blocked` on the checks read alone.

Also pins the enum departure this PR makes deliberately. The degrading arm
sets go through `salvagedOptional(name, z.enum(...))` rather than `openEnum`
because `openEnum` refuses a non-string where main mapped it to the
conservative arm; nothing held that, and all 2477 tests stayed green against
the swap. Six cases now hold both halves: a non-string degrades on the three
open sets, and an unknown arm drops the row on the closed ones.

Four deletions the reviewer found: a reaction-token alias with no importers,
the `errorType`/`fetchedAt` the branch-lookup reader fabricated to satisfy a
type whose only consumer reads neither, two bare schema aliases, and a
quick-commands pass-through with two callers.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): repin the corpus to the containment commit

`--record` refuses unless the product tree equals `baseline`, so the fix above
moves the pin. The corpus re-recorded in place against it: 730 goldens, every
one header-only on `baseline`, no observation moved.

No observation moved because no family reaches the code the fix changed. The
`github.pr-read` family calls the seven wrapper reads directly and records
their `{ ok, error }` outcomes; `loadPrSidebarData` sits a layer above that and
no scenario mounts it. The prChecks outcome is identical before and after —
what changed is what the sidebar does with it — so the unit suite is the only
oracle for the containment.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): record the PR sidebar's checks containment

The containment landed with no golden: no scenario mounted `loadPrSidebarData`,
so the row in the delta table rested on unit tests alone. `PrSidebarLoadDeps` is
five client-taking functions, so a new adapter drives phase 1 directly and
records the `PrSidebarState` it resolves to — no React host, and no edit to an
existing adapter, so no recorded golden moves.

Two scenarios: a normal load, and one whose checks leg answers a shape the
reader refuses. The matrix over the base then drives all eleven partitions at
`github.prChecks#1`, and every one of them records `ready` with a `checksError`
where main took the whole sidebar to `error`. `pr-sidebar-checks-failure-state`
is the mutant that routes the refusal back through `failureState`; it moves both
`pr-sidebar-checks-refused` and the prChecks matrix golden.

Also pins two closed-and-required enum decisions that were free to become
defaults — an unknown check-summary state drops the summary block, an unknown
reaction content drops the reaction — deletes four exported type aliases and
five enum constants with no reader outside their own file, makes
`PRChecksSection`'s `checksError` required so a second caller cannot silently
lose the message, and stops the header reading "No checks" when the checks were
unreadable rather than absent.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): repin the corpus to the pr-sidebar family commit

Six new goldens — two pilots and the four matrix sites the base scenario
scripts — and `baseline` on the 730 that already existed. No body moved and no
`adapterSha256`: the family is a new adapter module, so nothing recorded through
another one re-digests.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): re-record the corpus against the merged main

Repins `baseline` to the merge commit and re-records all 736 goldens in
place. Against `origin/main` the 705 shared goldens move only on
`baseline` (672 of them header-only), leaving the same 33 body moves and
the same partitions the branch carried before the merge, plus its 31
added goldens.

Every body also takes main's recorder shape from #21088: `sent` becomes
`ordinal` over one interleaved write counter, subscriptions record a
cleanup checkpoint, and a salvaging read now reports a `reply-salvage`
effect naming what it dropped.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* fix(mobile): keep an explicit null on the two tri-state PR flags

`autoMergeAllowed` and `mergeQueueRequired` carry three answers, not two:
`null` is GitHub saying auto-merge is not allowed, `undefined` is the host
not carrying the member at all. The readers coalesced the null away, so a
well-formed reply read differently from the parsers they replaced, which
preserved it explicitly. Both shared types already declare `boolean | null`.

No consumer separates the two today — `pull-request-auto-merge-availability`
compares with `=== true` and `!== false` — so this is parity, not a visible
fix, which is exactly why it needed a test.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): repin the corpus to the tri-state flag commit

All 736 goldens move on `baseline` alone: no scenario scripts an explicit
null on either flag, so preserving it changes no recorded screen.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* refactor(mobile): check the two session-write readers #21083 brought

Step 7 empties the session block of the unchecked-reader inventory, and
#21083 landed two readers into it after that: the New Tab create's member
read of `tab`, and the display-mode toggle's payload. Converting them is
what keeps the claim true — a session line reappearing would mean the
domain is not migrated.

`created-terminal-tab` requires `tab.id` and `tab.type === 'terminal'`,
because the strip keys the new tab on the id and spreads the rest into a
union whose arm `type` picks. `terminal`, `title` and `terminalTheme` stay
optional behind main's own guards, and unknown members pass through.
`terminal-display-mode-set` reads nothing, so it takes the same
`z.unknown()` the other five unread writes take.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): repin and re-record over #21083's corpus

All 736 goldens this branch already had move on `baseline` alone, and
#21083's 22 arrive beside them. One of the 22 moves against main's own
recording: `matrix-session.create-terminal-session.tabs.createterminal-1`,
where the New Tab create's five malformed partitions read
`Cannot read properties of undefined (reading 'tab')` and now read the
method's own message. Two of them also stop unsubscribing the terminal the
user was watching before the property read threw, so a create that never
happened no longer costs the live pane its subscription.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* docs(mobile): say what carries a refused create reply to the catch

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
This commit is contained in:
Jinwoo Hong
2026-09-16 21:24:31 -04:00
committed by GitHub
parent 7f5141ae2d
commit 4b876758d3
819 changed files with 28247 additions and 4382 deletions
@@ -3,7 +3,7 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
@@ -3,7 +3,7 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
@@ -3,7 +3,7 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
@@ -3,7 +3,7 @@
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
@@ -3,7 +3,7 @@
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -18,20 +18,20 @@
"ordinal": 2,
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}"
},
"432332c9740e": {
"failure": "Created terminal response was invalid",
"launched": "unlaunched"
},
"681fc4d59b92": {
"478ad4afe83e": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Created terminal response was invalid",
"message": "The host sent a reply this app could not read (session.tabs.createTerminal)",
"isRpcDeliveryUnknown": false
}
},
"84a5c9365ee8": {
"failure": "The host sent a reply this app could not read (session.tabs.createTerminal)",
"launched": "unlaunched"
},
"8de69c55b96f": {
"name": "session.tabs.createTerminal#1",
"ordinal": 1,
@@ -87,9 +87,9 @@
"sender": ["8de69c55b96f"],
"payloads": ["0bce25f5646d"],
"settlements": {
"full": "681fc4d59b92"
"full": "478ad4afe83e"
},
"state": "432332c9740e",
"state": "84a5c9365ee8",
"effects": []
}
}
@@ -3,7 +3,7 @@
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
+1 -1
View File
@@ -3,7 +3,7 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
+1 -1
View File
@@ -3,7 +3,7 @@
"family": "project-explicit-false",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
+1 -1
View File
@@ -3,7 +3,7 @@
"family": "linear-detail-barrier",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
@@ -3,7 +3,7 @@
"family": "browser.dialog",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.dialog",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.keyboard",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.wheel",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -3,7 +3,7 @@
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
@@ -3,7 +3,7 @@
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
@@ -3,7 +3,7 @@
"family": "components.codex-reset-capability",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
@@ -3,7 +3,7 @@
"family": "components.setup-script",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
@@ -3,7 +3,7 @@
"family": "components.execution-target-local",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
@@ -3,7 +3,7 @@
"family": "components.execution-target",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -13,17 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"229fc359ecb7": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": "Committed changes response was invalid",
"result": {
"$rpc": "null"
}
}
},
"284ce622e74a": {
"name": "worktree.show#2",
"ordinal": 7,
@@ -61,6 +50,16 @@
}
}
},
"347ad3543d28": {
"branchCompare": {
"error": "The host sent a reply this app could not read (git.branchCompare)",
"result": {
"$rpc": "null"
}
},
"diff": "unloaded",
"snapshot": "unloaded"
},
"412402e093cc": {
"name": "git.branchCompare#2",
"ordinal": 12,
@@ -180,6 +179,17 @@
}
}
},
"75328af2b182": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": "The host sent a reply this app could not read (git.branchCompare)",
"result": {
"$rpc": "null"
}
}
},
"80d0ff3c81e8": {
"name": "worktree.show#1",
"ordinal": 3,
@@ -231,16 +241,6 @@
"diff": "unloaded",
"snapshot": "unloaded"
},
"a3e1aa9bf7e3": {
"branchCompare": {
"error": "Committed changes response was invalid",
"result": {
"$rpc": "null"
}
},
"diff": "unloaded",
"snapshot": "unloaded"
},
"ca8f7f7c9891": {
"name": "repo.list#2",
"ordinal": 10,
@@ -344,9 +344,9 @@
],
"settlements": {
"unavailable": "ef9013648cfb",
"invalid": "229fc359ecb7"
"invalid": "75328af2b182"
},
"state": "a3e1aa9bf7e3",
"state": "347ad3543d28",
"effects": []
}
}
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -3,7 +3,7 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
@@ -132,16 +132,6 @@
}
}
},
"55227363ca22": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Diff response was invalid",
"isRpcDeliveryUnknown": false
}
},
"717bd1fbc163": {
"branchCompare": "unloaded",
"diff": {
@@ -151,6 +141,16 @@
},
"snapshot": "unloaded"
},
"7753343578da": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "The host sent a reply this app could not read (git.diff)",
"isRpcDeliveryUnknown": false
}
},
"84090dfad90d": {
"status": "fulfilled",
"startedAt": 0,
@@ -220,7 +220,7 @@
"settlements": {
"binary": "84090dfad90d",
"too-large": "8675e0f40158",
"invalid": "55227363ca22"
"invalid": "7753343578da"
},
"state": "717bd1fbc163",
"effects": []
@@ -3,7 +3,7 @@
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
@@ -3,7 +3,7 @@
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
@@ -3,7 +3,7 @@
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
@@ -3,7 +3,7 @@
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
@@ -3,7 +3,7 @@
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
@@ -3,7 +3,7 @@
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c",
@@ -3,7 +3,7 @@
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c",
@@ -3,7 +3,7 @@
"family": "files.mutation-ownership",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.mutation-ownership",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-save",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.preview-save",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "files.tab-doc",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
@@ -3,7 +3,7 @@
"family": "home.host-accounts",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a",
@@ -3,7 +3,7 @@
"family": "home.host-stats",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
@@ -3,7 +3,7 @@
"family": "host.view-settings",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
@@ -3,7 +3,7 @@
"family": "host.worktree-actions",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
@@ -3,7 +3,7 @@
"family": "host.worktree-actions",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
@@ -3,7 +3,7 @@
"family": "host-worktree-refresh",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
@@ -3,7 +3,7 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
@@ -3,7 +3,7 @@
"family": "settings.bot-overrides",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
@@ -3,7 +3,7 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
@@ -3,7 +3,7 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
@@ -3,7 +3,7 @@
"family": "linear-detail-barrier",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
@@ -3,7 +3,7 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
@@ -3,7 +3,7 @@
"family": "settings.bot-overrides",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
@@ -3,7 +3,7 @@
"family": "settings.task-hydration",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
@@ -3,7 +3,7 @@
"family": "settings.workspace-context",
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
@@ -3,7 +3,7 @@
"family": "linear.select-workspace-picker",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f",
@@ -3,7 +3,7 @@
"family": "live-worktree-name",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
@@ -0,0 +1,794 @@
{
"operation": "agentSession.structured-launch",
"family": "agentSession.structured-create",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "81ed7c1a4276cf1d891334c64c06362b88b5f9690b3ebae6d0988559b1faab0f",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"001cba249e32": {
"name": "agentSession.create#2",
"ordinal": 5,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"00c4403a6cae": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true
}
}
},
"052339a099eb": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"05c8ed108777": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unknown",
"message": "The Claude chat result could not be confirmed."
}
},
"122f5b326dbb": {
"launched": {
"kind": "failed",
"message": "Unknown method"
}
},
"18bdbb57da23": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unknown",
"message": "outer refused"
}
},
"3ce787e7eb26": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"3e8a38dc3ecb": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-2",
"ok": false
}
}
},
"568aa5cfc6b5": {
"name": "agentSession.createSupport#1",
"ordinal": 2,
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}"
},
"5d0f7c315752": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-2",
"ok": false
}
}
},
"616f0f78cd71": {
"launched": {
"kind": "unknown",
"message": "outer refused"
}
},
"6d6669cd1a85": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "created",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
}
},
"73bdf299262b": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "failed",
"message": "Unknown method"
}
},
"7903f6b6f8fd": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-2",
"ok": false
}
}
},
"907c2954b0e2": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"91f56e5d551d": {
"name": "agentSession.create#1",
"ordinal": 4,
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}"
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"95e3678a4ba5": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"9e17c54fa815": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"a4273b38df83": {
"launched": "unlaunched"
},
"a75955abbbbc": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"supported": true
}
}
}
},
"b5f7cf9d778d": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"ok": true,
"value": {
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
}
}
}
}
},
"c4b8d1feb09b": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"d00057b53c3e": {
"launched": {
"kind": "created",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
}
},
"f931c8ee446a": {
"launched": {
"kind": "unknown",
"message": "The Claude chat result could not be confirmed."
}
},
"fdff1e265b45": {
"name": "agentSession.create#2",
"ordinal": 6,
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}"
}
},
"recording": {
"scenario": "matrix-agentsession.structured-create-agentsession.create-1",
"checkpoints": [
{
"id": "structured-agent-session-created.normal:created",
"observation": {
"sender": ["a75955abbbbc", "b5f7cf9d778d"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "6d6669cd1a85"
},
"state": "d00057b53c3e",
"effects": []
}
},
{
"id": "structured-agent-session-created.result-absent:created",
"observation": {
"sender": ["a75955abbbbc", "00c4403a6cae"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "05c8ed108777"
},
"state": "f931c8ee446a",
"effects": []
}
},
{
"id": "structured-agent-session-created.result-null:created",
"observation": {
"sender": ["a75955abbbbc", "9e17c54fa815"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "05c8ed108777"
},
"state": "f931c8ee446a",
"effects": []
}
},
{
"id": "structured-agent-session-created.inner-ok-missing:created",
"observation": {
"sender": ["a75955abbbbc", "907c2954b0e2"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "05c8ed108777"
},
"state": "f931c8ee446a",
"effects": []
}
},
{
"id": "structured-agent-session-created.inner-false-string-error:created",
"observation": {
"sender": ["a75955abbbbc", "c4b8d1feb09b"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "05c8ed108777"
},
"state": "f931c8ee446a",
"effects": []
}
},
{
"id": "structured-agent-session-created.inner-false-object-error:created",
"observation": {
"sender": ["a75955abbbbc", "052339a099eb"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "05c8ed108777"
},
"state": "f931c8ee446a",
"effects": []
}
},
{
"id": "structured-agent-session-created.outer-refused:created",
"observation": {
"sender": ["a75955abbbbc", "7903f6b6f8fd"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "18bdbb57da23"
},
"state": "616f0f78cd71",
"effects": []
}
},
{
"id": "structured-agent-session-created.outer-refused-no-message:created",
"observation": {
"sender": ["a75955abbbbc", "5d0f7c315752"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "05c8ed108777"
},
"state": "f931c8ee446a",
"effects": []
}
},
{
"id": "structured-agent-session-created.method-not-found:created",
"observation": {
"sender": ["a75955abbbbc", "3e8a38dc3ecb"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "73bdf299262b"
},
"state": "122f5b326dbb",
"effects": []
}
},
{
"id": "structured-agent-session-created.transport-rejection:created",
"observation": {
"sender": ["a75955abbbbc", "95e3678a4ba5", "001cba249e32"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d", "fdff1e265b45"],
"settlements": {
"claude": "9270aeb7d9c6"
},
"state": "a4273b38df83",
"effects": []
}
},
{
"id": "structured-agent-session-created.transport-rejection-no-message:created",
"observation": {
"sender": ["a75955abbbbc", "3ce787e7eb26", "001cba249e32"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d", "fdff1e265b45"],
"settlements": {
"claude": "9270aeb7d9c6"
},
"state": "a4273b38df83",
"effects": []
}
}
]
}
}
@@ -0,0 +1,643 @@
{
"operation": "agentSession.structured-launch",
"family": "agentSession.structured-create",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "eed54b1c4c77eec4b411d8daa197b20c8cfb4b86ac2d01f1d7ee2de23c27dff8",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"04f63acf891a": {
"launched": {
"kind": "unsupported",
"reason": {
"$rpc": "undefined"
}
}
},
"0dd78669f08d": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-1",
"ok": false
}
}
},
"1554c780f755": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"25ff00540c46": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"27cc7a2b58c9": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"2c227fd1941f": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unsupported"
}
},
"553200ba8c0f": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-1",
"ok": false
}
}
},
"568aa5cfc6b5": {
"name": "agentSession.createSupport#1",
"ordinal": 2,
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}"
},
"6d6669cd1a85": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "created",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
}
},
"8201501565d9": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"91f56e5d551d": {
"name": "agentSession.create#1",
"ordinal": 4,
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}"
},
"a4da7b5347e4": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"a75955abbbbc": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"supported": true
}
}
}
},
"b5f7cf9d778d": {
"name": "agentSession.create#1",
"ordinal": 3,
"args": [
{
"name": "method",
"value": "agentSession.create"
},
{
"name": "params",
"value": {
"agent": "claude",
"envelope": {
"clientOperationId": "1767225600000-00000000000040008000000000000002",
"expectedRuntimeFence": {
"$rpc": "null"
},
"payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
},
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"budgetSpansConnect": true,
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"ok": true,
"value": {
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
}
}
}
}
},
"be9e3b9ce2e7": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true
}
}
},
"d00057b53c3e": {
"launched": {
"kind": "created",
"sessionId": "claude_00000000_0000_4000_8000_000000000001"
}
},
"da841ebfb6b9": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"efee3e1e1620": {
"name": "agentSession.createSupport#1",
"ordinal": 1,
"args": [
{
"name": "method",
"value": "agentSession.createSupport"
},
{
"name": "params",
"value": {
"agent": "claude",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"f0bb9de9827c": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unsupported",
"reason": {
"$rpc": "undefined"
}
}
},
"f40adca316f9": {
"launched": {
"kind": "unsupported"
}
}
},
"recording": {
"scenario": "matrix-agentsession.structured-create-agentsession.createsupport-1",
"checkpoints": [
{
"id": "structured-agent-session-created.normal:created",
"observation": {
"sender": ["a75955abbbbc", "b5f7cf9d778d"],
"payloads": ["568aa5cfc6b5", "91f56e5d551d"],
"settlements": {
"claude": "6d6669cd1a85"
},
"state": "d00057b53c3e",
"effects": []
}
},
{
"id": "structured-agent-session-created.result-absent:created",
"observation": {
"sender": ["be9e3b9ce2e7"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-agent-session-created.result-null:created",
"observation": {
"sender": ["8201501565d9"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-agent-session-created.inner-ok-missing:created",
"observation": {
"sender": ["25ff00540c46"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-agent-session-created.inner-false-string-error:created",
"observation": {
"sender": ["1554c780f755"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-agent-session-created.inner-false-object-error:created",
"observation": {
"sender": ["27cc7a2b58c9"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-agent-session-created.outer-refused:created",
"observation": {
"sender": ["553200ba8c0f"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-agent-session-created.outer-refused-no-message:created",
"observation": {
"sender": ["0dd78669f08d"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-agent-session-created.method-not-found:created",
"observation": {
"sender": ["efee3e1e1620"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-agent-session-created.transport-rejection:created",
"observation": {
"sender": ["da841ebfb6b9"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-agent-session-created.transport-rejection-no-message:created",
"observation": {
"sender": ["a4da7b5347e4"],
"payloads": ["568aa5cfc6b5"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
}
]
}
}
@@ -3,7 +3,7 @@
"family": "agentSession.structured-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
@@ -3,7 +3,7 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
@@ -3,7 +3,7 @@
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
@@ -3,7 +3,7 @@
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
@@ -3,7 +3,7 @@
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
@@ -3,7 +3,7 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
@@ -3,7 +3,7 @@
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -92,10 +92,6 @@
}
}
},
"432332c9740e": {
"failure": "Created terminal response was invalid",
"launched": "unlaunched"
},
"4593130c572f": {
"name": "session.tabs.createTerminal#1",
"ordinal": 1,
@@ -184,6 +180,16 @@
}
}
},
"478ad4afe83e": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "The host sent a reply this app could not read (session.tabs.createTerminal)",
"isRpcDeliveryUnknown": false
}
},
"53623411feb6": {
"name": "session.tabs.createTerminal#1",
"ordinal": 1,
@@ -232,16 +238,6 @@
"failure": "Unknown method",
"launched": "unlaunched"
},
"681fc4d59b92": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Created terminal response was invalid",
"isRpcDeliveryUnknown": false
}
},
"6e79da536ca9": {
"status": "fulfilled",
"startedAt": 0,
@@ -298,6 +294,10 @@
}
}
},
"84a5c9365ee8": {
"failure": "The host sent a reply this app could not read (session.tabs.createTerminal)",
"launched": "unlaunched"
},
"919c7f3e8c27": {
"name": "session.tabs.createTerminal#1",
"ordinal": 1,
@@ -665,9 +665,9 @@
"sender": ["41a658e859b8"],
"payloads": ["0bce25f5646d"],
"settlements": {
"full": "681fc4d59b92"
"full": "478ad4afe83e"
},
"state": "432332c9740e",
"state": "84a5c9365ee8",
"effects": []
}
},
@@ -677,9 +677,9 @@
"sender": ["b0e4a76fd545"],
"payloads": ["0bce25f5646d"],
"settlements": {
"full": "681fc4d59b92"
"full": "478ad4afe83e"
},
"state": "432332c9740e",
"state": "84a5c9365ee8",
"effects": []
}
},
@@ -689,9 +689,9 @@
"sender": ["f0411f7ef116"],
"payloads": ["0bce25f5646d"],
"settlements": {
"full": "681fc4d59b92"
"full": "478ad4afe83e"
},
"state": "432332c9740e",
"state": "84a5c9365ee8",
"effects": []
}
},
@@ -701,9 +701,9 @@
"sender": ["4593130c572f"],
"payloads": ["0bce25f5646d"],
"settlements": {
"full": "681fc4d59b92"
"full": "478ad4afe83e"
},
"state": "432332c9740e",
"state": "84a5c9365ee8",
"effects": []
}
},
@@ -713,9 +713,9 @@
"sender": ["919c7f3e8c27"],
"payloads": ["0bce25f5646d"],
"settlements": {
"full": "681fc4d59b92"
"full": "478ad4afe83e"
},
"state": "432332c9740e",
"state": "84a5c9365ee8",
"effects": []
}
},
@@ -3,7 +3,7 @@
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -18,6 +18,16 @@
"ordinal": 2,
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}"
},
"1953443d1eef": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "The host sent a reply this app could not read (terminal.send)",
"isRpcDeliveryUnknown": false
}
},
"21981de13ba2": {
"name": "terminal.send#1",
"ordinal": 3,
@@ -311,6 +321,10 @@
"isRpcDeliveryUnknown": true
}
},
"aae8857ab586": {
"failure": "The host sent a reply this app could not read (terminal.send)",
"launched": "unlaunched"
},
"aaec35c3c986": {
"name": "terminal.send#1",
"ordinal": 3,
@@ -581,9 +595,9 @@
"sender": ["a67829619e64", "f4b97a58af06"],
"payloads": ["0bce25f5646d", "7d9e7036f3d0"],
"settlements": {
"full": "6e79da536ca9"
"full": "1953443d1eef"
},
"state": "400d946a183d",
"state": "aae8857ab586",
"effects": []
}
},
@@ -593,9 +607,9 @@
"sender": ["a67829619e64", "96a8247b729c"],
"payloads": ["0bce25f5646d", "7d9e7036f3d0"],
"settlements": {
"full": "6e79da536ca9"
"full": "1953443d1eef"
},
"state": "400d946a183d",
"state": "aae8857ab586",
"effects": []
}
},
@@ -3,7 +3,7 @@
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
@@ -3,7 +3,7 @@
"family": "browser.dialog",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.keyboard",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.keyboard",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.wheel",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "browser.wheel",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
@@ -3,7 +3,7 @@
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -95,16 +95,6 @@
}
}
},
"2360f0a18466": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "TypeError",
"message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null.",
"isRpcDeliveryUnknown": false
}
},
"32a7c0ae7918": {
"status": "rejected",
"startedAt": 0,
@@ -151,15 +141,9 @@
}
}
},
"443dd7aae7aa": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "TypeError",
"message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined.",
"isRpcDeliveryUnknown": false
}
"425f01ad5f1a": {
"attached": "unattached",
"failure": "The host sent a reply this app could not read (clipboard.startImageUpload)"
},
"5573fed479c2": {
"attached": "unattached",
@@ -313,10 +297,6 @@
"attached": "unattached",
"failure": ""
},
"8de120313755": {
"attached": "unattached",
"failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined."
},
"8e050dc4db92": {
"name": "clipboard.startImageUpload#1",
"ordinal": 2,
@@ -356,10 +336,6 @@
"status": "pending",
"startedAt": 0
},
"934346926f7a": {
"attached": "unattached",
"failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null."
},
"994fccf9b305": {
"name": "upload-start",
"ordinal": 1,
@@ -380,39 +356,15 @@
"isRpcDeliveryUnknown": true
}
},
"aa2ba6a08e8b": {
"name": "clipboard.appendImageUploadChunk#1",
"ordinal": 5,
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}"
},
"ab55a4eae105": {
"name": "clipboard.appendImageUploadChunk#1",
"ordinal": 4,
"args": [
{
"name": "method",
"value": "clipboard.appendImageUploadChunk"
},
{
"name": "params",
"value": {
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"offset": 0,
"uploadId": {
"$rpc": "undefined"
}
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
"bf4d693e3e27": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "RpcIncompatibleReplyError",
"message": "The host sent a reply this app could not read (clipboard.startImageUpload)",
"isRpcDeliveryUnknown": false,
"code": "incompatible_reply"
}
},
"c7584e82c72f": {
@@ -620,9 +572,9 @@
"sender": ["cd37c121c1fd"],
"payloads": ["6696a47819e1"],
"settlements": {
"normal": "443dd7aae7aa"
"normal": "bf4d693e3e27"
},
"state": "8de120313755",
"state": "425f01ad5f1a",
"effects": ["994fccf9b305"]
}
},
@@ -632,45 +584,45 @@
"sender": ["d7fc074e6b40"],
"payloads": ["6696a47819e1"],
"settlements": {
"normal": "2360f0a18466"
"normal": "bf4d693e3e27"
},
"state": "934346926f7a",
"state": "425f01ad5f1a",
"effects": ["994fccf9b305"]
}
},
{
"id": "clipboard-image-attachment-upload-refused.inner-ok-missing:upload-refused",
"observation": {
"sender": ["8e050dc4db92", "ab55a4eae105"],
"payloads": ["6696a47819e1", "aa2ba6a08e8b"],
"sender": ["8e050dc4db92"],
"payloads": ["6696a47819e1"],
"settlements": {
"normal": "9270aeb7d9c6"
"normal": "bf4d693e3e27"
},
"state": "5573fed479c2",
"state": "425f01ad5f1a",
"effects": ["994fccf9b305"]
}
},
{
"id": "clipboard-image-attachment-upload-refused.inner-false-string-error:upload-refused",
"observation": {
"sender": ["7a79daaa2290", "ab55a4eae105"],
"payloads": ["6696a47819e1", "aa2ba6a08e8b"],
"sender": ["7a79daaa2290"],
"payloads": ["6696a47819e1"],
"settlements": {
"normal": "9270aeb7d9c6"
"normal": "bf4d693e3e27"
},
"state": "5573fed479c2",
"state": "425f01ad5f1a",
"effects": ["994fccf9b305"]
}
},
{
"id": "clipboard-image-attachment-upload-refused.inner-false-object-error:upload-refused",
"observation": {
"sender": ["23326ee9349f", "ab55a4eae105"],
"payloads": ["6696a47819e1", "aa2ba6a08e8b"],
"sender": ["23326ee9349f"],
"payloads": ["6696a47819e1"],
"settlements": {
"normal": "9270aeb7d9c6"
"normal": "bf4d693e3e27"
},
"state": "5573fed479c2",
"state": "425f01ad5f1a",
"effects": ["994fccf9b305"]
}
},
@@ -3,7 +3,7 @@
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "9add08bb5943144f5fb0178ab628cdfebe99c22a",
"baseline": "ccd228af24db04c0ea70d7a73702a5e05f970753",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
@@ -84,42 +84,6 @@
}
}
},
"0886378046b0": {
"failure": {
"$rpc": "null"
},
"path": {
"$rpc": "undefined"
}
},
"2565f3b22472": {
"failure": {
"$rpc": "null"
},
"path": {
"error": "inner refused",
"ok": false
}
},
"2c021902d01b": {
"failure": {
"$rpc": "null"
},
"path": {
"error": {
"message": "inner refused"
},
"ok": false
}
},
"301151228fa3": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": "refused"
}
},
"32a7c0ae7918": {
"status": "rejected",
"startedAt": 0,
@@ -311,6 +275,17 @@
"failure": "",
"path": "unsaved"
},
"67b442005898": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "RpcIncompatibleReplyError",
"message": "The host sent a reply this app could not read (clipboard.saveImageAsTempFile)",
"isRpcDeliveryUnknown": false,
"code": "incompatible_reply"
}
},
"7a9387a4c64a": {
"failure": "transport failure",
"path": "unsaved"
@@ -397,23 +372,6 @@
},
"path": "/tmp/legacy.png"
},
"927229706f96": {
"failure": {
"$rpc": "null"
},
"path": {
"error": "refused"
}
},
"9f00dd54ba64": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": "inner refused",
"ok": false
}
},
"a947768bc0ed": {
"status": "rejected",
"startedAt": 0,
@@ -424,25 +382,6 @@
"isRpcDeliveryUnknown": true
}
},
"ad8a954e879d": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"message": "inner refused"
},
"ok": false
}
},
"afb22d946687": {
"failure": {
"$rpc": "null"
},
"path": {
"$rpc": "null"
}
},
"b948e8307e81": {
"status": "rejected",
"startedAt": 0,
@@ -510,22 +449,6 @@
}
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"ee20a1dc39e7": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "null"
}
},
"f100a8a8f589": {
"name": "clipboard.saveImageAsTempFile#1",
"ordinal": 3,
@@ -607,6 +530,10 @@
"ok": false
}
}
},
"ff4c5fd9c1aa": {
"failure": "The host sent a reply this app could not read (clipboard.saveImageAsTempFile)",
"path": "unsaved"
}
},
"recording": {
@@ -630,9 +557,9 @@
"sender": ["fa3470507c98", "90ff7c821047"],
"payloads": ["7bc2e4227914", "bf02ba1bc517"],
"settlements": {
"remote": "eb79a9b3682a"
"remote": "67b442005898"
},
"state": "0886378046b0",
"state": "ff4c5fd9c1aa",
"effects": []
}
},
@@ -642,9 +569,9 @@
"sender": ["fa3470507c98", "06e55827ea7c"],
"payloads": ["7bc2e4227914", "bf02ba1bc517"],
"settlements": {
"remote": "ee20a1dc39e7"
"remote": "67b442005898"
},
"state": "afb22d946687",
"state": "ff4c5fd9c1aa",
"effects": []
}
},
@@ -654,9 +581,9 @@
"sender": ["fa3470507c98", "386081a78bad"],
"payloads": ["7bc2e4227914", "bf02ba1bc517"],
"settlements": {
"remote": "301151228fa3"
"remote": "67b442005898"
},
"state": "927229706f96",
"state": "ff4c5fd9c1aa",
"effects": []
}
},
@@ -666,9 +593,9 @@
"sender": ["fa3470507c98", "f100a8a8f589"],
"payloads": ["7bc2e4227914", "bf02ba1bc517"],
"settlements": {
"remote": "9f00dd54ba64"
"remote": "67b442005898"
},
"state": "2565f3b22472",
"state": "ff4c5fd9c1aa",
"effects": []
}
},
@@ -678,9 +605,9 @@
"sender": ["fa3470507c98", "e9e0139b9fa1"],
"payloads": ["7bc2e4227914", "bf02ba1bc517"],
"settlements": {
"remote": "ad8a954e879d"
"remote": "67b442005898"
},
"state": "2c021902d01b",
"state": "ff4c5fd9c1aa",
"effects": []
}
},

Some files were not shown because too many files have changed in this diff Show More