Merge remote-tracking branch 'origin/main' into brennanb2025/claude-task-frame-rows

Two conflicts, both resolved keeping each side's intent:

- mobile/src/test-support/rpc-recording/native-mounting-substitutes.ts: took
  main's version wholesale. The branch's Reflect.get -> target[key] edit was
  only there to clear the anti-slop gate, and main fixed the same violation
  independently before evolving the file further.

- src/main/claude/claude-structured-journal-translation.ts: main moved turn
  identity and the reopen latch into ClaudeOpenTurn so a client's Stop names
  the same turn the journal row carries; this branch added the typed
  background-task row wiring. Both survive. The extracted message journaler
  now takes the ClaudeOpenTurn itself rather than three closures over the old
  translator-local state, so the single-owner property main established holds
  across the extraction.
This commit is contained in:
Brennan Benson
2026-09-16 01:50:12 -07:00
1407 changed files with 186745 additions and 85655 deletions
+2
View File
@@ -888,6 +888,8 @@ jobs:
src/shared/child-process/windows-cmd-shim-resolution.win32.test.ts
src/main/agent-hooks/windows-hook-payload-delivery.test.ts
src/main/agent-hooks/windows-direct-cmd-hook-command.test.ts
src/main/codex/windows-hook-command.test.ts
src/main/codex/windows-hook-upgrade.test.ts
src/main/windows/windows-pty-job.win32.test.ts
src/main/windows/windows-msys-job.win32.test.ts
src/main/windows/windows-host-job.win32.test.ts
+1
View File
@@ -130,6 +130,7 @@ docs/**
!docs/reference/ssh-host-key-verification.md
!docs/reference/ssh-reconnect-source-recovery.md
!docs/reference/windows-setup-shell.md
!docs/reference/windows-terminal-shell-selection.md
!docs/reference/worktree-scan-fingerprint.md
!docs/reference/wsl-command-execution.md
!docs/reference/wsl-probe-failure-semantics.md
+1
View File
@@ -61,6 +61,7 @@ Orca targets macOS, Linux, and Windows. Keep all platform-dependent behavior beh
- **Keyboard shortcuts**: Never hardcode `e.metaKey`. Use a platform check (`navigator.userAgent.includes('Mac')`) to pick `metaKey` on Mac and `ctrlKey` on Linux/Windows. Electron menu accelerators should use `CmdOrCtrl`.
- **Shortcut labels in UI**: Display `⌘` / `⇧` on Mac and `Ctrl+` / `Shift+` on other platforms.
- **File paths**: Use `path.join` or Electron/Node path utilities — never assume `/` or `\`.
- **Windows terminal shells**: `--shell` picks the shell a terminal *is*; `--command` is typed into whatever shell the host spawned, so a shell choice routed through `command` silently becomes a child process. See [`docs/reference/windows-terminal-shell-selection.md`](./docs/reference/windows-terminal-shell-selection.md).
- **Windows setup scripts**: the setup/issue-command runner is a `.cmd` batch file unless the script starts with a `#!` line — never derive that from the user's terminal-shell preference, and never launch a `.cmd` runner with a bare `cmd.exe /c` from a Git Bash pane (MSYS rewrites the `/c`). See [`docs/reference/windows-setup-shell.md`](./docs/reference/windows-setup-shell.md).
- **Windows child processes**: start them through `runProcess`/`spawnProcess` in `src/shared/child-process/` — never `child_process` directly. It pins `windowsHide`, refuses `shell: true`, and encodes `.cmd`/`.bat` arguments so neither `CommandLineToArgvW` nor `cmd.exe` mangles them. A ratchet test fails on any new direct import. Recognised npm/pnpm `.cmd` shims are resolved to their real target so the spawn skips `cmd.exe` entirely; see [`docs/reference/windows-cmd-shim-resolution.md`](./docs/reference/windows-cmd-shim-resolution.md) before adding a shim shape or debugging one.
- **Windows process enumeration**: read the table through `src/main/windows/windows-process-table.ts`, never by forking `powershell.exe`. See [`docs/reference/windows-process-enumeration.md`](./docs/reference/windows-process-enumeration.md).
-1
View File
@@ -30,7 +30,6 @@
"error",
{
"allow": [
"agent-map-*",
"comment-md-*",
"compact-agent-*",
"feature-wall-*",
-26
View File
@@ -4367,16 +4367,6 @@
"src/renderer/src/components/crash-report/use-crash-report-copy.test.tsx": 21,
"src/renderer/src/components/dashboard-popout/AgentKanbanBoard.test.tsx": 469,
"src/renderer/src/components/dashboard-popout/AgentKanbanCard.test.tsx": 393,
"src/renderer/src/components/dashboard-popout/AgentMap.test.tsx": 1741,
"src/renderer/src/components/dashboard-popout/AgentMapCanvas.performance.test.tsx": 75,
"src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.test.tsx": 126,
"src/renderer/src/components/dashboard-popout/AgentMapMotion.test.tsx": 189,
"src/renderer/src/components/dashboard-popout/AgentMapProjectLabel.test.tsx": 106,
"src/renderer/src/components/dashboard-popout/AgentMapRingHover.test.tsx": 289,
"src/renderer/src/components/dashboard-popout/AgentMapStatusGlow.test.tsx": 732,
"src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.test.tsx": 1678,
"src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.boundary.test.ts": 7,
"src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.test.tsx": 2066,
"src/renderer/src/components/dashboard-popout/AgentTerminalDialog.test.tsx": 234,
"src/renderer/src/components/dashboard-popout/AgentTerminalPreview.clipboard-routes.test.tsx": 1314,
"src/renderer/src/components/dashboard-popout/AgentTerminalPreview.option-dead-key.test.tsx": 149,
@@ -4384,21 +4374,6 @@
"src/renderer/src/components/dashboard-popout/DashboardHostBadge.test.tsx": 64,
"src/renderer/src/components/dashboard-popout/DashboardPopoutRoot.test.tsx": 26,
"src/renderer/src/components/dashboard-popout/agent-board-filtering.test.ts": 8,
"src/renderer/src/components/dashboard-popout/agent-map-filter.test.ts": 9,
"src/renderer/src/components/dashboard-popout/agent-map-glow.performance.test.ts": 12,
"src/renderer/src/components/dashboard-popout/agent-map-hover-containment.test.ts": 7,
"src/renderer/src/components/dashboard-popout/agent-map-label-declutter.test.ts": 12,
"src/renderer/src/components/dashboard-popout/agent-map-layout.test.ts": 152,
"src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.test.ts": 26,
"src/renderer/src/components/dashboard-popout/agent-map-navigation.test.ts": 9,
"src/renderer/src/components/dashboard-popout/agent-map-node-metadata.test.ts": 10,
"src/renderer/src/components/dashboard-popout/agent-map-node-presentation.test.ts": 4,
"src/renderer/src/components/dashboard-popout/agent-map-quick-views.test.ts": 11,
"src/renderer/src/components/dashboard-popout/agent-map-time-filter.test.ts": 6,
"src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.test.ts": 5,
"src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.test.ts": 8,
"src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.test.ts": 161,
"src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.test.ts": 1600,
"src/renderer/src/components/dashboard-popout/dashboard-agent-status-patch.test.ts": 9,
"src/renderer/src/components/dashboard-popout/preview-grid-claim.test.ts": 18,
"src/renderer/src/components/dashboard-popout/preview-terminal-ime-bridge-kitty-bytes.test.ts": 228,
@@ -4407,7 +4382,6 @@
"src/renderer/src/components/dashboard-popout/preview-terminal-shortcuts.test.ts": 13,
"src/renderer/src/components/dashboard-popout/preview-terminal-snapshot-replay.test.ts": 11,
"src/renderer/src/components/dashboard-popout/terminal-preview-unavailable-message.test.ts": 10,
"src/renderer/src/components/dashboard-popout/useAgentMapFilters.test.tsx": 36,
"src/renderer/src/components/dashboard-popout/useDashboardSnapshot.test.tsx": 59,
"src/renderer/src/components/dashboard/AgentDashboardDrawer.test.tsx": 227,
"src/renderer/src/components/dashboard/AgentDashboardSettingsMenu.test.tsx": 68,
@@ -40,8 +40,12 @@ const repoPath = (absolute) => posix(path.relative(REPO_ROOT, absolute))
// Every module the catalog may import from: the extracted params modules plus the
// pre-existing src/shared schemas the RPC methods already bind directly.
function indexableModules() {
// Tests are excluded here for the same reason as the RPC_DIR walk below: bundling one pulls
// vitest into the CJS catalog build, which throws on require().
const modules = new Set(
globSync('*.ts', { cwd: CONTRACT_DIR }).map((name) => path.join(CONTRACT_DIR, name))
globSync('*.ts', { cwd: CONTRACT_DIR })
.filter((name) => !name.endsWith('.test.ts'))
.map((name) => path.join(CONTRACT_DIR, name))
)
modules.delete(OUTPUT_PATH)
for (const file of globSync('**/*.ts', { cwd: RPC_DIR })) {
+60 -1
View File
@@ -1,3 +1,5 @@
import { readFileSync } from 'node:fs'
import { join } from 'node:path'
import process from 'node:process'
import { pathToFileURL } from 'node:url'
@@ -223,6 +225,8 @@ const WINDOWS_PACKAGE_TESTS = [
'src/shared/child-process/windows-cmd-shim-resolution.win32.test.ts',
'src/main/agent-hooks/windows-hook-payload-delivery.test.ts',
'src/main/agent-hooks/windows-direct-cmd-hook-command.test.ts',
'src/main/codex/windows-hook-command.test.ts',
'src/main/codex/windows-hook-upgrade.test.ts',
'src/main/windows/windows-pty-job.win32.test.ts',
'src/main/windows/windows-msys-job.win32.test.ts',
'src/main/windows/windows-host-job.win32.test.ts',
@@ -259,6 +263,49 @@ const DESKTOP_IRRELEVANT_PREFIXES = [
'.github/workflows/mobile-android-release.yml'
]
const STATIC_ANALYSIS_AUDIT_SCRIPTS = [
'audit:code-quality:native',
'audit:code-quality:type-aware',
'audit:anti-slop'
]
// Positional arguments of an oxlint invocation are the trees it lints. `--config` consumes the
// next token; every other flag here is valueless.
function oxlintScanRoots(command) {
const roots = []
for (const segment of command.split('&&')) {
const tokens = segment.trim().split(/\s+/).filter(Boolean)
if (tokens[0] !== 'oxlint') {
continue
}
for (let index = 1; index < tokens.length; index += 1) {
if (tokens[index] === '--config') {
index += 1
} else if (!tokens[index].startsWith('-')) {
roots.push(tokens[index])
}
}
}
return roots
}
// Why derived from the commands rather than listed here: `mobile/` is desktop-irrelevant for every
// other job, yet these audits lint it. A second, hand-maintained copy of "which trees the gate
// reads" is what let #20702 land violations no PR check ran, so read it off the argv instead.
function readStaticAnalysisScanRoots() {
const manifest = join(import.meta.dirname, '../../package.json')
const { scripts = {} } = JSON.parse(readFileSync(manifest, 'utf8'))
return [
...new Set(
STATIC_ANALYSIS_AUDIT_SCRIPTS.flatMap((name) => oxlintScanRoots(scripts[name] ?? ''))
)
]
}
export const STATIC_ANALYSIS_SCAN_ROOTS = readStaticAnalysisScanRoots()
const STATIC_ANALYSIS_SCAN_PREFIXES = STATIC_ANALYSIS_SCAN_ROOTS.map((root) => `${root}/`)
export function isDocsOnlyPath(file) {
if (DOCS_ONLY_FILES.has(file)) {
return true
@@ -296,10 +343,15 @@ export function classifyPrJobs(changedFiles) {
shouldRun && (forceAll || ALWAYS_ON_CODE_JOBS.has(job) || jobDetector(job)(changedFiles))
])
)
// Why outside should_run: a mobile-only diff is desktop-irrelevant and skips every job above,
// but the repo-wide audits lint mobile/, and skipping them lands the violation on main, where
// it then fails this same gate on every later PR's merge ref.
jobs.static_analysis = jobs.static_analysis || changedFiles.some(isStaticAnalysisScannedPath)
return {
should_run: shouldRun,
native_cache_changed: shouldRun && (emptyDiff || changedFiles.some(isNativeCacheInputPath)),
mobile_dependencies: shouldRun && needsMobileDependencies(changedFiles),
mobile_dependencies:
(shouldRun || jobs.static_analysis) && needsMobileDependencies(changedFiles),
...jobs
}
}
@@ -356,6 +408,13 @@ function isDesktopIrrelevantPath(file) {
return matchesPrefix(file, DESKTOP_IRRELEVANT_PREFIXES)
}
function isStaticAnalysisScannedPath(file) {
// Fail closed: roots we failed to parse must keep the gate, not silently drop it.
return (
STATIC_ANALYSIS_SCAN_PREFIXES.length === 0 || matchesPrefix(file, STATIC_ANALYSIS_SCAN_PREFIXES)
)
}
function isNativeCacheInputPath(file) {
return NATIVE_CACHE_FILES.has(file) || matchesPrefix(file, NATIVE_CACHE_PREFIXES)
}
+36 -5
View File
@@ -7,7 +7,8 @@ import {
classifyPrJobs,
isDocsOnlyPath,
PR_CHECK_JOBS,
shouldRunPrChecks
shouldRunPrChecks,
STATIC_ANALYSIS_SCAN_ROOTS
} from './pr-code-change-scope.mjs'
const projectDir = resolve(import.meta.dirname, '../..')
@@ -327,11 +328,41 @@ describe('per-job path classification', () => {
expect(
classifyPrJobs(['src/main/index.ts', 'mobile/src/session/a.test.ts']).mobile_dependencies
).toBe(true)
// Why false: a mobile-only diff skips every desktop job, so the install step's own
// job never runs and claiming the install is needed contradicts should_run.
expect(classifyPrJobs(['mobile/package.json']).mobile_dependencies).toBe(false)
// Why true: a mobile-only diff still skips the desktop suite, but the repo-wide audits lint
// mobile/, so static analysis runs and its changed-code pass needs the mobile types.
expect(classifyPrJobs(['mobile/package.json']).mobile_dependencies).toBe(true)
expect(classifyPrJobs(['mobile/package.json']).should_run).toBe(false)
expect(classifyPrJobs(['README.md', 'mobile/src/a.ts']).mobile_dependencies).toBe(false)
expect(classifyPrJobs(['README.md', 'mobile/src/a.ts']).mobile_dependencies).toBe(true)
})
// Why: `mobile/` is desktop-irrelevant for every other job, so a mobile-only diff used to skip
// the audits that do lint it. That is how #20702 landed two duplicate imports which then failed
// this gate on every later PR's merge ref until #20895 swept them.
it('runs static analysis for a mobile-only diff without dragging in the desktop suite', () => {
const result = classifyPrJobs([
'mobile/src/test-support/rpc-recording/adapters/push-registration-mount-adapters.ts'
])
expect(result.static_analysis).toBe(true)
expect(result.mobile_dependencies).toBe(true)
expect(result.should_run).toBe(false)
for (const job of ['typecheck', 'test', 'package', 'package_windows', 'git_compatibility']) {
expect(result[job], job).toBe(false)
}
})
// The ratchet: adding a tree to an audit command has to widen this trigger on its own.
it('runs static analysis for every tree the audit commands scan', () => {
expect(STATIC_ANALYSIS_SCAN_ROOTS).toEqual(
expect.arrayContaining(['src', 'config', 'tests', 'mobile'])
)
for (const root of STATIC_ANALYSIS_SCAN_ROOTS) {
expect(classifyPrJobs([`${root}/changed-file.ts`]).static_analysis, root).toBe(true)
}
})
it('leaves diffs the audits never read out of static analysis', () => {
expect(classifyPrJobs(['README.md']).static_analysis).toBe(false)
expect(classifyPrJobs(['cloud/apps/relay/src/index.ts']).static_analysis).toBe(false)
})
it('keeps unit-test-only diffs out of packaging', () => {
+7 -5
View File
@@ -2,8 +2,13 @@
## Status
Proposed on 2026-09-09 as the follow-up to #19217. It lands in four steps, in
this order, each independently shippable:
The current boundary is PR 2A: structured sessions use the hook server's fully
scoped canonical store; unbound PTY/relay evidence remains in an isolated legacy
adapter. Do not remove the renderer bridge or its publication filters in this
slice: they still carry native-chat child rows.
The sections below record the original 2026-09-09 rollout. Its PR 1a and PR 1b
have landed; its proposed PR 2/3 sequence is superseded by that boundary:
1. main-only: every producer writes into one store and `worktree ps` reads it,
split into 1a (structured sessions join the store) and 1b (the runtime's
@@ -11,9 +16,6 @@ this order, each independently shippable:
2. renderer: the sidebar becomes a subscriber and stops re-deriving rows;
3. shared: one worktree-status rollup and one freshness rule for every reader.
The PR that carries this document is PR 1a. Sections below are grouped under
the step that delivers them; PR 1a and PR 1b have landed.
## The problem this solves
Orca shows "what is this agent doing" in four places: the desktop sidebar, the
@@ -0,0 +1,54 @@
# Windows terminal shell selection
Two different things can put `cmd.exe` on a Windows terminal, and only one of them makes the
terminal _be_ cmd.
- **`--shell` / `shellOverride`** names the executable the PTY is spawned as. The terminal's own
process is that shell for its whole life.
- **`--command` / `startupCommand`** is text the provider types into whatever shell it spawned.
`--command cmd.exe` therefore starts cmd as a **child** of the host's default shell.
The difference is invisible until the child exits. Leaving that cmd returns the caller's handle to
a Git Bash or PowerShell prompt it never asked for, and anything that keyed off "this terminal is
cmd" is now wrong — while `terminal list` still shows one connected, healthy terminal, because the
PTY never changed.
## Why the runtime path needed its own fix
There are two spawn preflights, and they are twins:
- `src/main/ipc/pty/ipc/spawn-preflight.ts` — renderer/IPC spawns (a terminal tab in the app).
- `src/main/ipc/pty/runtime/spawn-preflight.ts` — runtime spawns: `terminal.create` from the CLI,
headless `orca serve`, and every paired remote environment.
Only the IPC twin read the caller's requested shell. The runtime twin passed a literal `undefined`,
so a runtime-created terminal could only ever be the host's default shell. `orca terminal create
--command cmd.exe` against a Windows environment had no way to say "be cmd" — it could only type
`cmd.exe` into Git Bash. `src/main/ipc/pty/pty-spawn-shell-override-parity.test.ts` pins the pair.
## Rules
- A caller choosing a shell passes `--shell`; a caller running a program passes `--command`. Do not
route a shell choice through `command` — it looks like it worked.
- The allowlist is `isSupportedWindowsShellOverride` in `src/shared/windows-terminal-shell.ts`, and
it is the reason `--shell` cannot name an arbitrary executable. The CLI, the `terminal.create`
RPC schema, and the relay all check the same set; add a shell in one place only.
- Bare shell names only. A path or anything with arguments is refused, so `--shell` can never carry
a command line into `pty.spawn`.
- A host that predates `--shell` STRIPS it (`terminal.create` params are a zod object, which drops
unknown keys) and answers with a healthy terminal running its default shell — a reply that reads
as success. So the CLI gates on `TERMINAL_CREATE_SHELL_SELECTION_RUNTIME_CAPABILITY` and refuses
before creating anything, rather than creating the wrong shell quietly.
- `--shell` is Windows-only, and a host that cannot apply it REFUSES the create
(`terminalShellOverrideRefusal`). macOS and Linux execution hosts spawn the login shell, and a
terminal routed over SSH resolves its shell on the SSH host, whose platform and installed shells
this runtime cannot see. Refusing is the point: spawning the default shell and reporting success
is the failure `--shell` exists to remove.
- A project's execution runtime decides which MACHINE the shell runs on, so it outranks a
per-terminal pick — but it outranks it by REFUSING, not by rewriting. A `--shell` that
contradicts the project runtime (a Windows shell on a WSL project, or a WSL name on a
Windows-host project) is refused. `resolveLocalWindowsTerminalRuntimeOptions` would otherwise
rewrite the value — a WSL project forces `wsl.exe`, a Windows-host project discards a WSL name in
favour of `COMSPEC` — and hand back a terminal running something the caller never asked for. It
also splits an agent launch's quoting from the shell that receives it: POSIX-quoted args typed
into cmd, or cmd-quoted args typed into a WSL shell.
+1 -1
View File
@@ -16,7 +16,7 @@ Files save on blur and after short idle periods. There is no "dirty" dot because
## Changes view mode
Toggle **Changes view mode** in any editor tab to flip the file into an in-tab HEAD-vs-working-tree diff without leaving your cursor position. Same shortcuts as the [Diff viewer](/docs/review/diff-viewer) — `n`/`p` to walk hunks, `s` to stage. Toggle again to return to the regular file view.
Toggle **Changes view mode** in any editor tab to flip the file into an in-tab HEAD-vs-working-tree diff without leaving your cursor position. Toggle again to return to the regular file view.
## Word wrap
@@ -7,8 +7,8 @@ Reviewing an AI diff well is the difference between shipping fast and shipping b
## Steps
1. Open the worktree's diff view.
1. Go file-by-file with `j` / `k`. For each hunk, ask: is the change necessary? is it minimal? does it match the rest of the file?
1. Drop comments with `c` on anything you want changed — full sentences work best.
1. Review each changed file. For each hunk, ask: is the change necessary? is it minimal? does it match the rest of the file?
1. Use **Annotate AI Diff** to leave comments on anything you want changed — full sentences work best.
1. When you've been through the whole diff, click **Send to agent**. Orca batches all comments into one prompt.
1. Watch the agent revise. The state dot will go yellow (waiting for more input) or green (working).
1. When it's idle, re-open the diff. Your comments are pinned; resolve the ones that are fixed and leave follow-ups on the rest.
@@ -6,7 +6,7 @@ You can commit, push, and open the review without leaving Orca. The commit panel
## Commit
1. Stage changes by hunk or by file from the diff.
1. Stage changed files from the Source Control panel.
1. Write a commit message in the bottom panel, or use **Generate with AI** when you want Orca to draft one from the staged changes.
1. Hit **Commit** (`Cmd-Enter` on macOS, `Ctrl-Enter` on Windows / Linux) when focus is in Source Control and the primary action is Commit.
@@ -11,7 +11,7 @@ Orca's diff viewer is designed for serious review of AI-generated code — not a
- **Image diffs** — side-by-side, swipe, and onion-skin modes for binary images.
- **HTML preview** — in **View all** / combined diffs, HTML sections that still exist in the working tree show **Open Preview to the Side** (eye) next to the always-visible open-file control. Preview opens the working-tree HTML in a side browser split. Deleted HTML and commit-only combined surfaces skip the eye.
- **Merge-conflict UI** with three-way view and inline resolution.
- **Staging by hunk or line** — same as `git add -p` but visual.
- **File staging** from the Source Control panel.
## Scoping
@@ -27,8 +27,4 @@ Combined diffs can show a collapsible file tree beside the hunks. Drag the tree'
## Keyboard shortcuts
- `j` / `k` — next / previous changed file.
- `n` / `p` — next / previous hunk.
- `F7` / `Shift+F7` — next / previous change in the active editor.
- `s` — stage the hunk under the cursor.
- `c` — start a comment ([Annotate AI Diff](/docs/review/annotate-ai-diff)).
+4 -32
View File
@@ -1,12 +1,5 @@
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
import {
AccessibilityInfo,
Animated,
BackHandler,
Text,
useWindowDimensions,
View
} from 'react-native'
import { useCallback, useMemo, useRef, useState } from 'react'
import { Animated, BackHandler, Text, useWindowDimensions, View } from 'react-native'
import { useFocusEffect, useLocalSearchParams, useRouter } from 'expo-router'
import { SafeAreaView } from 'react-native-safe-area-context'
import { OrcaLogo } from '../src/components/OrcaLogo'
@@ -17,6 +10,7 @@ import {
type NotificationOnboardingChoice
} from '../src/onboarding/MobileOnboardingPage'
import { parseMobileOnboardingSteps } from '../src/onboarding/mobile-onboarding-plan'
import { useReducedMotionEnabled } from '../src/onboarding/use-reduced-motion'
import { mobileOnboardingStyles as styles } from '../src/onboarding/mobile-onboarding-styles'
import {
saveDefaultSessionView,
@@ -85,7 +79,7 @@ function MobileOnboardingFlow({
toValue: nextIndex,
// Why: the carousel should preserve continuity without overriding the
// device's reduced-motion preference.
duration: reducedMotionEnabled ? 0 : SLIDE_DURATION_MS,
duration: reducedMotionEnabled === true ? 0 : SLIDE_DURATION_MS,
useNativeDriver: true
}).start(() => {
// Why: a cancelled cosmetic transition must not leave the next decision
@@ -191,25 +185,3 @@ function MobileOnboardingFlow({
function firstParam(value: string | string[] | undefined): string | undefined {
return Array.isArray(value) ? value[0] : value
}
function useReducedMotionEnabled(): boolean {
const [enabled, setEnabled] = useState(false)
useEffect(() => {
let mounted = true
void AccessibilityInfo.isReduceMotionEnabled()
.then((nextEnabled) => {
if (mounted) {
setEnabled(nextEnabled)
}
})
.catch(() => undefined)
const subscription = AccessibilityInfo.addEventListener('reduceMotionChanged', setEnabled)
return () => {
mounted = false
subscription.remove()
}
}, [])
return enabled
}
@@ -3,23 +3,20 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "0431ac82cbb8c60b16f4432fd0da7cff665485d668e512b20fc1168ec63db3fe",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"681cb0d74271": {
"56c96fec6d08": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}"
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 2
},
"6e50957443ea": {
"name": "status.get#1",
@@ -54,6 +51,11 @@
}
}
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"b567072e5440": {
"name": "aiVault.listSessions#1",
"args": [
@@ -131,7 +133,7 @@
"id": "ready",
"observation": {
"sender": ["6e50957443ea", "b567072e5440"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -3,10 +3,10 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "e97c6db772a70ee1912419ac67835b6074aaf9a341d4360389a11465f08092c5",
"platform": "darwin",
"scenarioVersion": 1,
@@ -24,10 +24,6 @@
"kind": "unsupported"
}
},
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"6f30f8b6f3d7": {
"name": "status.get#1",
"args": [
@@ -61,6 +57,11 @@
}
}
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -77,7 +78,7 @@
"id": "unsupported",
"observation": {
"sender": ["6f30f8b6f3d7"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -3,20 +3,16 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "10011c7c75e74d9c2e880c5458c9156264ae07e91956a80946ede1d4e684952a",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"33d053404f10": {
"activeWorktreePath": {
"$rpc": "null"
@@ -72,6 +68,11 @@
}
}
},
"4f3bdb245d26": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 3
},
"6e50957443ea": {
"name": "status.get#1",
"args": [
@@ -105,6 +106,11 @@
}
}
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"9cac597c56da": {
"name": "status.get#2",
"args": [
@@ -138,9 +144,10 @@
}
}
},
"c0c86e67c300": {
"b33a14df0df6": {
"name": "status.get#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 2
},
"cd739a80b7a8": {
"activeWorktreePath": "/repo/feature",
@@ -168,10 +175,6 @@
"value": {
"$rpc": "undefined"
}
},
"f191cc9d24e3": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}"
}
},
"recording": {
@@ -181,7 +184,7 @@
"id": "held",
"observation": {
"sender": ["6e50957443ea"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -193,7 +196,7 @@
"id": "ready",
"observation": {
"sender": ["6e50957443ea", "9cac597c56da", "38364726a135"],
"payloads": ["1e5b32902af7", "c0c86e67c300", "f191cc9d24e3"],
"payloads": ["852980e2efc0", "b33a14df0df6", "4f3bdb245d26"],
"settlements": {
"mount": "eb79a9b3682a",
"worktrees-loaded": "eb79a9b3682a"
@@ -0,0 +1,369 @@
{
"operation": "aiVault.history-screen",
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "d52d3c5858298a4a6a90bd9a8986b780004477de105fe93f6303d9c303ffea38",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"017d690f964b": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 4
},
"035edfd9a1b9": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 5,
"RefreshCw": 1,
"SafeAreaView": 1,
"SectionList": 1,
"Text": 5,
"TextInput": 1,
"View": 5
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history", "Workspace", "Project", "All"]
},
"074d2293c010": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"worktrees": [
{
"path": "/repo/feature",
"repoId": "repo-1",
"worktreeId": "wt-history"
},
{
"path": "/repo/sibling",
"repoId": "repo-1",
"worktreeId": "wt-2"
}
]
}
}
}
},
"29ba09534e96": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"522b745543f1": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": ["/repo/feature"]
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"6ae619d3108a": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"8c2a1dcb9598": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": ["/repo/feature"]
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-4",
"ok": true,
"result": {
"issues": [],
"sessions": [
{
"agent": "claude",
"branch": "feature",
"codexHome": {
"$rpc": "null"
},
"createdAt": "2025-12-31T23:00:00.000Z",
"cwd": "/repo/feature",
"executionHostId": "local",
"filePath": "/repo/feature/.claude/sess-1.jsonl",
"id": "s1",
"messageCount": 4,
"model": "opus",
"modifiedAt": "2025-12-31T23:30:00.000Z",
"previewMessages": [
{
"role": "user",
"text": "fix it",
"timestamp": "2025-12-31T23:00:00.000Z"
}
],
"sessionId": "sess-1",
"title": "Fix the explorer",
"totalTokens": 1200,
"updatedAt": "2025-12-31T23:30:00.000Z"
}
]
}
}
}
},
"ba9fd57319d3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"bc1a8e138f82": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"d22bb2f62cea": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 2,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history"]
},
"d4ef0569dbbc": {
"name": "status.get#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 3
},
"de79fb948454": {
"name": "worktree.ps#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}",
"sent": 2
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"ff0ffaddbbf7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 2
}
},
"recording": {
"scenario": "aivault-history-screen-listed",
"checkpoints": [
{
"id": "worktrees-pending",
"observation": {
"sender": ["bc1a8e138f82", "ba9fd57319d3"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "ready",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "8c2a1dcb9598"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "035edfd9a1b9",
"effects": []
}
}
]
}
}
@@ -0,0 +1,277 @@
{
"operation": "aiVault.history-screen",
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "f50f63c4e2a69793b3d322ed16089c4241ff6169d8f9549106480230fb8dd5e7",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"017d690f964b": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 4
},
"074d2293c010": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"worktrees": [
{
"path": "/repo/feature",
"repoId": "repo-1",
"worktreeId": "wt-history"
},
{
"path": "/repo/sibling",
"repoId": "repo-1",
"worktreeId": "wt-2"
}
]
}
}
}
},
"29ba09534e96": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"522b745543f1": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": ["/repo/feature"]
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"6ae619d3108a": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"ba9fd57319d3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"bc1a8e138f82": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"d22bb2f62cea": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 2,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history"]
},
"d4ef0569dbbc": {
"name": "status.get#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 3
},
"de79fb948454": {
"name": "worktree.ps#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}",
"sent": 2
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"ff0ffaddbbf7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 2
}
},
"recording": {
"scenario": "aivault-history-screen-worktrees",
"checkpoints": [
{
"id": "worktrees-pending",
"observation": {
"sender": ["bc1a8e138f82", "ba9fd57319d3"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
}
]
}
}
@@ -0,0 +1,90 @@
{
"operation": "aiVault.resume-launch",
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "ebf1bbc01ad7704fe79eff0969fcc2d4af8ebfa7c2410d2ed9d3ae8c6976b434",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"62643ed38326": {
"failure": "Workspace is busy",
"launched": "unlaunched"
},
"6e913cd7b306": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Workspace is busy",
"isRpcDeliveryUnknown": false
}
},
"a7dec90e01a8": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "worktree_busy",
"message": "Workspace is busy"
},
"id": "frame-1",
"ok": false
}
}
},
"af416f104f9a": {
"name": "session.tabs.createTerminal#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}",
"sent": 1
}
},
"recording": {
"scenario": "aivault-resume-launch-create-refused",
"checkpoints": [
{
"id": "create-refused",
"observation": {
"sender": ["a7dec90e01a8"],
"payloads": ["af416f104f9a"],
"settlements": {
"bare": "6e913cd7b306"
},
"state": "62643ed38326",
"effects": []
}
}
]
}
}
@@ -0,0 +1,97 @@
{
"operation": "aiVault.resume-launch",
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "281ccf5a082f3788ae8bf19f742ea4baf35c20c78bc91d7d91873845583e1a91",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"432332c9740e": {
"failure": "Created terminal response was invalid",
"launched": "unlaunched"
},
"495d8519301e": {
"name": "session.tabs.createTerminal#1",
"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\"}}",
"sent": 1
},
"681fc4d59b92": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Created terminal response was invalid",
"isRpcDeliveryUnknown": false
}
},
"af9961132c24": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"tab": {
"id": "tab-9"
}
}
}
}
}
},
"recording": {
"scenario": "aivault-resume-launch-invalid-tab",
"checkpoints": [
{
"id": "invalid-tab",
"observation": {
"sender": ["af9961132c24"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "681fc4d59b92"
},
"state": "432332c9740e",
"effects": []
}
}
]
}
}
@@ -0,0 +1,142 @@
{
"operation": "aiVault.resume-launch",
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "941fcf202417c94ef546f5ee331983689d8b72397dac6f61dda944ca24abed9e",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0f026fafa7e1": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Terminal input is locked",
"isRpcDeliveryUnknown": false
}
},
"39cabd8258a3": {
"name": "terminal.send#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}",
"sent": 2
},
"495d8519301e": {
"name": "session.tabs.createTerminal#1",
"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\"}}",
"sent": 1
},
"5f84c02b1f7b": {
"name": "terminal.send#1",
"args": [
{
"name": "method",
"value": "terminal.send"
},
{
"name": "params",
"value": {
"enter": true,
"terminal": "terminal-9",
"text": "codex resume rollout"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"send": {
"accepted": false
}
}
}
}
},
"6b1e36abce6b": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"tab": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex",
"type": "terminal"
}
}
}
}
},
"da57c90b80d6": {
"failure": "Terminal input is locked",
"launched": "unlaunched"
}
},
"recording": {
"scenario": "aivault-resume-launch-locked",
"checkpoints": [
{
"id": "input-locked",
"observation": {
"sender": ["6b1e36abce6b", "5f84c02b1f7b"],
"payloads": ["495d8519301e", "39cabd8258a3"],
"settlements": {
"full": "0f026fafa7e1"
},
"state": "da57c90b80d6",
"effects": []
}
}
]
}
}
@@ -0,0 +1,148 @@
{
"operation": "aiVault.resume-launch",
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "f0ac1c996e5b1b4043e0a081978476c6c2dd8a5d517d5752857721205a588fb0",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"39cabd8258a3": {
"name": "terminal.send#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}",
"sent": 2
},
"400d946a183d": {
"failure": {
"$rpc": "null"
},
"launched": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex"
}
},
"495d8519301e": {
"name": "session.tabs.createTerminal#1",
"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\"}}",
"sent": 1
},
"6b1e36abce6b": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"tab": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex",
"type": "terminal"
}
}
}
}
},
"6e79da536ca9": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex"
}
},
"a84f5d45a48b": {
"name": "terminal.send#1",
"args": [
{
"name": "method",
"value": "terminal.send"
},
{
"name": "params",
"value": {
"enter": true,
"terminal": "terminal-9",
"text": "codex resume rollout"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"send": {
"accepted": true
}
}
}
}
}
},
"recording": {
"scenario": "aivault-resume-launch-sent",
"checkpoints": [
{
"id": "resumed",
"observation": {
"sender": ["6b1e36abce6b", "a84f5d45a48b"],
"payloads": ["495d8519301e", "39cabd8258a3"],
"settlements": {
"full": "6e79da536ca9"
},
"state": "400d946a183d",
"effects": []
}
}
]
}
}
@@ -0,0 +1,90 @@
{
"operation": "aiVault.resume-preparation",
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "dc9926f95475413627315e1f1c96740ececa697c6a0a5e3c42e18cfd4d58448a",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1c21b98bedb1": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "codex home is locked",
"isRpcDeliveryUnknown": false
}
},
"3a299ed75c3d": {
"name": "aiVault.prepareSessionResume#1",
"args": [
{
"name": "method",
"value": "aiVault.prepareSessionResume"
},
{
"name": "params",
"value": {
"agent": "codex",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "internal",
"message": "codex home is locked"
},
"id": "frame-1",
"ok": false
}
}
},
"770627dbd25d": {
"name": "aiVault.prepareSessionResume#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}",
"sent": 1
},
"7e4864f4412b": {
"failure": "codex home is locked",
"prepared": "unprepared"
}
},
"recording": {
"scenario": "aivault-resume-prepare-refused",
"checkpoints": [
{
"id": "refused",
"observation": {
"sender": ["3a299ed75c3d"],
"payloads": ["770627dbd25d"],
"settlements": {
"prepare": "1c21b98bedb1"
},
"state": "7e4864f4412b",
"effects": []
}
}
]
}
}
@@ -0,0 +1,98 @@
{
"operation": "aiVault.resume-preparation",
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "6719aea706086a68709894546f9595264407db2df94fa56180cb3c68b08aaa69",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"02733b10ba3d": {
"failure": {
"$rpc": "null"
},
"prepared": {
"agent": "codex",
"codexHome": "/hosts/codex-accounts/acct-1/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
"15e10cea84b9": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"agent": "codex",
"codexHome": "/hosts/codex-accounts/acct-1/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
"770627dbd25d": {
"name": "aiVault.prepareSessionResume#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}",
"sent": 1
},
"d8803e70463f": {
"name": "aiVault.prepareSessionResume#1",
"args": [
{
"name": "method",
"value": "aiVault.prepareSessionResume"
},
{
"name": "params",
"value": {
"agent": "codex",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"substituteCodexHome": "/hosts/codex-accounts/acct-1/home",
"useRealCodexHome": false
}
}
}
}
},
"recording": {
"scenario": "aivault-resume-prepare-repin",
"checkpoints": [
{
"id": "repinned",
"observation": {
"sender": ["d8803e70463f"],
"payloads": ["770627dbd25d"],
"settlements": {
"prepare": "15e10cea84b9"
},
"state": "02733b10ba3d",
"effects": []
}
}
]
}
}
@@ -0,0 +1,56 @@
{
"operation": "aiVault.resume-preparation",
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "3afaf2807506f5bde2159b367f34c6b777739d6aad564796d54ac0da05b5bd02",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"5d9b438a0a47": {
"failure": {
"$rpc": "null"
},
"prepared": {
"agent": "claude",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
"fd5226716450": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"agent": "claude",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
}
},
"recording": {
"scenario": "aivault-resume-prepare-skipped",
"checkpoints": [
{
"id": "no-wire",
"observation": {
"sender": [],
"payloads": [],
"settlements": {
"claude": "fd5226716450"
},
"state": "5d9b438a0a47",
"effects": []
}
}
]
}
}
@@ -0,0 +1,98 @@
{
"operation": "aiVault.resume-preparation",
"family": "aiVault.resume-preparation",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "a5eedea5f551e0ca0e143292f1d9aa8920dd7af62a02d8e8777666ab3779c019",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"770627dbd25d": {
"name": "aiVault.prepareSessionResume#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}",
"sent": 1
},
"a25c46d6c1db": {
"name": "aiVault.prepareSessionResume#1",
"args": [
{
"name": "method",
"value": "aiVault.prepareSessionResume"
},
{
"name": "params",
"value": {
"agent": "codex",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "forbidden",
"message": "Method 'aiVault.prepareSessionResume' is not available to mobile clients"
},
"id": "frame-1",
"ok": false
}
}
},
"e839ea279e77": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"agent": "codex",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
},
"f9dc8bff0bbd": {
"failure": {
"$rpc": "null"
},
"prepared": {
"agent": "codex",
"codexHome": "/hosts/codex-runtime-home/home",
"executionHostId": "local",
"filePath": "/sessions/rollout.jsonl"
}
}
},
"recording": {
"scenario": "aivault-resume-prepare-unavailable",
"checkpoints": [
{
"id": "degraded-to-legacy",
"observation": {
"sender": ["a25c46d6c1db"],
"payloads": ["770627dbd25d"],
"settlements": {
"prepare": "e839ea279e77"
},
"state": "f9dc8bff0bbd",
"effects": []
}
}
]
}
}
+25 -21
View File
@@ -3,9 +3,9 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3",
"platform": "darwin",
@@ -74,9 +74,10 @@
}
}
},
"2837f481a843": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}"
"387248eb3124": {
"name": "files.searchPaths#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}",
"sent": 3
},
"3b6419fbab75": {
"status": "fulfilled",
@@ -86,10 +87,6 @@
"$rpc": "undefined"
}
},
"4c6301522bc0": {
"name": "files.list#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}"
},
"602e35a92eec": {
"files": []
},
@@ -130,17 +127,14 @@
}
}
},
"6fcbcfd641a6": {
"name": "files.searchPaths#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}"
},
"9dea95bddfe5": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}"
},
"a129552fdc6e": {
"files": ["third.ts"]
},
"a4643cbb0362": {
"name": "files.list#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}",
"sent": 4
},
"b2434f1de9f6": {
"name": "files.list#1",
"args": [
@@ -166,6 +160,11 @@
"startedAt": 120
}
},
"bb65fa195d1c": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}",
"sent": 2
},
"c0821dc354d7": {
"name": "files.searchPaths#1",
"args": [
@@ -202,6 +201,11 @@
}
}
},
"cd59dd2431e0": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}",
"sent": 1
},
"d2ad71e601c4": {
"status": "fulfilled",
"startedAt": 120,
@@ -266,7 +270,7 @@
"id": "old-pending",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a"
@@ -279,7 +283,7 @@
"id": "stale-arrived-fresh-pending",
"observation": {
"sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"],
"payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -295,7 +299,7 @@
"id": "third-query",
"observation": {
"sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"],
"payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -312,7 +316,7 @@
"id": "fresh-arrived",
"observation": {
"sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "daf226a0261c"],
"payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
+22 -18
View File
@@ -3,9 +3,9 @@
"family": "project-explicit-false",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "b31992be2f91bd61fbe1b8a5400da3b7a56753564b0b0b2b38bc5d549812d693",
"platform": "darwin",
@@ -13,6 +13,11 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"02839f22d2db": {
"name": "projectMutating",
"value": false,
"sent": 1
},
"0c4dced3e005": {
"error": "",
"mutating": true,
@@ -41,13 +46,10 @@
"itemType": "ISSUE"
}
},
"2cd14f7121a5": {
"name": "projectMutating",
"value": false
},
"52a7a7239fbb": {
"219dced97206": {
"name": "github.project.updateIssueBySlug#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}",
"sent": 1
},
"6f0142de3930": {
"name": "github.project.updateIssueBySlug#1",
@@ -88,17 +90,19 @@
}
}
},
"7b2465eedefe": {
"name": "projectMutating",
"value": true,
"sent": 0
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"c2a271fc5d97": {
"name": "projectMutating",
"value": true
},
"d330309fabb3": {
"a7b76954b136": {
"name": "projectRowDetailError",
"value": "Cannot read properties of null (reading 'ok')"
"value": "Cannot read properties of null (reading 'ok')",
"sent": 1
},
"e5673036d45e": {
"name": "github.project.updateIssueBySlug#1",
@@ -147,26 +151,26 @@
"id": "pending",
"observation": {
"sender": ["e5673036d45e"],
"payloads": ["52a7a7239fbb"],
"payloads": ["219dced97206"],
"settlements": {
"mount": "eb79a9b3682a",
"submit": "9270aeb7d9c6"
},
"state": "0c4dced3e005",
"effects": ["c2a271fc5d97"]
"effects": ["7b2465eedefe"]
}
},
{
"id": "settled",
"observation": {
"sender": ["6f0142de3930"],
"payloads": ["52a7a7239fbb"],
"payloads": ["219dced97206"],
"settlements": {
"mount": "eb79a9b3682a",
"submit": "eb79a9b3682a"
},
"state": "204a5c5728c2",
"effects": ["c2a271fc5d97", "d330309fabb3", "2cd14f7121a5"]
"effects": ["7b2465eedefe", "a7b76954b136", "02839f22d2db"]
}
}
]
+42 -35
View File
@@ -3,9 +3,9 @@
"family": "linear-detail-barrier",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "130e493fcd7765e037405f59e6cc78a0cc1793b1ae092cad933ff9d5a9df8b7a",
"platform": "darwin",
@@ -48,13 +48,10 @@
}
}
},
"1696f2f90218": {
"0e0abca05602": {
"name": "detailError",
"value": "comments transport error"
},
"3b01c25bcd45": {
"name": "detailError",
"value": ""
"value": "comments transport error",
"sent": 2
},
"3cb9a384ce0e": {
"name": "linear.issueComments#1",
@@ -89,6 +86,11 @@
"$rpc": "null"
}
},
"46d0f1129c84": {
"name": "linear.getIssue#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}",
"sent": 2
},
"4e7c4654b51d": {
"name": "linear.issueComments#1",
"args": [
@@ -121,6 +123,16 @@
}
}
},
"56d172ecd2fe": {
"name": "detailLoading",
"value": true,
"sent": 0
},
"5b2b6dd0b30f": {
"name": "linear.issueComments#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}",
"sent": 2
},
"780aaf1d97be": {
"error": "",
"loading": true,
@@ -128,27 +140,17 @@
"$rpc": "null"
}
},
"7d21147e56c1": {
"name": "detailLoading",
"value": true
},
"7d341b2cb946": {
"9bd1de5d9753": {
"name": "detailPayload",
"value": {
"$rpc": "null"
}
},
"sent": 0
},
"91a1c8142e23": {
"name": "detailLoading",
"value": false
},
"bb215a1eb59b": {
"name": "linear.getIssue#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
},
"e7f73629d075": {
"name": "linear.issueComments#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
"9d6ce9f28401": {
"name": "detailError",
"value": "",
"sent": 0
},
"eb79a9b3682a": {
"status": "fulfilled",
@@ -158,6 +160,11 @@
"$rpc": "undefined"
}
},
"ee0c4638d266": {
"name": "detailLoading",
"value": false,
"sent": 2
},
"fc4ce176400a": {
"name": "linear.getIssue#1",
"args": [
@@ -192,41 +199,41 @@
"id": "pending",
"observation": {
"sender": ["fc4ce176400a", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
}
@@ -3,9 +3,9 @@
"family": "browser.dialog",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "95f377bc4d8bf1248cafed26b2e9f425ad37e8d3c99e354bd6a8c67eb9bd9b1b",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"2a884fbac9d5": {
"name": "browser.dialogAccept#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogAccept\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}"
},
"9855d4ec3415": {
"busy": false,
"dialog": {
@@ -36,6 +32,11 @@
"$rpc": "undefined"
}
},
"f11babba920d": {
"name": "browser.dialogAccept#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogAccept\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}",
"sent": 1
},
"f23289a40300": {
"name": "browser.dialogAccept#1",
"args": [
@@ -78,7 +79,7 @@
"id": "dismissed",
"observation": {
"sender": ["f23289a40300"],
"payloads": ["2a884fbac9d5"],
"payloads": ["f11babba920d"],
"settlements": {
"mount": "eb79a9b3682a",
"dialog": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "browser.dialog",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "5071188ee492a4ced5be793b2dab32baa9750ee6535128635f274fd79198e2f1",
"platform": "darwin",
@@ -13,6 +13,11 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"786423f11435": {
"name": "browser.dialogDismiss#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogDismiss\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}",
"sent": 1
},
"9855d4ec3415": {
"busy": false,
"dialog": {
@@ -58,10 +63,6 @@
}
}
},
"e14582853169": {
"name": "browser.dialogDismiss#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogDismiss\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}"
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -78,7 +79,7 @@
"id": "dismissed",
"observation": {
"sender": ["be3e7ad116a5"],
"payloads": ["e14582853169"],
"payloads": ["786423f11435"],
"settlements": {
"mount": "eb79a9b3682a",
"dialog": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "browser.keyboard",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "eb2294c30af70ebc2bac092dc5105249ae8cf1941f750406622f7ff6dd70cc1b",
"platform": "darwin",
@@ -13,13 +13,22 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"04ae34c3208f": {
"name": "browser.keypress#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}"
},
"37ef5fe93769": {
"1bc6d9688999": {
"name": "browser.keyboardInsertText#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}",
"sent": 1
},
"2f4d80d09d24": {
"name": "browser.keypress#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}",
"sent": 2
},
"5fe64ef6c1f3": {
"name": "toast",
"value": {
"message": "Sent"
},
"sent": 1
},
"770254847b6a": {
"name": "browser.keyboardInsertText#1",
@@ -67,12 +76,6 @@
"keyboardValue": "",
"pointerModifiers": []
},
"c20546e0857f": {
"name": "toast",
"value": {
"message": "Sent"
}
},
"c532c7fdcc69": {
"name": "browser.keypress#1",
"args": [
@@ -124,14 +127,14 @@
"id": "typed",
"observation": {
"sender": ["770254847b6a", "c532c7fdcc69"],
"payloads": ["37ef5fe93769", "04ae34c3208f"],
"payloads": ["1bc6d9688999", "2f4d80d09d24"],
"settlements": {
"mount": "eb79a9b3682a",
"text": "eb79a9b3682a",
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
}
]
@@ -3,9 +3,9 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "73faa87b359a11959543542016295bb6b36a10934dd99ad5c1a77a4290a608cd",
"platform": "darwin",
@@ -13,9 +13,10 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e463da3d358": {
"0da10b838d9e": {
"name": "browser.mouseClick#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}",
"sent": 1
},
"5b621e308200": {
"name": "browser.mouseClick#1",
@@ -83,7 +84,7 @@
"id": "clicked",
"observation": {
"sender": ["5b621e308200"],
"payloads": ["1e463da3d358"],
"payloads": ["0da10b838d9e"],
"settlements": {
"mount": "eb79a9b3682a",
"click": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "browser.pointer-click",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "20779e28880cf62340bc34cef8f40a49311e11262ac069df909743da9b5500ff",
"platform": "darwin",
@@ -13,6 +13,16 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0da10b838d9e": {
"name": "browser.mouseClick#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}",
"sent": 1
},
"11a7e8034273": {
"name": "browser.mouseDown#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}",
"sent": 3
},
"1961908d1da1": {
"name": "browser.mouseDown#1",
"args": [
@@ -48,13 +58,10 @@
}
}
},
"1e463da3d358": {
"name": "browser.mouseClick#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}"
},
"278a20085af8": {
"25ad8c6e489e": {
"name": "browser.mouseMove#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}"
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}",
"sent": 2
},
"41b41cc39e88": {
"name": "browser.mouseUp#1",
@@ -102,9 +109,10 @@
"keyboardValue": "hello",
"pointerModifiers": []
},
"ad7da1632835": {
"name": "browser.mouseDown#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}"
"aa160e9b114e": {
"name": "browser.mouseUp#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}",
"sent": 4
},
"b3273afd3ec2": {
"name": "browser.mouseMove#1",
@@ -182,10 +190,6 @@
}
}
},
"eaa436587fe0": {
"name": "browser.mouseUp#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}"
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -202,7 +206,7 @@
"id": "clicked-by-fallback",
"observation": {
"sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"],
"payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"],
"payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"],
"settlements": {
"mount": "eb79a9b3682a",
"click": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "browser.wheel",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "e1bc21248ccff45ff217e385a51618b6f5724c037bfbefa03bb76a48dd4d793b",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"3ae1d19b9c51": {
"name": "browser.mouseMove#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}"
},
"56a99047a121": {
"name": "browser.mouseMove#1",
"args": [
@@ -53,6 +49,11 @@
}
}
},
"60d1415b69e8": {
"name": "browser.mouseMove#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}",
"sent": 1
},
"71b1fb55eafa": {
"name": "browser.mouseWheel#1",
"args": [
@@ -89,10 +90,6 @@
}
}
},
"8bf9a97ea141": {
"name": "browser.mouseWheel#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}"
},
"9855d4ec3415": {
"busy": false,
"dialog": {
@@ -104,6 +101,11 @@
"keyboardValue": "hello",
"pointerModifiers": []
},
"d2d492cca894": {
"name": "browser.mouseWheel#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}",
"sent": 2
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -120,7 +122,7 @@
"id": "scrolled",
"observation": {
"sender": ["56a99047a121", "71b1fb55eafa"],
"payloads": ["3ae1d19b9c51", "8bf9a97ea141"],
"payloads": ["60d1415b69e8", "d2d492cca894"],
"settlements": {
"mount": "eb79a9b3682a",
"wheel": "eb79a9b3682a"
@@ -0,0 +1,215 @@
{
"operation": "clipboard.image-terminal-attachment",
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "d4031721b16d7c281c544e7b2eef774fd20dda1890d7ebaadcbbb1eda4d276fd",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"037a93bf236b": {
"name": "terminal.send#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false}}",
"sent": 4
},
"1c2f6fe81321": {
"name": "before-terminal-send",
"value": {
"terminal": "terminal-1"
},
"sent": 3
},
"308e09c6a619": {
"name": "terminal.send#1",
"args": [
{
"name": "method",
"value": "terminal.send"
},
{
"name": "params",
"value": {
"enter": false,
"terminal": "terminal-1",
"text": "\u001b[200~/tmp/img.png\u001b[201~ "
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-4",
"ok": true,
"result": {
"send": {
"accepted": false
}
}
}
}
},
"5f71b4d3d25c": {
"name": "upload-start",
"value": {},
"sent": 0
},
"72c805fadcfb": {
"name": "clipboard.appendImageUploadChunk#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}",
"sent": 2
},
"7e48c58139e5": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"uploadId": "upload-1"
}
}
}
},
"7ed3d39f0607": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": false
},
"8aa742456efd": {
"attached": false,
"failure": {
"$rpc": "null"
}
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"e93276a9971b": {
"name": "clipboard.commitImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.commitImageUpload"
},
{
"name": "params",
"value": {
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": "/tmp/img.png"
}
}
},
"e9a3deaf4515": {
"name": "clipboard.commitImageUpload#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}",
"sent": 3
},
"f1a3d38271bc": {
"name": "clipboard.appendImageUploadChunk#1",
"args": [
{
"name": "method",
"value": "clipboard.appendImageUploadChunk"
},
{
"name": "params",
"value": {
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"offset": 0,
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"received": 32
}
}
}
}
},
"recording": {
"scenario": "clipboard-image-attachment-anonymous",
"checkpoints": [
{
"id": "rejected",
"observation": {
"sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b", "308e09c6a619"],
"payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515", "037a93bf236b"],
"settlements": {
"anonymous": "7ed3d39f0607"
},
"state": "8aa742456efd",
"effects": ["5f71b4d3d25c", "1c2f6fe81321"]
}
}
]
}
}
@@ -0,0 +1,173 @@
{
"operation": "clipboard.image-terminal-attachment",
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "ea04d03c15d3cb94be7fe111a8a6219c4e0304095679bbae62af623f5b36c9f4",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1c2f6fe81321": {
"name": "before-terminal-send",
"value": {
"terminal": "terminal-1"
},
"sent": 3
},
"5f71b4d3d25c": {
"name": "upload-start",
"value": {},
"sent": 0
},
"72c805fadcfb": {
"name": "clipboard.appendImageUploadChunk#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}",
"sent": 2
},
"7e48c58139e5": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"uploadId": "upload-1"
}
}
}
},
"7ed3d39f0607": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": false
},
"8aa742456efd": {
"attached": false,
"failure": {
"$rpc": "null"
}
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"e93276a9971b": {
"name": "clipboard.commitImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.commitImageUpload"
},
{
"name": "params",
"value": {
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": "/tmp/img.png"
}
}
},
"e9a3deaf4515": {
"name": "clipboard.commitImageUpload#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}",
"sent": 3
},
"f1a3d38271bc": {
"name": "clipboard.appendImageUploadChunk#1",
"args": [
{
"name": "method",
"value": "clipboard.appendImageUploadChunk"
},
{
"name": "params",
"value": {
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"offset": 0,
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"received": 32
}
}
}
}
},
"recording": {
"scenario": "clipboard-image-attachment-blocked-before-send",
"checkpoints": [
{
"id": "blocked",
"observation": {
"sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b"],
"payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515"],
"settlements": {
"blocked": "7ed3d39f0607"
},
"state": "8aa742456efd",
"effects": ["5f71b4d3d25c", "1c2f6fe81321"]
}
}
]
}
}
@@ -0,0 +1,46 @@
{
"operation": "clipboard.image-terminal-attachment",
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "e6be7d5dd6b4f5083627a3ba864b1b040d71bf72b60ad940b7d0d575964a7b80",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"7ed3d39f0607": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": false
},
"8aa742456efd": {
"attached": false,
"failure": {
"$rpc": "null"
}
}
},
"recording": {
"scenario": "clipboard-image-attachment-cancelled",
"checkpoints": [
{
"id": "no-wire",
"observation": {
"sender": [],
"payloads": [],
"settlements": {
"cancelled": "7ed3d39f0607"
},
"state": "8aa742456efd",
"effects": []
}
}
]
}
}
@@ -0,0 +1,219 @@
{
"operation": "clipboard.image-terminal-attachment",
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "60273f74d8fe869723cbbd1a459d7d789a92e07a0f1e9444b42e2d7767e5bec1",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1c2f6fe81321": {
"name": "before-terminal-send",
"value": {
"terminal": "terminal-1"
},
"sent": 3
},
"5f71b4d3d25c": {
"name": "upload-start",
"value": {},
"sent": 0
},
"72c805fadcfb": {
"name": "clipboard.appendImageUploadChunk#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}",
"sent": 2
},
"7e48c58139e5": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"uploadId": "upload-1"
}
}
}
},
"84e5ca07cb7a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": true
},
"860d6a5b4609": {
"name": "terminal.send#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}",
"sent": 4
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"b7a44aafa946": {
"attached": true,
"failure": {
"$rpc": "null"
}
},
"bc40e57896c9": {
"name": "terminal.send#1",
"args": [
{
"name": "method",
"value": "terminal.send"
},
{
"name": "params",
"value": {
"client": {
"id": "device-token-1",
"type": "mobile"
},
"enter": false,
"terminal": "terminal-1",
"text": "\u001b[200~/tmp/img.png\u001b[201~ "
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-4",
"ok": true,
"result": {
"send": {
"accepted": true
}
}
}
}
},
"e93276a9971b": {
"name": "clipboard.commitImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.commitImageUpload"
},
{
"name": "params",
"value": {
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": "/tmp/img.png"
}
}
},
"e9a3deaf4515": {
"name": "clipboard.commitImageUpload#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}",
"sent": 3
},
"f1a3d38271bc": {
"name": "clipboard.appendImageUploadChunk#1",
"args": [
{
"name": "method",
"value": "clipboard.appendImageUploadChunk"
},
{
"name": "params",
"value": {
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"offset": 0,
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"received": 32
}
}
}
}
},
"recording": {
"scenario": "clipboard-image-attachment-pasted",
"checkpoints": [
{
"id": "attached",
"observation": {
"sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b", "bc40e57896c9"],
"payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515", "860d6a5b4609"],
"settlements": {
"normal": "84e5ca07cb7a"
},
"state": "b7a44aafa946",
"effects": ["5f71b4d3d25c", "1c2f6fe81321"]
}
}
]
}
}
@@ -0,0 +1,93 @@
{
"operation": "clipboard.image-terminal-attachment",
"family": "clipboard.image-attachment",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "e7f492523421873f045726e15ec95eac26d43f7e971a33fd89ec1a9749492987",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"5f71b4d3d25c": {
"name": "upload-start",
"value": {},
"sent": 0
},
"765ab192e1a5": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Image is too large",
"isRpcDeliveryUnknown": false
}
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"cc325ad637ea": {
"attached": "unattached",
"failure": "Image is too large"
},
"ec6fd7f06461": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "too_large",
"message": "Image is too large"
},
"id": "frame-1",
"ok": false
}
}
}
},
"recording": {
"scenario": "clipboard-image-attachment-upload-refused",
"checkpoints": [
{
"id": "upload-refused",
"observation": {
"sender": ["ec6fd7f06461"],
"payloads": ["8dfd1f053efc"],
"settlements": {
"normal": "765ab192e1a5"
},
"state": "cc325ad637ea",
"effects": ["5f71b4d3d25c"]
}
}
]
}
}
@@ -0,0 +1,168 @@
{
"operation": "clipboard.image-upload",
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "195c2f15d81c70012ea88750ab3f84bfe512f7e422f7d2d09fb7919bd9cfd85a",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"3de611958398": {
"name": "clipboard.appendImageUploadChunk#1",
"args": [
{
"name": "method",
"value": "clipboard.appendImageUploadChunk"
},
{
"name": "params",
"value": {
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"offset": 0,
"uploadId": "upload-2"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "upload_expired",
"message": "Upload slot expired"
},
"id": "frame-2",
"ok": false
}
}
},
"48054ee45c76": {
"name": "clipboard.appendImageUploadChunk#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}",
"sent": 2
},
"63762ba12023": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":null}}",
"sent": 1
},
"9cfc668f592b": {
"name": "clipboard.abortImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.abortImageUpload"
},
{
"name": "params",
"value": {
"uploadId": "upload-2"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"aborted": true
}
}
}
},
"b49be31d506e": {
"failure": "Upload slot expired",
"path": "unsaved"
},
"bf6d0aeb2281": {
"name": "clipboard.abortImageUpload#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.abortImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}",
"sent": 3
},
"ead0111942f4": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Upload slot expired",
"isRpcDeliveryUnknown": false
}
},
"eddc5bc46b9b": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": {
"$rpc": "null"
},
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"uploadId": "upload-2"
}
}
}
}
},
"recording": {
"scenario": "clipboard-image-upload-aborts-on-chunk-failure",
"checkpoints": [
{
"id": "aborted",
"observation": {
"sender": ["eddc5bc46b9b", "3de611958398", "9cfc668f592b"],
"payloads": ["63762ba12023", "48054ee45c76", "bf6d0aeb2281"],
"settlements": {
"local": "ead0111942f4"
},
"state": "b49be31d506e",
"effects": []
}
}
]
}
}
@@ -0,0 +1,161 @@
{
"operation": "clipboard.image-upload",
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "160101326d39705c2036c12646ff6b13d997a1cf91bdc86e5e29279ba31867e4",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"72c805fadcfb": {
"name": "clipboard.appendImageUploadChunk#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}",
"sent": 2
},
"7ab518750e0f": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": "/tmp/img.png"
},
"7e48c58139e5": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"uploadId": "upload-1"
}
}
}
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"a77b999a5f7c": {
"failure": {
"$rpc": "null"
},
"path": "/tmp/img.png"
},
"e93276a9971b": {
"name": "clipboard.commitImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.commitImageUpload"
},
{
"name": "params",
"value": {
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": "/tmp/img.png"
}
}
},
"e9a3deaf4515": {
"name": "clipboard.commitImageUpload#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}",
"sent": 3
},
"f1a3d38271bc": {
"name": "clipboard.appendImageUploadChunk#1",
"args": [
{
"name": "method",
"value": "clipboard.appendImageUploadChunk"
},
{
"name": "params",
"value": {
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"offset": 0,
"uploadId": "upload-1"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"received": 32
}
}
}
}
},
"recording": {
"scenario": "clipboard-image-upload-chunked",
"checkpoints": [
{
"id": "uploaded",
"observation": {
"sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b"],
"payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515"],
"settlements": {
"remote": "7ab518750e0f"
},
"state": "a77b999a5f7c",
"effects": []
}
}
]
}
}
@@ -0,0 +1,123 @@
{
"operation": "clipboard.image-upload",
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "89ffa843d08ee27dd44b7bba507ce84661b0df73c35f7a8c273e004604710dc9",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"12f2bb1c7b16": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"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
}
}
},
"61599dd8e71a": {
"name": "clipboard.saveImageAsTempFile#1",
"args": [
{
"name": "method",
"value": "clipboard.saveImageAsTempFile"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": "/tmp/legacy.png"
}
}
},
"7f1260e77032": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": "/tmp/legacy.png"
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"923de2c0221d": {
"failure": {
"$rpc": "null"
},
"path": "/tmp/legacy.png"
},
"d6a7fe2e0164": {
"name": "clipboard.saveImageAsTempFile#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}",
"sent": 2
}
},
"recording": {
"scenario": "clipboard-image-upload-single-frame-fallback",
"checkpoints": [
{
"id": "fell-back",
"observation": {
"sender": ["12f2bb1c7b16", "61599dd8e71a"],
"payloads": ["8dfd1f053efc", "d6a7fe2e0164"],
"settlements": {
"remote": "7f1260e77032"
},
"state": "923de2c0221d",
"effects": []
}
}
]
}
}
@@ -0,0 +1,88 @@
{
"operation": "clipboard.image-upload",
"family": "clipboard.image-upload",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "bf0227939c2d41d6a1ebc5b07a31196043e78f1580811bd32ec6fc5f447f5934",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"765ab192e1a5": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Image is too large",
"isRpcDeliveryUnknown": false
}
},
"8dfd1f053efc": {
"name": "clipboard.startImageUpload#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}",
"sent": 1
},
"a69f0ea71c3c": {
"failure": "Image is too large",
"path": "unsaved"
},
"ec6fd7f06461": {
"name": "clipboard.startImageUpload#1",
"args": [
{
"name": "method",
"value": "clipboard.startImageUpload"
},
{
"name": "params",
"value": {
"connectionId": "connection-1",
"expectedBase64Length": 32
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "too_large",
"message": "Image is too large"
},
"id": "frame-1",
"ok": false
}
}
}
},
"recording": {
"scenario": "clipboard-image-upload-start-refused",
"checkpoints": [
{
"id": "start-refused",
"observation": {
"sender": ["ec6fd7f06461"],
"payloads": ["8dfd1f053efc"],
"settlements": {
"remote": "765ab192e1a5"
},
"state": "a69f0ea71c3c",
"effects": []
}
}
]
}
}
@@ -0,0 +1,289 @@
{
"operation": "accounts.codex-reset-credit",
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "00260be9809576607ac91bfacd9fa6cc4f8a190c6b88804c977ea07d36d7162e",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0a07efb53f1e": {
"settled": {
"$rpc": "null"
}
},
"31c5054bc660": {
"name": "accounts.consumeCodexResetCredit#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}",
"sent": 1
},
"60304d1e19bb": {
"settled": {
"attemptJournalRetained": false,
"outcome": "reset"
}
},
"90f55bfe00c2": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"ab755576c214": {
"name": "device-store.setItem",
"value": {
"key": "orca:codex-reset-credit-attempt:v1:0832055c2fa90e8e145c588ad4db656a2fc2840ed2e851a28494eae769db9b3e",
"value": "{\"v\":1,\"hostId\":\"host-1\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"},\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\"}"
},
"sent": 0
},
"c4a98628ea44": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"outcome": "reset",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
}
},
"fed9e1669a83": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"attemptJournalRetained": false,
"outcome": "reset",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
},
"recording": {
"scenario": "codex-reset-credit-consumed",
"checkpoints": [
{
"id": "requested",
"observation": {
"sender": ["90f55bfe00c2"],
"payloads": ["31c5054bc660"],
"settlements": {
"confirm": "9270aeb7d9c6"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "consumed",
"observation": {
"sender": ["c4a98628ea44"],
"payloads": ["31c5054bc660"],
"settlements": {
"confirm": "fed9e1669a83"
},
"state": "60304d1e19bb",
"effects": ["ab755576c214"]
}
}
]
}
}
@@ -0,0 +1,288 @@
{
"operation": "accounts.codex-reset-credit",
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "d85a4031b701e563941afcdd7375cf78a1ee1487a0dab722f8516c2bc8d3dcee",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"074c5080c062": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"attemptJournalRetained": false,
"outcome": "alreadyRedeemed",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
},
"0a07efb53f1e": {
"settled": {
"$rpc": "null"
}
},
"0e5764df4bfd": {
"settled": {
"attemptJournalRetained": false,
"outcome": "alreadyRedeemed"
}
},
"1c9f0c57c36d": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "11111111-1111-4111-8111-111111111111"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"outcome": "alreadyRedeemed",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
}
},
"897e4d77e2a0": {
"name": "accounts.consumeCodexResetCredit#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"11111111-1111-4111-8111-111111111111\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}",
"sent": 1
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"c19953b572ef": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "11111111-1111-4111-8111-111111111111"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"c55ed0a410f8": {
"name": "device-store.removeItem",
"value": {
"key": "orca:codex-reset-credit-attempt:v1:0832055c2fa90e8e145c588ad4db656a2fc2840ed2e851a28494eae769db9b3e"
},
"sent": 1
}
},
"recording": {
"scenario": "codex-reset-credit-resumed",
"checkpoints": [
{
"id": "requested",
"observation": {
"sender": ["c19953b572ef"],
"payloads": ["897e4d77e2a0"],
"settlements": {
"confirm": "9270aeb7d9c6"
},
"state": "0a07efb53f1e",
"effects": []
}
},
{
"id": "consumed",
"observation": {
"sender": ["1c9f0c57c36d"],
"payloads": ["897e4d77e2a0"],
"settlements": {
"confirm": "074c5080c062"
},
"state": "0e5764df4bfd",
"effects": ["c55ed0a410f8"]
}
}
]
}
}
@@ -3,9 +3,9 @@
"family": "components.codex-reset-capability",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "88570b9d2376863c7f88d7ed8c745a5fb771deddbc7409f8944fa861dd4bdce9",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"578b9d38ecc7": {
"supported": true
},
@@ -58,6 +54,11 @@
"startedAt": 0,
"settledAt": 0,
"value": true
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
}
},
"recording": {
@@ -67,7 +68,7 @@
"id": "settled",
"observation": {
"sender": ["6a0093a8288b"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"probe": "84e5ca07cb7a"
},
@@ -3,9 +3,9 @@
"family": "components.setup-script",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "d4052f119c7ed68dc922c8beeb0074701f1532b10e48e284fb71aa165a17e437",
"platform": "darwin",
@@ -104,6 +104,11 @@
"$rpc": "null"
}
},
"d9f709e8100e": {
"name": "repo.hooks#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -111,10 +116,6 @@
"value": {
"$rpc": "undefined"
}
},
"f5dc0ce1e7b8": {
"name": "repo.hooks#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}"
}
},
"recording": {
@@ -124,7 +125,7 @@
"id": "hooks-pending",
"observation": {
"sender": ["28e75475e9e0"],
"payloads": ["f5dc0ce1e7b8"],
"payloads": ["d9f709e8100e"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -136,7 +137,7 @@
"id": "settled",
"observation": {
"sender": ["3515a8adcd6d"],
"payloads": ["f5dc0ce1e7b8"],
"payloads": ["d9f709e8100e"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -3,9 +3,9 @@
"family": "components.execution-target-local",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "2e0d3021621698b63117e250dd5e9762b5bfb3dc1911e27c510e9539bd2ee6c9",
"platform": "darwin",
@@ -97,9 +97,10 @@
}
}
},
"cf32edc950ac": {
"c56f76942e16": {
"name": "preflight.detectAgents#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
@@ -117,7 +118,7 @@
"id": "detect-pending",
"observation": {
"sender": ["3579737ce1a6"],
"payloads": ["cf32edc950ac"],
"payloads": ["c56f76942e16"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -129,7 +130,7 @@
"id": "settled",
"observation": {
"sender": ["6806cee7c59f"],
"payloads": ["cf32edc950ac"],
"payloads": ["c56f76942e16"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -3,9 +3,9 @@
"family": "components.execution-target",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "82b891c7a7a2f255e2d22a372ee6112c9cc1f650259244e87f2e8c1356e97e5f",
"platform": "darwin",
@@ -13,9 +13,15 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0a7094a9a9ac": {
"name": "preflight.detectRemoteAgents#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}"
"0b078c630b23": {
"name": "preflight.detectRemoteAgents#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}",
"sent": 4
},
"14b354ce0ded": {
"name": "ssh.getState#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}",
"sent": 1
},
"4e2e9a890ced": {
"detected": ["codex"],
@@ -28,10 +34,6 @@
"status": "connected"
}
},
"57095302d8c1": {
"name": "ssh.connect#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}"
},
"6004e75ef39e": {
"name": "preflight.detectRemoteAgents#2",
"args": [
@@ -57,9 +59,10 @@
"startedAt": 0
}
},
"66a99391260b": {
"name": "preflight.detectRemoteAgents#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}"
"77f42ff60d15": {
"name": "ssh.connect#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}",
"sent": 3
},
"81c9c204b647": {
"name": "ssh.connect#1",
@@ -172,6 +175,11 @@
}
}
},
"bb1f9f7430c4": {
"name": "preflight.detectRemoteAgents#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}",
"sent": 2
},
"ca123825be51": {
"name": "ssh.getState#1",
"args": [
@@ -219,10 +227,6 @@
"value": {
"$rpc": "undefined"
}
},
"f9dfbe0c0ea7": {
"name": "ssh.getState#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}"
}
},
"recording": {
@@ -232,7 +236,7 @@
"id": "state-pending",
"observation": {
"sender": ["ca123825be51"],
"payloads": ["f9dfbe0c0ea7"],
"payloads": ["14b354ce0ded"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -244,7 +248,7 @@
"id": "settled",
"observation": {
"sender": ["89aa7a3bd619", "9a892112da5b", "81c9c204b647", "6004e75ef39e"],
"payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"],
"payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"],
"settlements": {
"mount": "eb79a9b3682a",
"connect": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "b7579013e65f0f5fe503c10cf2294cb9d4ac1938108275de001db6e02cf2cc21",
"platform": "darwin",
@@ -13,9 +13,10 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1bf084a7263a": {
"200c85aa119b": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 2
},
"229fc359ecb7": {
"status": "fulfilled",
@@ -28,26 +29,6 @@
}
}
},
"25793d7c00a5": {
"name": "repo.list#2",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}"
},
"31bd76fdf517": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"4337656f224b": {
"name": "git.branchCompare#2",
"json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}"
},
"54ee9546dc6f": {
"name": "git.branchCompare#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}"
},
"594101d24d72": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}"
},
"632a4405f3fe": {
"name": "repo.list#2",
"args": [
@@ -157,6 +138,16 @@
}
}
},
"74dba677d335": {
"name": "git.branchCompare#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}",
"sent": 3
},
"768c9c0dbef7": {
"name": "repo.list#2",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}",
"sent": 5
},
"78b49c8df1cc": {
"name": "git.branchCompare#1",
"args": [
@@ -228,6 +219,11 @@
}
}
},
"8bee98be77d2": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 5
},
"9f5d0ac26269": {
"branchCompare": {
"result": {
@@ -247,6 +243,16 @@
"diff": "unloaded",
"snapshot": "unloaded"
},
"ad49fec56c14": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}",
"sent": 2
},
"be3553f1a790": {
"name": "git.branchCompare#2",
"json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}",
"sent": 6
},
"eb882796a820": {
"name": "repo.list#1",
"args": [
@@ -303,7 +309,7 @@
"id": "unavailable",
"observation": {
"sender": ["67a8e862c3ba", "eb882796a820", "78b49c8df1cc"],
"payloads": ["1bf084a7263a", "594101d24d72", "54ee9546dc6f"],
"payloads": ["200c85aa119b", "ad49fec56c14", "74dba677d335"],
"settlements": {
"unavailable": "ef9013648cfb"
},
@@ -323,12 +329,12 @@
"6e017fb85c11"
],
"payloads": [
"1bf084a7263a",
"594101d24d72",
"54ee9546dc6f",
"31bd76fdf517",
"25793d7c00a5",
"4337656f224b"
"200c85aa119b",
"ad49fec56c14",
"74dba677d335",
"8bee98be77d2",
"768c9c0dbef7",
"be3553f1a790"
],
"settlements": {
"unavailable": "ef9013648cfb",
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "6c71b0f217a464dffbc6f5736605b840edac74ebaf0664edc0ab85984bb64328",
"platform": "darwin",
@@ -22,10 +22,6 @@
"kind": "binary"
}
},
"37ae1f091153": {
"name": "git.branchDiff#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchDiff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"compare\":{\"baseRef\":\"origin/main\",\"baseOid\":\"base-oid\",\"headOid\":\"head-oid\",\"mergeBase\":\"merge-base\"}}}"
},
"38fb361f406c": {
"status": "rejected",
"startedAt": 0,
@@ -44,6 +40,11 @@
},
"snapshot": "unloaded"
},
"67cae2e16a3b": {
"name": "git.branchDiff#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchDiff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"compare\":{\"baseRef\":\"origin/main\",\"baseOid\":\"base-oid\",\"headOid\":\"head-oid\",\"mergeBase\":\"merge-base\"}}}",
"sent": 1
},
"ce89618d90b4": {
"name": "git.branchDiff#1",
"args": [
@@ -92,7 +93,7 @@
"id": "branch",
"observation": {
"sender": ["ce89618d90b4"],
"payloads": ["37ae1f091153"],
"payloads": ["67cae2e16a3b"],
"settlements": {
"branch": "365c17523d76"
},
@@ -104,7 +105,7 @@
"id": "no-compare",
"observation": {
"sender": ["ce89618d90b4"],
"payloads": ["37ae1f091153"],
"payloads": ["67cae2e16a3b"],
"settlements": {
"branch": "365c17523d76",
"no-compare": "38fb361f406c"
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "3e7fa054f77587b9ac24b6732a9926273b0f2ff35a266e633d0ccd1dada932cc",
"platform": "darwin",
@@ -13,6 +13,11 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"231aaf164318": {
"name": "git.branchCompare#1",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}",
"sent": 5
},
"2432ad799433": {
"name": "repo.list#1",
"args": [
@@ -76,18 +81,6 @@
"startedAt": 0
}
},
"3179b4e89c80": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}"
},
"317a243394fa": {
"name": "git.status#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"31bd76fdf517": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"3ec8052ccdb3": {
"name": "worktree.show#1",
"args": [
@@ -124,10 +117,6 @@
}
}
},
"3fa5df34c660": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"3feccf790548": {
"name": "git.status#1",
"args": [
@@ -176,14 +165,30 @@
}
}
},
"75ceb6a12cfd": {
"name": "git.branchCompare#1",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}"
"40b17d95f271": {
"name": "git.status#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 1
},
"67fead2b3d30": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}",
"sent": 4
},
"6f43dceb9058": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 4
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"c0edcb195574": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 4
},
"c70359272e10": {
"name": "worktree.show#1",
"args": [
@@ -316,7 +321,7 @@
"id": "notes-refused",
"observation": {
"sender": ["3feccf790548", "c70359272e10", "26accd69bc48", "ed34044b22f4"],
"payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "31bd76fdf517"],
"payloads": ["40b17d95f271", "c0edcb195574", "67fead2b3d30", "6f43dceb9058"],
"settlements": {
"snapshot": "9270aeb7d9c6"
},
@@ -335,11 +340,11 @@
"da3aebbee6f2"
],
"payloads": [
"317a243394fa",
"3fa5df34c660",
"3179b4e89c80",
"31bd76fdf517",
"75ceb6a12cfd"
"40b17d95f271",
"c0edcb195574",
"67fead2b3d30",
"6f43dceb9058",
"231aaf164318"
],
"settlements": {
"snapshot": "eae2ae6e9c42"
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "d1b04fe2945a2799ac8465d8fd9e45ab790ae29b401a0cf4fef68ebc5fa3cc76",
"platform": "darwin",
@@ -31,9 +31,15 @@
"kind": "deleted"
}
},
"505493c5c2e4": {
"2eee9b17f40e": {
"name": "git.diff#3",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}"
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}",
"sent": 3
},
"414ef6b1967c": {
"name": "git.diff#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}",
"sent": 1
},
"5768cc374e1d": {
"branchCompare": "unloaded",
@@ -43,10 +49,6 @@
},
"snapshot": "unloaded"
},
"5d5bb4ccf70d": {
"name": "git.diff#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}"
},
"67daf7391fee": {
"status": "rejected",
"startedAt": 0,
@@ -57,10 +59,6 @@
"isRpcDeliveryUnknown": false
}
},
"7994a1073c64": {
"name": "git.diff#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}"
},
"a58da3417608": {
"name": "git.diff#3",
"args": [
@@ -97,6 +95,11 @@
}
}
},
"b5ca1f0a42b7": {
"name": "git.diff#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}",
"sent": 2
},
"c40409188ab0": {
"name": "git.diff#2",
"args": [
@@ -185,7 +188,7 @@
"id": "diff-too-large",
"observation": {
"sender": ["dde75a860803"],
"payloads": ["5d5bb4ccf70d"],
"payloads": ["414ef6b1967c"],
"settlements": {
"diff-too-large": "0698901154de"
},
@@ -197,7 +200,7 @@
"id": "deleted",
"observation": {
"sender": ["dde75a860803", "c40409188ab0"],
"payloads": ["5d5bb4ccf70d", "7994a1073c64"],
"payloads": ["414ef6b1967c", "b5ca1f0a42b7"],
"settlements": {
"diff-too-large": "0698901154de",
"deleted": "2ecd0366533c"
@@ -210,7 +213,7 @@
"id": "refused",
"observation": {
"sender": ["dde75a860803", "c40409188ab0", "a58da3417608"],
"payloads": ["5d5bb4ccf70d", "7994a1073c64", "505493c5c2e4"],
"payloads": ["414ef6b1967c", "b5ca1f0a42b7", "2eee9b17f40e"],
"settlements": {
"diff-too-large": "0698901154de",
"deleted": "2ecd0366533c",
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "fa0a81462196458fdded5b7c00aa4e73975c2111afdd8dac115871490a481da2",
"platform": "darwin",
@@ -13,6 +13,11 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"231aaf164318": {
"name": "git.branchCompare#1",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}",
"sent": 5
},
"2432ad799433": {
"name": "repo.list#1",
"args": [
@@ -51,18 +56,6 @@
}
}
},
"3179b4e89c80": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}"
},
"317a243394fa": {
"name": "git.status#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"31bd76fdf517": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"3ec8052ccdb3": {
"name": "worktree.show#1",
"args": [
@@ -99,10 +92,6 @@
}
}
},
"3fa5df34c660": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
},
"3feccf790548": {
"name": "git.status#1",
"args": [
@@ -151,6 +140,11 @@
}
}
},
"40b17d95f271": {
"name": "git.status#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 1
},
"4cb3f61eba79": {
"name": "worktree.show#2",
"args": [
@@ -189,9 +183,15 @@
}
}
},
"75ceb6a12cfd": {
"name": "git.branchCompare#1",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}"
"67fead2b3d30": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}",
"sent": 4
},
"6f43dceb9058": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 4
},
"9270aeb7d9c6": {
"status": "pending",
@@ -222,6 +222,11 @@
"startedAt": 0
}
},
"c0edcb195574": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 4
},
"da3aebbee6f2": {
"name": "git.branchCompare#1",
"args": [
@@ -542,7 +547,7 @@
"id": "pending",
"observation": {
"sender": ["b8b93d3f8005"],
"payloads": ["317a243394fa"],
"payloads": ["40b17d95f271"],
"settlements": {
"snapshot": "9270aeb7d9c6"
},
@@ -561,11 +566,11 @@
"da3aebbee6f2"
],
"payloads": [
"317a243394fa",
"3fa5df34c660",
"3179b4e89c80",
"31bd76fdf517",
"75ceb6a12cfd"
"40b17d95f271",
"c0edcb195574",
"67fead2b3d30",
"6f43dceb9058",
"231aaf164318"
],
"settlements": {
"snapshot": "f880a1519497"
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "182f37fbe6ae7c0694b50d603ecd4a03bc9a8c7c9738ebb775b47eb5f3b9660f",
"platform": "darwin",
@@ -22,9 +22,10 @@
"message": "Update Orca desktop to review changes on mobile."
}
},
"317a243394fa": {
"40b17d95f271": {
"name": "git.status#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}",
"sent": 1
},
"55c07df45014": {
"branchCompare": "unloaded",
@@ -76,7 +77,7 @@
"id": "unavailable",
"observation": {
"sender": ["93b9682c496c"],
"payloads": ["317a243394fa"],
"payloads": ["40b17d95f271"],
"settlements": {
"unavailable": "14804a5e414f"
},
@@ -3,9 +3,9 @@
"family": "session.diff-review",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "538b68485a2268d311fcc7e13ff1a3e446ba4aa010bc18633af8e938a6688257",
"platform": "darwin",
@@ -13,6 +13,16 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"2eee9b17f40e": {
"name": "git.diff#3",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}",
"sent": 3
},
"3a70a3afc2d9": {
"name": "git.diff#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":true}}",
"sent": 2
},
"411c5ed8537e": {
"name": "git.diff#2",
"args": [
@@ -49,9 +59,10 @@
}
}
},
"505493c5c2e4": {
"name": "git.diff#3",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}"
"414ef6b1967c": {
"name": "git.diff#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}",
"sent": 1
},
"55227363ca22": {
"status": "rejected",
@@ -63,10 +74,6 @@
"isRpcDeliveryUnknown": false
}
},
"5d5bb4ccf70d": {
"name": "git.diff#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}"
},
"66c8c0206a53": {
"name": "git.diff#3",
"args": [
@@ -165,10 +172,6 @@
}
}
},
"f5b40bc1bb4b": {
"name": "git.diff#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":true}}"
},
"f68945ffc2ea": {
"branchCompare": "unloaded",
"diff": {
@@ -185,7 +188,7 @@
"id": "binary",
"observation": {
"sender": ["9d975272847c"],
"payloads": ["5d5bb4ccf70d"],
"payloads": ["414ef6b1967c"],
"settlements": {
"binary": "84090dfad90d"
},
@@ -197,7 +200,7 @@
"id": "too-large",
"observation": {
"sender": ["9d975272847c", "411c5ed8537e"],
"payloads": ["5d5bb4ccf70d", "f5b40bc1bb4b"],
"payloads": ["414ef6b1967c", "3a70a3afc2d9"],
"settlements": {
"binary": "84090dfad90d",
"too-large": "8675e0f40158"
@@ -210,7 +213,7 @@
"id": "invalid",
"observation": {
"sender": ["9d975272847c", "411c5ed8537e", "66c8c0206a53"],
"payloads": ["5d5bb4ccf70d", "f5b40bc1bb4b", "505493c5c2e4"],
"payloads": ["414ef6b1967c", "3a70a3afc2d9", "2eee9b17f40e"],
"settlements": {
"binary": "84090dfad90d",
"too-large": "8675e0f40158",
@@ -0,0 +1,144 @@
{
"operation": "files.terminal-path-tap",
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "a927e85c3ae58cd3b017955fe28aeffec6a5471b51d782f116639a3aaf4af77d",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"18cda90904c3": {
"name": "files.resolveTerminalPath#1",
"args": [
{
"name": "method",
"value": "files.resolveTerminalPath"
},
{
"name": "params",
"value": {
"crossWorkspace": true,
"cwd": "/repo",
"pathText": "src/app.ts",
"terminal": "terminal-1",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 10000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"exists": true,
"isDirectory": false,
"openTarget": {
"absolutePath": "/repo/src/app.ts",
"kind": "worktree-file",
"provider": "ssh",
"relativePath": "src/app.ts"
},
"relativePath": "src/app.ts"
}
}
}
},
"1d18c66a85d5": {
"name": "open-feedback",
"value": {},
"sent": 1
},
"52c3c247865d": {
"name": "files.open#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}",
"sent": 2
},
"9120b59f16ec": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}",
"sent": 1
},
"9a73d7a9fdc6": {
"name": "files.open#1",
"args": [
{
"name": "method",
"value": "files.open"
},
{
"name": "params",
"value": {
"relativePath": "src/app.ts",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "file_locked",
"message": "File is locked"
},
"id": "frame-2",
"ok": false
}
}
},
"c7ce9c8dc60e": {
"activeSessionTabId": "tab-source",
"failed": 1,
"switched": {
"$rpc": "null"
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "file-tap-open-refused",
"checkpoints": [
{
"id": "open-refused",
"observation": {
"sender": ["18cda90904c3", "9a73d7a9fdc6"],
"payloads": ["9120b59f16ec", "52c3c247865d"],
"settlements": {
"tap": "eb79a9b3682a"
},
"state": "c7ce9c8dc60e",
"effects": ["1d18c66a85d5"]
}
}
]
}
}
@@ -0,0 +1,174 @@
{
"operation": "files.terminal-path-tap",
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "297ea4075333e178ca20247eb0abf6600efb44fe2b33f5142d1c1cabffb5a2d3",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"18cda90904c3": {
"name": "files.resolveTerminalPath#1",
"args": [
{
"name": "method",
"value": "files.resolveTerminalPath"
},
{
"name": "params",
"value": {
"crossWorkspace": true,
"cwd": "/repo",
"pathText": "src/app.ts",
"terminal": "terminal-1",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 10000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"exists": true,
"isDirectory": false,
"openTarget": {
"absolutePath": "/repo/src/app.ts",
"kind": "worktree-file",
"provider": "ssh",
"relativePath": "src/app.ts"
},
"relativePath": "src/app.ts"
}
}
}
},
"1d18c66a85d5": {
"name": "open-feedback",
"value": {},
"sent": 1
},
"4301fd620304": {
"name": "fetch-session-tabs",
"value": {},
"sent": 2
},
"52c3c247865d": {
"name": "files.open#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}",
"sent": 2
},
"9120b59f16ec": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}",
"sent": 1
},
"b765beef262e": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": [
{
"id": "tab-opened",
"relativePath": "src/app.ts"
}
]
},
"d9a357a79330": {
"name": "files.open#1",
"args": [
{
"name": "method",
"value": "files.open"
},
{
"name": "params",
"value": {
"relativePath": "src/app.ts",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 15000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"opened": true
}
}
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"f8a009b4a36e": {
"activeSessionTabId": "tab-opened",
"failed": 0,
"switched": {
"id": "tab-opened",
"relativePath": "src/app.ts"
}
}
},
"recording": {
"scenario": "file-tap-opens-worktree-file",
"checkpoints": [
{
"id": "switched",
"observation": {
"sender": ["18cda90904c3", "d9a357a79330"],
"payloads": ["9120b59f16ec", "52c3c247865d"],
"settlements": {
"tap": "eb79a9b3682a",
"list": "b765beef262e"
},
"state": "f8a009b4a36e",
"effects": ["1d18c66a85d5", "4301fd620304"]
}
},
{
"id": "settled",
"observation": {
"sender": ["18cda90904c3", "d9a357a79330"],
"payloads": ["9120b59f16ec", "52c3c247865d"],
"settlements": {
"tap": "eb79a9b3682a",
"list": "b765beef262e"
},
"state": "f8a009b4a36e",
"effects": ["1d18c66a85d5", "4301fd620304"]
}
}
]
}
}
@@ -0,0 +1,121 @@
{
"operation": "files.terminal-path-tap",
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "f1844c2608ce90250fddfc78c0b35bb1bf3647598a5ab2914eca0d8cb4403a38",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1d18c66a85d5": {
"name": "open-feedback",
"value": {},
"sent": 1
},
"403de322e21f": {
"name": "files.resolveTerminalPath#1",
"args": [
{
"name": "method",
"value": "files.resolveTerminalPath"
},
{
"name": "params",
"value": {
"crossWorkspace": true,
"cwd": "/repo",
"pathText": "src/app.ts",
"terminal": "terminal-1",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 10000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"exists": true,
"isDirectory": false,
"openTarget": {
"absolutePath": "/logs/run.txt",
"grantId": "grant-1",
"kind": "absolute-file"
}
}
}
}
},
"53fb9b1f36f9": {
"activeSessionTabId": "tab-source",
"failed": 0,
"switched": {
"$rpc": "null"
}
},
"9120b59f16ec": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}",
"sent": 1
},
"e8e7c23384dc": {
"name": "push-preview-route",
"value": {
"params": {
"absolutePath": "/logs/run.txt",
"cwd": "/repo",
"grantId": "grant-1",
"hostId": "host-1",
"name": "run.txt",
"pathText": "src/app.ts",
"source": "terminalArtifact",
"terminal": "terminal-1",
"worktreeId": "workspace-1",
"worktreeName": "workspace"
},
"pathname": "/h/[hostId]/files/preview/[worktreeId]"
},
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "file-tap-previews-absolute-artifact",
"checkpoints": [
{
"id": "previewed",
"observation": {
"sender": ["403de322e21f"],
"payloads": ["9120b59f16ec"],
"settlements": {
"tap": "eb79a9b3682a"
},
"state": "53fb9b1f36f9",
"effects": ["1d18c66a85d5", "e8e7c23384dc"]
}
}
]
}
}
@@ -0,0 +1,92 @@
{
"operation": "files.terminal-path-tap",
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "0f76b96408081737b3d630ee837dbb80bcce6670b6acc4f1f7c033a69bd40533",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"9120b59f16ec": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}",
"sent": 1
},
"b03e10f6707b": {
"name": "files.resolveTerminalPath#1",
"args": [
{
"name": "method",
"value": "files.resolveTerminalPath"
},
{
"name": "params",
"value": {
"crossWorkspace": true,
"cwd": "/repo",
"pathText": "src/app.ts",
"terminal": "terminal-1",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 10000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"exists": false,
"isDirectory": false
}
}
}
},
"c7ce9c8dc60e": {
"activeSessionTabId": "tab-source",
"failed": 1,
"switched": {
"$rpc": "null"
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "file-tap-resolve-miss",
"checkpoints": [
{
"id": "missed",
"observation": {
"sender": ["b03e10f6707b"],
"payloads": ["9120b59f16ec"],
"settlements": {
"tap": "eb79a9b3682a"
},
"state": "c7ce9c8dc60e",
"effects": []
}
}
]
}
}
@@ -0,0 +1,92 @@
{
"operation": "files.terminal-path-tap",
"family": "files.terminal-path-tap",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "1ada35966dfb65afbb9b3dc8139961b8f042e2d53241b9608a080d0e655a5987",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"8a3fab4d308f": {
"name": "files.resolveTerminalPath#1",
"args": [
{
"name": "method",
"value": "files.resolveTerminalPath"
},
{
"name": "params",
"value": {
"crossWorkspace": true,
"cwd": "/repo",
"pathText": "src/app.ts",
"terminal": "terminal-1",
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 10000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "worktree_not_found",
"message": "No such workspace"
},
"id": "frame-1",
"ok": false
}
}
},
"9120b59f16ec": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}",
"sent": 1
},
"c7ce9c8dc60e": {
"activeSessionTabId": "tab-source",
"failed": 1,
"switched": {
"$rpc": "null"
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "file-tap-resolve-refused",
"checkpoints": [
{
"id": "refused",
"observation": {
"sender": ["8a3fab4d308f"],
"payloads": ["9120b59f16ec"],
"settlements": {
"tap": "eb79a9b3682a"
},
"state": "c7ce9c8dc60e",
"effects": []
}
}
]
}
}
@@ -0,0 +1,203 @@
{
"operation": "files.explorer-screen",
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "ec02d3f76085619fad35231e12654ec6e926e423c6799fd0df53708743000612",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"195987bc4ef2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"30859af566b0": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"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
}
}
},
"80bd28a48dda": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"files": [
{
"basename": "README.md",
"kind": "text",
"relativePath": "README.md"
},
{
"basename": "app.ts",
"kind": "text",
"relativePath": "src/app.ts"
}
],
"totalCount": 2,
"truncated": true
}
}
}
},
"87ae27687a19": {
"name": "files.readDir#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}",
"sent": 1
},
"b85511fb8929": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files", " - Showing first 5000"]
},
"c3a91710450a": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}",
"sent": 2
},
"e91880eefe86": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files"]
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "files-explorer-legacy-fallback",
"checkpoints": [
{
"id": "loading",
"observation": {
"sender": ["195987bc4ef2"],
"payloads": ["87ae27687a19"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "e91880eefe86",
"effects": []
}
},
{
"id": "legacy-listed",
"observation": {
"sender": ["30859af566b0", "80bd28a48dda"],
"payloads": ["87ae27687a19", "c3a91710450a"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "b85511fb8929",
"effects": []
}
}
]
}
}
@@ -0,0 +1,158 @@
{
"operation": "files.explorer-screen",
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "0b87a230cf1c4219e415c840a088502c8bda7cd2fb525bde1a83a5903d6fd96b",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"195987bc4ef2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"1fac8f3b8f44": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files"]
},
"23a7ef6123a7": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": [
{
"isDirectory": true,
"name": "src"
},
{
"isDirectory": false,
"name": "README.md"
}
]
}
}
},
"87ae27687a19": {
"name": "files.readDir#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}",
"sent": 1
},
"e91880eefe86": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files"]
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "files-explorer-readdir",
"checkpoints": [
{
"id": "loading",
"observation": {
"sender": ["195987bc4ef2"],
"payloads": ["87ae27687a19"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "e91880eefe86",
"effects": []
}
},
{
"id": "listed",
"observation": {
"sender": ["23a7ef6123a7"],
"payloads": ["87ae27687a19"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "1fac8f3b8f44",
"effects": []
}
}
]
}
}
@@ -3,9 +3,9 @@
"family": "files.mutation-ownership",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "8d24f52eb4194c3bc5d9f0dcabade6d7a09c066f79f911657647ed21dbecb3b1",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"548f05412e41": {
"status": "fulfilled",
"startedAt": 0,
@@ -25,6 +21,11 @@
"expectedExecutionHostId": "local"
}
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"8bdc2aec524d": {
"name": "worktree.show#1",
"args": [
@@ -60,10 +61,6 @@
}
}
},
"9199aee60486": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}"
},
"a56852d6836b": {
"name": "status.get#1",
"args": [
@@ -101,6 +98,11 @@
"ownership": {
"expectedExecutionHostId": "local"
}
},
"e7e6fb5e264b": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}",
"sent": 2
}
},
"recording": {
@@ -110,7 +112,7 @@
"id": "settled",
"observation": {
"sender": ["a56852d6836b", "8bdc2aec524d"],
"payloads": ["1e5b32902af7", "9199aee60486"],
"payloads": ["852980e2efc0", "e7e6fb5e264b"],
"settlements": {
"capture": "548f05412e41"
},
@@ -3,9 +3,9 @@
"family": "files.mutation-ownership",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "4cd0be3a1c338b4b68211c717fd10738653c553fdb3b072db6706ff8175a8bd1",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"29bfbe94cca9": {
"status": "fulfilled",
"startedAt": 0,
@@ -27,6 +23,11 @@
"expectedSshTargetId": "target-1"
}
},
"2f24cdd633b5": {
"name": "ssh.getState#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}",
"sent": 3
},
"518ec57c381a": {
"ownership": "uncaptured"
},
@@ -106,18 +107,15 @@
}
}
},
"9199aee60486": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}"
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"a0341e6a5d84": {
"name": "ssh.getState#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}"
},
"a56852d6836b": {
"name": "status.get#1",
"args": [
@@ -182,6 +180,11 @@
"expectedSshConnectionGeneration": 3,
"expectedSshTargetId": "target-1"
}
},
"e7e6fb5e264b": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}",
"sent": 2
}
},
"recording": {
@@ -191,7 +194,7 @@
"id": "status-pending",
"observation": {
"sender": ["bc119660f0c1"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"capture": "9270aeb7d9c6"
},
@@ -203,7 +206,7 @@
"id": "settled",
"observation": {
"sender": ["a56852d6836b", "6ef43f81f7e3", "6116946241ca"],
"payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"],
"payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"],
"settlements": {
"capture": "29bfbe94cca9"
},
@@ -3,9 +3,9 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "dd8b7a0916a84c7d763a163759c02210ae99f8fbccfccaa98796b8610c5da97c",
"platform": "darwin",
@@ -71,9 +71,10 @@
"truncated": false
}
},
"e0401d205ea2": {
"a3bce9470bbb": {
"name": "files.readTerminalArtifact#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}",
"sent": 1
}
},
"recording": {
@@ -83,7 +84,7 @@
"id": "settled",
"observation": {
"sender": ["194fabd9b9d8"],
"payloads": ["e0401d205ea2"],
"payloads": ["a3bce9470bbb"],
"settlements": {
"load": "500d95d47092"
},
@@ -3,9 +3,9 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "d15c1f4e0f95b5c49a8f889d2d37458225293d7306c8439690d972d2df4c29c0",
"platform": "darwin",
@@ -51,9 +51,10 @@
}
}
},
"4a07826edb3b": {
"6df57490419a": {
"name": "files.readTerminalArtifactPreview#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifactPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/shot.png\",\"grantId\":\"grant-1\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifactPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/shot.png\",\"grantId\":\"grant-1\"}}",
"sent": 1
},
"7659b8b575da": {
"preview": {
@@ -80,7 +81,7 @@
"id": "settled",
"observation": {
"sender": ["25b0318e985e"],
"payloads": ["4a07826edb3b"],
"payloads": ["6df57490419a"],
"settlements": {
"load": "eee847a9d90d"
},
@@ -3,9 +3,9 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "055f3b45442c1736f10ee98c493e2ece1885fdb68d925ee627e2ba20853537e0",
"platform": "darwin",
@@ -13,6 +13,11 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"044dee71a9cd": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}",
"sent": 2
},
"25b0d1737c71": {
"name": "files.readTerminalArtifact#1",
"args": [
@@ -103,6 +108,11 @@
"truncated": false
}
},
"5824e53bc730": {
"name": "files.readTerminalArtifact#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}",
"sent": 3
},
"5f446c109a9a": {
"name": "files.readTerminalArtifact#2",
"args": [
@@ -140,6 +150,19 @@
}
}
},
"63abc54b3e87": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
},
"sent": 2
},
"645c5754be42": {
"preview": "unloaded"
},
@@ -152,33 +175,14 @@
"truncated": false
}
},
"813fe48569a6": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"9a56ffbdd5bf": {
"name": "files.resolveTerminalPath#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}"
},
"c283e01480f7": {
"name": "files.readTerminalArtifact#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}"
},
"e0401d205ea2": {
"a3bce9470bbb": {
"name": "files.readTerminalArtifact#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}",
"sent": 1
},
"e81d5596c201": {
"name": "files.readTerminalArtifact#1",
@@ -215,7 +219,7 @@
"id": "read-pending",
"observation": {
"sender": ["e81d5596c201"],
"payloads": ["e0401d205ea2"],
"payloads": ["a3bce9470bbb"],
"settlements": {
"load": "9270aeb7d9c6"
},
@@ -227,12 +231,12 @@
"id": "settled",
"observation": {
"sender": ["25b0d1737c71", "3c5492779d85", "5f446c109a9a"],
"payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"],
"payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"],
"settlements": {
"load": "500d95d47092"
},
"state": "784ea351e5b2",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
}
]
@@ -3,9 +3,9 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "0ffaffb472b663e08a42317d799a2a000211dda5b127fb21cc64f04f73800130",
"platform": "darwin",
@@ -13,9 +13,10 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"3acec737cb08": {
"146931cb2534": {
"name": "files.readPreview#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}",
"sent": 1
},
"7659b8b575da": {
"preview": {
@@ -79,7 +80,7 @@
"id": "settled",
"observation": {
"sender": ["f6564bdb4e19"],
"payloads": ["3acec737cb08"],
"payloads": ["146931cb2534"],
"settlements": {
"load": "eee847a9d90d"
},
@@ -3,9 +3,9 @@
"family": "files.preview-load",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "bcba4a7d9d929078c5ed80fc7e1acd45859d0b4c559767a919b0396dc6a70a3e",
"platform": "darwin",
@@ -13,9 +13,10 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"02ea3f503180": {
"3d04ed6e70c6": {
"name": "files.read#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}",
"sent": 1
},
"3f8bf3069e3d": {
"status": "fulfilled",
@@ -82,7 +83,7 @@
"id": "settled",
"observation": {
"sender": ["9babe9503a83"],
"payloads": ["02ea3f503180"],
"payloads": ["3d04ed6e70c6"],
"settlements": {
"load": "3f8bf3069e3d"
},
@@ -3,9 +3,9 @@
"family": "files.preview-save",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "8b5c3e87d989966d7b252f19a537040cd5078ba9355a824e7e49af3424390a3e",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"39c6d10eb5a5": {
"name": "files.writeTerminalArtifact#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}"
},
"54a6055a16b5": {
"status": "fulfilled",
"startedAt": 0,
@@ -61,6 +57,11 @@
}
}
},
"940260ab6fb3": {
"name": "files.writeTerminalArtifact#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}",
"sent": 1
},
"b3f873eb7d0c": {
"saved": {
"status": "saved"
@@ -74,7 +75,7 @@
"id": "settled",
"observation": {
"sender": ["936b6553a1e7"],
"payloads": ["39c6d10eb5a5"],
"payloads": ["940260ab6fb3"],
"settlements": {
"save": "54a6055a16b5"
},
@@ -3,9 +3,9 @@
"family": "files.preview-save",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "6e124d16173074d851d58593b20b25889ed13a3d8021c08fbed53b85a7d3196e",
"platform": "darwin",
@@ -64,18 +64,20 @@
"935100df69e4": {
"saved": "unsaved"
},
"a3886e3a9791": {
"name": "files.writeTerminalArtifact#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}"
"a3bce9470bbb": {
"name": "files.readTerminalArtifact#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}",
"sent": 1
},
"b3f873eb7d0c": {
"saved": {
"status": "saved"
}
},
"e0401d205ea2": {
"name": "files.readTerminalArtifact#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}"
"d76588bfa9bd": {
"name": "files.writeTerminalArtifact#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}",
"sent": 2
},
"e391aec81b96": {
"name": "files.readTerminalArtifact#1",
@@ -149,7 +151,7 @@
"id": "verify-pending",
"observation": {
"sender": ["e81d5596c201"],
"payloads": ["e0401d205ea2"],
"payloads": ["a3bce9470bbb"],
"settlements": {
"save": "9270aeb7d9c6"
},
@@ -161,7 +163,7 @@
"id": "settled",
"observation": {
"sender": ["e391aec81b96", "7875007ef392"],
"payloads": ["e0401d205ea2", "a3886e3a9791"],
"payloads": ["a3bce9470bbb", "d76588bfa9bd"],
"settlements": {
"save": "54a6055a16b5"
},
@@ -3,9 +3,9 @@
"family": "files.tab-doc",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "b636221f719dae19a3af6772b687b0bcb300c9910645d23e98c309578ec1c5c5",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"02ea3f503180": {
"name": "files.read#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}"
},
"323bf6059754": {
"name": "files.readPreview#1",
"args": [
@@ -53,9 +49,15 @@
}
}
},
"5c610ebe58ed": {
"3be6ef0e9bd8": {
"name": "files.readPreview#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}"
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}",
"sent": 2
},
"3d04ed6e70c6": {
"name": "files.read#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}",
"sent": 1
},
"9babe9503a83": {
"name": "files.read#1",
@@ -93,6 +95,11 @@
}
}
},
"b185e249da6e": {
"name": "git.diff#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}",
"sent": 3
},
"b5c68b76c498": {
"status": "fulfilled",
"startedAt": 0,
@@ -183,10 +190,6 @@
"status": "ready"
}
},
"fad4ca11a316": {
"name": "git.diff#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}"
},
"ffe1c534d459": {
"status": "fulfilled",
"startedAt": 0,
@@ -217,7 +220,7 @@
"id": "settled",
"observation": {
"sender": ["9babe9503a83", "323bf6059754", "c8fbe8972330"],
"payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"],
"payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"],
"settlements": {
"text": "b5c68b76c498",
"image": "eee847a9d90d",
@@ -0,0 +1,231 @@
{
"operation": "home.host-accounts",
"family": "home.host-accounts",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a",
"scenarioSha256": "366426641e25542fcc6fcd351ece6a1ee897c8b3974c08eb7557eadfa4d3b06f",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"2525c654127c": {
"host-1": {
"claude": {
"accounts": [
{
"email": "claude@example.test",
"id": "claude-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "claude-1"
},
"codex": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"$rpc": "null"
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
},
"44136fa355b3": {},
"6432de87fc3e": {
"name": "accounts.list#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}",
"sent": 1
},
"ae89fde72803": {
"name": "accounts.list#1",
"args": [
{
"name": "method",
"value": "accounts.list"
},
{
"name": "params",
"value": {
"$rpc": "undefined"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"claude": {
"accounts": [
{
"email": "claude@example.test",
"id": "claude-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "claude-1"
},
"codex": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"codex": {
"$rpc": "null"
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
},
"d54161165272": {
"name": "accounts.list#1",
"args": [
{
"name": "method",
"value": "accounts.list"
},
{
"name": "params",
"value": {
"$rpc": "undefined"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"e14c03c3141f": {
"name": "accounts",
"value": {
"host-1": {
"claude": {
"accounts": [
{
"email": "claude@example.test",
"id": "claude-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "claude-1"
},
"codex": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"$rpc": "null"
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
},
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "home-host-accounts",
"checkpoints": [
{
"id": "accounts-pending",
"observation": {
"sender": ["d54161165272"],
"payloads": ["6432de87fc3e"],
"settlements": {
"load": "eb79a9b3682a"
},
"state": "44136fa355b3",
"effects": []
}
},
{
"id": "accounts-published",
"observation": {
"sender": ["ae89fde72803"],
"payloads": ["6432de87fc3e"],
"settlements": {
"load": "eb79a9b3682a"
},
"state": "2525c654127c",
"effects": ["e14c03c3141f"]
}
}
]
}
}
@@ -3,9 +3,9 @@
"family": "home.host-stats",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "bd5f4e5f24a29d96c4c98950691c6571918332f71ebb1f29ee97a9abc857ac29",
"platform": "darwin",
@@ -13,15 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0632d58191fb": {
"name": "stats",
"value": {
"host-1": {
"activeWorktrees": 1,
"totalWorktrees": 3
}
}
},
"0ebcc6f6a4cb": {
"name": "stats.summary#1",
"args": [
@@ -57,9 +48,15 @@
}
},
"44136fa355b3": {},
"7bf81b1e94c5": {
"name": "stats.summary#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}"
"7836888bb6c0": {
"name": "stats",
"value": {
"host-1": {
"activeWorktrees": 1,
"totalWorktrees": 3
}
},
"sent": 1
},
"9a84a7559023": {
"host-1": {
@@ -92,6 +89,11 @@
"startedAt": 0
}
},
"dcf607ac617e": {
"name": "stats.summary#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -108,7 +110,7 @@
"id": "stats-pending",
"observation": {
"sender": ["a392ac528c2b"],
"payloads": ["7bf81b1e94c5"],
"payloads": ["dcf607ac617e"],
"settlements": {
"load": "eb79a9b3682a"
},
@@ -120,12 +122,12 @@
"id": "settled",
"observation": {
"sender": ["0ebcc6f6a4cb"],
"payloads": ["7bf81b1e94c5"],
"payloads": ["dcf607ac617e"],
"settlements": {
"load": "eb79a9b3682a"
},
"state": "9a84a7559023",
"effects": ["0632d58191fb"]
"effects": ["7836888bb6c0"]
}
}
]
@@ -3,9 +3,9 @@
"family": "host.view-settings",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "1ee6031227fa3efd5b36841afa60f7b2264eacdd9c6126e5851d5acb39ffaadd",
"platform": "darwin",
@@ -13,21 +13,15 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"292b632037a0": {
"045d8ec6a888": {
"name": "ui.set#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}"
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}",
"sent": 2
},
"3059ce80d86a": {
"name": "collapsedGroups",
"value": []
},
"34925f64c9a6": {
"name": "sortMode",
"value": "name"
},
"5907841fc56d": {
"name": "ui.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}"
"1207e1b06040": {
"name": "workspaceStatuses",
"value": [],
"sent": 1
},
"5fbdd64c75bc": {
"name": "ui.get#1",
@@ -54,6 +48,11 @@
"startedAt": 0
}
},
"6816213c2ede": {
"name": "collapsedGroups",
"value": [],
"sent": 1
},
"78f2fbcd0185": {
"name": "ui.set#1",
"args": [
@@ -87,23 +86,10 @@
}
}
},
"7eaddd04bcdd": {
"name": "workspaceStatuses",
"value": []
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"9527461faeb1": {
"name": "filters",
"value": {
"alwaysShowDefaultBranch": true,
"filterRepoIds": [],
"hideDefaultBranch": false,
"hideSleeping": true
}
},
"a424515cabc9": {
"name": "ui.get#1",
"args": [
@@ -141,6 +127,11 @@
}
}
},
"a8115697f295": {
"name": "sortMode",
"value": "name",
"sent": 1
},
"ba2035345a68": {
"collapsed": [],
"filters": {
@@ -165,9 +156,25 @@
"sortMode": "recent",
"statuses": []
},
"e9a3acf203c6": {
"c178812d69e7": {
"name": "ui.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}",
"sent": 1
},
"d88f3b1774b1": {
"name": "filters",
"value": {
"alwaysShowDefaultBranch": true,
"filterRepoIds": [],
"hideDefaultBranch": false,
"hideSleeping": true
},
"sent": 1
},
"e0a092c9ae88": {
"name": "groupMode",
"value": "repo"
"value": "repo",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
@@ -185,7 +192,7 @@
"id": "ui-pending",
"observation": {
"sender": ["5fbdd64c75bc"],
"payloads": ["5907841fc56d"],
"payloads": ["c178812d69e7"],
"settlements": {
"mount": "eb79a9b3682a",
"sync": "9270aeb7d9c6"
@@ -198,7 +205,7 @@
"id": "settled",
"observation": {
"sender": ["a424515cabc9", "78f2fbcd0185"],
"payloads": ["5907841fc56d", "292b632037a0"],
"payloads": ["c178812d69e7", "045d8ec6a888"],
"settlements": {
"mount": "eb79a9b3682a",
"sync": "eb79a9b3682a",
@@ -206,16 +213,16 @@
},
"state": "ba2035345a68",
"effects": [
"e9a3acf203c6",
"34925f64c9a6",
"7eaddd04bcdd",
"3059ce80d86a",
"9527461faeb1",
"e9a3acf203c6",
"34925f64c9a6",
"7eaddd04bcdd",
"3059ce80d86a",
"9527461faeb1"
"e0a092c9ae88",
"a8115697f295",
"1207e1b06040",
"6816213c2ede",
"d88f3b1774b1",
"e0a092c9ae88",
"a8115697f295",
"1207e1b06040",
"6816213c2ede",
"d88f3b1774b1"
]
}
}
@@ -3,9 +3,9 @@
"family": "host.worktree-actions",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "720add498c79425ca8efc9764fd5d8307fe33bc891842604cfc899f770b79811",
"platform": "darwin",
@@ -48,9 +48,27 @@
}
}
},
"0ebfc1859f18": {
"name": "pinnedIds",
"value": ["wt-1"]
"088a989c038b": {
"name": "worktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
],
"sent": 0
},
"2b635c2a4fbb": {
"name": "worktree.rm#1",
@@ -86,9 +104,37 @@
}
}
},
"4caf7515e224": {
"2c2ff4eed497": {
"name": "worktree.set#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}",
"sent": 1
},
"3e27f9568029": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
],
"sent": 0
},
"43444aeb669c": {
"name": "worktree.activate#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}",
"sent": 2
},
"56b6d4fb8c56": {
"name": "worktree.set#1",
@@ -124,35 +170,6 @@
}
}
},
"5c186d67b84c": {
"name": "lastKnownWorktrees",
"value": []
},
"69d698d4f352": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}"
},
"6cfdae6737f2": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
]
},
"6e959a9dd70e": {
"confirmRemoveHost": false,
"lastKnownWorktrees": [],
@@ -161,6 +178,16 @@
"routeActionState": {},
"worktrees": []
},
"71246d169f18": {
"name": "worktrees",
"value": [],
"sent": 2
},
"8839215bd1a5": {
"name": "lastKnownWorktrees",
"value": [],
"sent": 2
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
@@ -209,9 +236,20 @@
}
]
},
"b1509905fc66": {
"a970c9a870bb": {
"name": "pinnedIds",
"value": ["wt-1"],
"sent": 0
},
"ba712c70aeb2": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}",
"sent": 3
},
"bb44ad78848e": {
"name": "optimisticActiveWorktreeIdentity",
"value": "|wt-1"
"value": "|wt-1",
"sent": 1
},
"bf2b36bda2d2": {
"name": "worktree.set#1",
@@ -239,35 +277,6 @@
"startedAt": 0
}
},
"c3eecb0c6e96": {
"name": "worktree.activate#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}"
},
"cbf8280fdbe7": {
"name": "worktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
]
},
"d440bd87d1ce": {
"name": "worktrees",
"value": []
},
"e3e3c397a66a": {
"name": "worktree.rm#1",
"args": [
@@ -310,20 +319,20 @@
"id": "pin-optimistic",
"observation": {
"sender": ["bf2b36bda2d2"],
"payloads": ["4caf7515e224"],
"payloads": ["2c2ff4eed497"],
"settlements": {
"mount": "eb79a9b3682a",
"toggle-pin": "eb79a9b3682a"
},
"state": "9a9b0d6699b2",
"effects": ["cbf8280fdbe7", "6cfdae6737f2", "0ebfc1859f18"]
"effects": ["088a989c038b", "3e27f9568029", "a970c9a870bb"]
}
},
{
"id": "delete-optimistic",
"observation": {
"sender": ["56b6d4fb8c56", "04938673cbf5", "e3e3c397a66a"],
"payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"],
"payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"],
"settlements": {
"mount": "eb79a9b3682a",
"toggle-pin": "eb79a9b3682a",
@@ -332,12 +341,12 @@
},
"state": "6e959a9dd70e",
"effects": [
"cbf8280fdbe7",
"6cfdae6737f2",
"0ebfc1859f18",
"b1509905fc66",
"d440bd87d1ce",
"5c186d67b84c"
"088a989c038b",
"3e27f9568029",
"a970c9a870bb",
"bb44ad78848e",
"71246d169f18",
"8839215bd1a5"
]
}
},
@@ -345,7 +354,7 @@
"id": "settled",
"observation": {
"sender": ["56b6d4fb8c56", "04938673cbf5", "2b635c2a4fbb"],
"payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"],
"payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"],
"settlements": {
"mount": "eb79a9b3682a",
"toggle-pin": "eb79a9b3682a",
@@ -354,12 +363,12 @@
},
"state": "6e959a9dd70e",
"effects": [
"cbf8280fdbe7",
"6cfdae6737f2",
"0ebfc1859f18",
"b1509905fc66",
"d440bd87d1ce",
"5c186d67b84c"
"088a989c038b",
"3e27f9568029",
"a970c9a870bb",
"bb44ad78848e",
"71246d169f18",
"8839215bd1a5"
]
}
}
@@ -3,9 +3,9 @@
"family": "host.worktree-actions",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "5dd5e7eabaabba1e471b13958f59891c3b28f553087c96315598c83a14ded7e7",
"platform": "darwin",
@@ -13,29 +13,7 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"3fd02e693647": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}"
},
"5c186d67b84c": {
"name": "lastKnownWorktrees",
"value": []
},
"8056533b940f": {
"confirmRemoveHost": false,
"lastKnownWorktrees": [],
"optimisticActiveWorktreeIdentity": {
"$rpc": "null"
},
"pinnedIds": [],
"routeActionState": {},
"worktrees": []
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"a7c564546e94": {
"3eaa2fc6fe33": {
"name": "worktrees",
"value": [
{
@@ -54,7 +32,59 @@
"unread": false,
"worktreeId": "wt-1"
}
]
],
"sent": 1
},
"4390dbd60885": {
"name": "lastKnownWorktrees",
"value": [],
"sent": 0
},
"6f5a073918ed": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}",
"sent": 1
},
"77c8169fffce": {
"name": "worktrees",
"value": [],
"sent": 0
},
"8056533b940f": {
"confirmRemoveHost": false,
"lastKnownWorktrees": [],
"optimisticActiveWorktreeIdentity": {
"$rpc": "null"
},
"pinnedIds": [],
"routeActionState": {},
"worktrees": []
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"ad493faf0d61": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": false,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
],
"sent": 1
},
"bcb66b345fcd": {
"confirmRemoveHost": false,
@@ -100,31 +130,6 @@
}
]
},
"c777b17081dd": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": false,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
]
},
"d440bd87d1ce": {
"name": "worktrees",
"value": []
},
"e3e3c397a66a": {
"name": "worktree.rm#1",
"args": [
@@ -202,26 +207,26 @@
"id": "delete-optimistic",
"observation": {
"sender": ["e3e3c397a66a"],
"payloads": ["3fd02e693647"],
"payloads": ["6f5a073918ed"],
"settlements": {
"mount": "eb79a9b3682a",
"delete": "9270aeb7d9c6"
},
"state": "8056533b940f",
"effects": ["d440bd87d1ce", "5c186d67b84c"]
"effects": ["77c8169fffce", "4390dbd60885"]
}
},
{
"id": "restored",
"observation": {
"sender": ["e97d1f006b72"],
"payloads": ["3fd02e693647"],
"payloads": ["6f5a073918ed"],
"settlements": {
"mount": "eb79a9b3682a",
"delete": "eb79a9b3682a"
},
"state": "bcb66b345fcd",
"effects": ["d440bd87d1ce", "5c186d67b84c", "a7c564546e94", "c777b17081dd"]
"effects": ["77c8169fffce", "4390dbd60885", "3eaa2fc6fe33", "ad493faf0d61"]
}
}
]
@@ -0,0 +1,258 @@
{
"operation": "worktree.host-refresh",
"family": "host-worktree-refresh",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "6ac11f1ab42fea3b718d9714e512a4e8a344aea66ae170fbe9ef2b5ae82dbe0a",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1e5c2d0839f0": {
"fetchRepoMetadata": 3,
"fetchWorktrees": 4,
"running": true
},
"32ad88ec13e3": {
"name": "fetchRepoMetadata",
"value": {
"options": {
"force": true,
"queueIfInFlight": true
}
},
"sent": 0
},
"519cd29a30fa": {
"name": "runtime.clientEvents.subscribe#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}",
"sent": 0
},
"5f7bd3b1a756": {
"name": "runtime.clientEvents.unsubscribe#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
"sent": 0
},
"61f865a194bf": {
"name": "runtime.clientEvents.unsubscribe#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}",
"sent": 0
},
"6d9fd24a7491": {
"fetchRepoMetadata": 1,
"fetchWorktrees": 2,
"running": true
},
"8297145c6199": {
"fetchRepoMetadata": 1,
"fetchWorktrees": 1,
"running": true
},
"8f638d83589d": {
"name": "fetchWorktrees",
"value": {
"options": {
"$rpc": "undefined"
}
},
"sent": 0
},
"91e9a84a208f": {
"fetchRepoMetadata": 4,
"fetchWorktrees": 5,
"running": false
},
"bdc95c0ab9bc": {
"name": "runtime.clientEvents.subscribe#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}",
"sent": 0
},
"cfd2555aae81": {
"name": "fetchRepoMetadata",
"value": {
"options": {
"$rpc": "undefined"
}
},
"sent": 0
},
"e54e98a537b8": {
"fetchRepoMetadata": 2,
"fetchWorktrees": 3,
"running": true
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"edb34b7fcc08": {
"fetchRepoMetadata": 4,
"fetchWorktrees": 5,
"running": true
},
"f2af146a9f12": {
"status": "fulfilled",
"startedAt": 3000,
"settledAt": 3000,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "host-worktree-refresh-stream",
"checkpoints": [
{
"id": "started",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc"],
"settlements": {
"start": "eb79a9b3682a"
},
"state": "8297145c6199",
"effects": ["8f638d83589d", "32ad88ec13e3"]
}
},
{
"id": "ready",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc"],
"settlements": {
"start": "eb79a9b3682a"
},
"state": "8297145c6199",
"effects": ["8f638d83589d", "32ad88ec13e3"]
}
},
{
"id": "worktrees-changed",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc"],
"settlements": {
"start": "eb79a9b3682a"
},
"state": "6d9fd24a7491",
"effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"]
}
},
{
"id": "polled",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc"],
"settlements": {
"start": "eb79a9b3682a"
},
"state": "e54e98a537b8",
"effects": [
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"8f638d83589d",
"cfd2555aae81"
]
}
},
{
"id": "repos-changed",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc"],
"settlements": {
"start": "eb79a9b3682a"
},
"state": "1e5c2d0839f0",
"effects": [
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"8f638d83589d",
"cfd2555aae81",
"8f638d83589d",
"32ad88ec13e3"
]
}
},
{
"id": "re-subscribed",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"],
"settlements": {
"start": "eb79a9b3682a",
"cutover": "f2af146a9f12"
},
"state": "1e5c2d0839f0",
"effects": [
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"8f638d83589d",
"cfd2555aae81",
"8f638d83589d",
"32ad88ec13e3"
]
}
},
{
"id": "replayed",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"],
"settlements": {
"start": "eb79a9b3682a",
"cutover": "f2af146a9f12"
},
"state": "edb34b7fcc08",
"effects": [
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"8f638d83589d",
"cfd2555aae81",
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"32ad88ec13e3"
]
}
},
{
"id": "stopped",
"observation": {
"sender": [],
"payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"],
"settlements": {
"start": "eb79a9b3682a",
"cutover": "f2af146a9f12",
"stop": "f2af146a9f12"
},
"state": "91e9a84a208f",
"effects": [
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"8f638d83589d",
"cfd2555aae81",
"8f638d83589d",
"32ad88ec13e3",
"8f638d83589d",
"32ad88ec13e3"
]
}
}
]
}
}
@@ -3,9 +3,9 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "d6c57a5153d915f0a0c0fd9e305cac70b41b7eb8be226fc865227ebf1821e5d1",
"platform": "darwin",
@@ -13,17 +13,9 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"2837f481a843": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}"
},
"602e35a92eec": {
"files": []
},
"9dea95bddfe5": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}"
},
"b5b30ad54c76": {
"name": "files.list#1",
"args": [
@@ -55,6 +47,11 @@
}
}
},
"bb65fa195d1c": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}",
"sent": 2
},
"c0821dc354d7": {
"name": "files.searchPaths#1",
"args": [
@@ -127,6 +124,11 @@
}
}
},
"cd59dd2431e0": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}",
"sent": 1
},
"d2ad71e601c4": {
"status": "fulfilled",
"startedAt": 120,
@@ -182,7 +184,7 @@
"id": "inventory-lifecycle.timeout:interrupted",
"observation": {
"sender": ["c0821dc354d7", "ee88659ed950"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a"
@@ -195,7 +197,7 @@
"id": "inventory-lifecycle.timeout:settled",
"observation": {
"sender": ["c0821dc354d7", "ee88659ed950"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a"
@@ -208,7 +210,7 @@
"id": "inventory-lifecycle.disconnect:interrupted",
"observation": {
"sender": ["c0821dc354d7", "b5b30ad54c76"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -222,7 +224,7 @@
"id": "inventory-lifecycle.disconnect:settled",
"observation": {
"sender": ["c0821dc354d7", "b5b30ad54c76"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -236,7 +238,7 @@
"id": "inventory-lifecycle.cutover:interrupted",
"observation": {
"sender": ["c0821dc354d7", "ccb16672d904"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -250,7 +252,7 @@
"id": "inventory-lifecycle.cutover:settled",
"observation": {
"sender": ["c0821dc354d7", "ccb16672d904"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -3,9 +3,9 @@
"family": "settings.bot-overrides",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "2d5c6dea28aa1a7bb9e4aa14a4c8441527d9ad401ad30161f05ea1f8da836bb2",
"platform": "darwin",
@@ -75,9 +75,10 @@
}
},
"4f53cda18c2b": [],
"7ddcb1852b39": {
"5c52bc3f9e55": {
"name": "settings.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}"
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}",
"sent": 1
},
"7fc945a92540": {
"name": "settings.get#1",
@@ -157,7 +158,7 @@
"id": "settings-bot-overrides-fulfilled.prelude:settings-pending",
"observation": {
"sender": ["090c88478661"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -169,7 +170,7 @@
"id": "settings-bot-overrides-fulfilled.timeout:interrupted",
"observation": {
"sender": ["7fc945a92540"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -181,7 +182,7 @@
"id": "settings-bot-overrides-fulfilled.timeout:settled",
"observation": {
"sender": ["7fc945a92540"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -193,7 +194,7 @@
"id": "settings-bot-overrides-fulfilled.disconnect:interrupted",
"observation": {
"sender": ["af6903aed166"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"disconnect": "eb79a9b3682a"
@@ -206,7 +207,7 @@
"id": "settings-bot-overrides-fulfilled.disconnect:settled",
"observation": {
"sender": ["af6903aed166"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"disconnect": "eb79a9b3682a"
@@ -219,7 +220,7 @@
"id": "settings-bot-overrides-fulfilled.cutover:interrupted",
"observation": {
"sender": ["06eff8247d02"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"cutover": "eb79a9b3682a"
@@ -232,7 +233,7 @@
"id": "settings-bot-overrides-fulfilled.cutover:settled",
"observation": {
"sender": ["06eff8247d02"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"cutover": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "3471f5bcd6923c7b8ba3a737bb45b5239689deb78c00e85a828f38a6d6d68a05",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"2837f481a843": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}"
},
"64847315695c": {
"name": "files.list#1",
"args": [
@@ -54,9 +50,10 @@
}
}
},
"9dea95bddfe5": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}"
"bb65fa195d1c": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}",
"sent": 2
},
"c0821dc354d7": {
"name": "files.searchPaths#1",
@@ -94,6 +91,11 @@
}
}
},
"cd59dd2431e0": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -113,7 +115,7 @@
"id": "settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a"
@@ -3,9 +3,9 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "73a468d5c7a51c2dbb7af2642f0050d05d861fce29295460c48d7c51f86bf57f",
"platform": "darwin",
@@ -63,9 +63,10 @@
"$rpc": "undefined"
}
},
"1df364c141e7": {
"name": "files.searchPaths#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"beta\",\"limit\":16}}"
"0d4bc47af85a": {
"name": "files.searchPaths#3",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"gamma\",\"limit\":16}}",
"sent": 3
},
"3642acfe438f": {
"files": ["beta.ts"]
@@ -105,9 +106,10 @@
"startedAt": 360
}
},
"702153114450": {
"name": "files.searchPaths#3",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"gamma\",\"limit\":16}}"
"76d5760bc8ba": {
"name": "files.searchPaths#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"beta\",\"limit\":16}}",
"sent": 2
},
"7e0cf12e6220": {
"name": "files.searchPaths#3",
@@ -148,10 +150,6 @@
}
}
},
"a1e1a76515f9": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"alpha\",\"limit\":16}}"
},
"a7201fe6aca9": {
"name": "files.searchPaths#2",
"args": [
@@ -191,6 +189,11 @@
}
}
},
"cf1cd4765877": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"alpha\",\"limit\":16}}",
"sent": 1
},
"d2ad71e601c4": {
"status": "fulfilled",
"startedAt": 120,
@@ -215,7 +218,7 @@
"id": "cached-alpha",
"observation": {
"sender": ["07ed03809186", "a7201fe6aca9", "6908b2a7adc8"],
"payloads": ["a1e1a76515f9", "1df364c141e7", "702153114450"],
"payloads": ["cf1cd4765877", "76d5760bc8ba", "0d4bc47af85a"],
"settlements": {
"mount": "eb79a9b3682a",
"alpha": "eb79a9b3682a",
@@ -231,7 +234,7 @@
"id": "stale-search-ignored",
"observation": {
"sender": ["07ed03809186", "a7201fe6aca9", "7e0cf12e6220"],
"payloads": ["a1e1a76515f9", "1df364c141e7", "702153114450"],
"payloads": ["cf1cd4765877", "76d5760bc8ba", "0d4bc47af85a"],
"settlements": {
"mount": "eb79a9b3682a",
"alpha": "eb79a9b3682a",
@@ -247,7 +250,7 @@
"id": "cached-beta-cancels-debounce",
"observation": {
"sender": ["07ed03809186", "a7201fe6aca9", "7e0cf12e6220"],
"payloads": ["a1e1a76515f9", "1df364c141e7", "702153114450"],
"payloads": ["cf1cd4765877", "76d5760bc8ba", "0d4bc47af85a"],
"settlements": {
"mount": "eb79a9b3682a",
"alpha": "eb79a9b3682a",
+234 -208
View File
@@ -3,9 +3,9 @@
"family": "linear-detail-barrier",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "8be12d116865d27e8dfd37921d2c723d63da101ec1197b1f5b2d9510838e1943",
"platform": "darwin",
@@ -48,17 +48,20 @@
}
}
},
"1696f2f90218": {
"0e0abca05602": {
"name": "detailError",
"value": "comments transport error"
"value": "comments transport error",
"sent": 2
},
"2b9e0df88a93": {
"310d25d529be": {
"name": "linear.getIssue#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}",
"sent": 4
},
"3b01c25bcd45": {
"39ca42c97176": {
"name": "detailError",
"value": ""
"value": "",
"sent": 2
},
"3cb9a384ce0e": {
"name": "linear.issueComments#1",
@@ -93,6 +96,11 @@
"$rpc": "null"
}
},
"46d0f1129c84": {
"name": "linear.getIssue#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}",
"sent": 2
},
"4e7c4654b51d": {
"name": "linear.issueComments#1",
"args": [
@@ -125,6 +133,28 @@
}
}
},
"56d172ecd2fe": {
"name": "detailLoading",
"value": true,
"sent": 0
},
"5b2b6dd0b30f": {
"name": "linear.issueComments#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}",
"sent": 2
},
"5ca77e9853cb": {
"name": "detailPayload",
"value": {
"$rpc": "null"
},
"sent": 2
},
"73a4beace1f0": {
"name": "detailLoading",
"value": true,
"sent": 2
},
"780aaf1d97be": {
"error": "",
"loading": true,
@@ -132,15 +162,10 @@
"$rpc": "null"
}
},
"7d21147e56c1": {
"name": "detailLoading",
"value": true
},
"7d341b2cb946": {
"name": "detailPayload",
"value": {
"$rpc": "null"
}
"7c849571656d": {
"name": "linear.issueComments#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}",
"sent": 4
},
"8b45b8e00ec0": {
"name": "linear.getIssue#2",
@@ -168,9 +193,17 @@
"startedAt": 0
}
},
"91a1c8142e23": {
"name": "detailLoading",
"value": false
"9bd1de5d9753": {
"name": "detailPayload",
"value": {
"$rpc": "null"
},
"sent": 0
},
"9d6ce9f28401": {
"name": "detailError",
"value": "",
"sent": 0
},
"9ea1594bdfc8": {
"name": "linear.issueComments#2",
@@ -198,18 +231,6 @@
"startedAt": 0
}
},
"ae1e9660892e": {
"name": "linear.issueComments#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
},
"bb215a1eb59b": {
"name": "linear.getIssue#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
},
"e7f73629d075": {
"name": "linear.issueComments#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -218,6 +239,11 @@
"$rpc": "undefined"
}
},
"ee0c4638d266": {
"name": "detailLoading",
"value": false,
"sent": 2
},
"fc4ce176400a": {
"name": "linear.getIssue#1",
"args": [
@@ -252,43 +278,43 @@
"id": "b3.prelude:pending",
"observation": {
"sender": ["fc4ce176400a", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.prelude:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.reset-before-1:lifecycle-boundary",
"observation": {
"sender": ["fc4ce176400a", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -296,19 +322,19 @@
"id": "b3.reset-before-1:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -316,19 +342,19 @@
"id": "b3.reset-before-1:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -336,19 +362,19 @@
"id": "b3.reset-after-1:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -356,19 +382,19 @@
"id": "b3.reset-after-1:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -376,19 +402,19 @@
"id": "b3.reset-after-1:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -396,19 +422,19 @@
"id": "b3.reset-before-2:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -416,19 +442,19 @@
"id": "b3.reset-before-2:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -436,21 +462,21 @@
"id": "b3.reset-after-2:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -458,21 +484,21 @@
"id": "b3.reset-after-2:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -480,46 +506,46 @@
"id": "b3.unmount-before-1:lifecycle-boundary",
"observation": {
"sender": ["fc4ce176400a", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-before-1:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-before-1:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-before-1:remounted",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a",
@@ -527,12 +553,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -540,46 +566,46 @@
"id": "b3.unmount-after-1:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-after-1:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-after-1:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-after-1:remounted",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a",
@@ -587,12 +613,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -600,33 +626,33 @@
"id": "b3.unmount-before-2:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-before-2:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.unmount-before-2:remounted",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a",
@@ -634,12 +660,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -647,18 +673,18 @@
"id": "b3.unmount-after-2:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -666,18 +692,18 @@
"id": "b3.unmount-after-2:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -685,7 +711,7 @@
"id": "b3.unmount-after-2:remounted",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"],
"payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a",
@@ -693,14 +719,14 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -708,44 +734,44 @@
"id": "b3.blur-before-1:lifecycle-boundary",
"observation": {
"sender": ["fc4ce176400a", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.blur-before-1:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.blur-before-1:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -753,44 +779,44 @@
"id": "b3.blur-after-1:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.blur-after-1:issue-refused-comments-pending",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.blur-after-1:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -798,31 +824,31 @@
"id": "b3.blur-before-2:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "3cb9a384ce0e"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
"id": "b3.blur-before-2:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -830,18 +856,18 @@
"id": "b3.blur-after-2:lifecycle-boundary",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -849,18 +875,18 @@
"id": "b3.blur-after-2:settled",
"observation": {
"sender": ["034a83431f03", "4e7c4654b51d"],
"payloads": ["bb215a1eb59b", "e7f73629d075"],
"payloads": ["46d0f1129c84", "5b2b6dd0b30f"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
}
@@ -3,9 +3,9 @@
"family": "legacy-inventory",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "46bbafcc57fe2e3aee41a14bc26a0375b7b56e58030705fe4c28841a272b2560",
"platform": "darwin",
@@ -13,10 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"2837f481a843": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}"
},
"356af7179c37": {
"name": "files.searchPaths#1",
"args": [
@@ -84,10 +80,6 @@
}
}
},
"9dea95bddfe5": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}"
},
"b2434f1de9f6": {
"name": "files.list#1",
"args": [
@@ -113,6 +105,11 @@
"startedAt": 120
}
},
"bb65fa195d1c": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}",
"sent": 2
},
"c0821dc354d7": {
"name": "files.searchPaths#1",
"args": [
@@ -149,6 +146,11 @@
}
}
},
"cd59dd2431e0": {
"name": "files.searchPaths#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}",
"sent": 1
},
"d2ad71e601c4": {
"status": "fulfilled",
"startedAt": 120,
@@ -176,7 +178,7 @@
"id": "inventory-lifecycle.reset-before-1:lifecycle-boundary",
"observation": {
"sender": ["356af7179c37"],
"payloads": ["9dea95bddfe5"],
"payloads": ["cd59dd2431e0"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -190,7 +192,7 @@
"id": "inventory-lifecycle.reset-before-1:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -204,7 +206,7 @@
"id": "inventory-lifecycle.reset-after-1:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -218,7 +220,7 @@
"id": "inventory-lifecycle.reset-after-1:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -232,7 +234,7 @@
"id": "inventory-lifecycle.reset-before-2:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -246,7 +248,7 @@
"id": "inventory-lifecycle.reset-before-2:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -260,7 +262,7 @@
"id": "inventory-lifecycle.reset-after-2:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -274,7 +276,7 @@
"id": "inventory-lifecycle.reset-after-2:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -288,7 +290,7 @@
"id": "inventory-lifecycle.unmount-before-1:lifecycle-boundary",
"observation": {
"sender": ["356af7179c37"],
"payloads": ["9dea95bddfe5"],
"payloads": ["cd59dd2431e0"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -302,7 +304,7 @@
"id": "inventory-lifecycle.unmount-before-1:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -316,7 +318,7 @@
"id": "inventory-lifecycle.unmount-before-1:remounted",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -331,7 +333,7 @@
"id": "inventory-lifecycle.unmount-after-1:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -345,7 +347,7 @@
"id": "inventory-lifecycle.unmount-after-1:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -359,7 +361,7 @@
"id": "inventory-lifecycle.unmount-after-1:remounted",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -374,7 +376,7 @@
"id": "inventory-lifecycle.unmount-before-2:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -388,7 +390,7 @@
"id": "inventory-lifecycle.unmount-before-2:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -402,7 +404,7 @@
"id": "inventory-lifecycle.unmount-before-2:remounted",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -417,7 +419,7 @@
"id": "inventory-lifecycle.unmount-after-2:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -431,7 +433,7 @@
"id": "inventory-lifecycle.unmount-after-2:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -445,7 +447,7 @@
"id": "inventory-lifecycle.unmount-after-2:remounted",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -460,7 +462,7 @@
"id": "inventory-lifecycle.blur-before-1:lifecycle-boundary",
"observation": {
"sender": ["356af7179c37"],
"payloads": ["9dea95bddfe5"],
"payloads": ["cd59dd2431e0"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -474,7 +476,7 @@
"id": "inventory-lifecycle.blur-before-1:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -488,7 +490,7 @@
"id": "inventory-lifecycle.blur-after-1:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -502,7 +504,7 @@
"id": "inventory-lifecycle.blur-after-1:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -516,7 +518,7 @@
"id": "inventory-lifecycle.blur-before-2:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "b2434f1de9f6"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -530,7 +532,7 @@
"id": "inventory-lifecycle.blur-before-2:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -544,7 +546,7 @@
"id": "inventory-lifecycle.blur-after-2:lifecycle-boundary",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -558,7 +560,7 @@
"id": "inventory-lifecycle.blur-after-2:settled",
"observation": {
"sender": ["c0821dc354d7", "64847315695c"],
"payloads": ["9dea95bddfe5", "2837f481a843"],
"payloads": ["cd59dd2431e0", "bb65fa195d1c"],
"settlements": {
"mount": "eb79a9b3682a",
"old": "eb79a9b3682a",
@@ -3,9 +3,9 @@
"family": "settings.bot-overrides",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "eb80283956c93849778f23cbabf1dbf83b72744197af4f6f50335b2fc1590d87",
"platform": "darwin",
@@ -38,7 +38,17 @@
"startedAt": 0
}
},
"271aee91b48d": {
"name": "settings.get#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}",
"sent": 2
},
"4f53cda18c2b": [],
"5c52bc3f9e55": {
"name": "settings.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}",
"sent": 1
},
"7ad8a0996352": {
"name": "settings.get#2",
"args": [
@@ -103,14 +113,6 @@
}
}
},
"7ddcb1852b39": {
"name": "settings.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}"
},
"8f6fe9452bda": {
"name": "settings.get#2",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}"
},
"d52c8e96e222": ["bot-user"],
"eb79a9b3682a": {
"status": "fulfilled",
@@ -128,7 +130,7 @@
"id": "settings-bot-overrides-fulfilled.prelude:settings-pending",
"observation": {
"sender": ["090c88478661"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -140,7 +142,7 @@
"id": "settings-bot-overrides-fulfilled.reset-before-1:lifecycle-boundary",
"observation": {
"sender": ["090c88478661", "7ad8a0996352"],
"payloads": ["7ddcb1852b39", "8f6fe9452bda"],
"payloads": ["5c52bc3f9e55", "271aee91b48d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
@@ -153,7 +155,7 @@
"id": "settings-bot-overrides-fulfilled.reset-before-1:settled",
"observation": {
"sender": ["7ca23c4c946b", "7ad8a0996352"],
"payloads": ["7ddcb1852b39", "8f6fe9452bda"],
"payloads": ["5c52bc3f9e55", "271aee91b48d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
@@ -166,7 +168,7 @@
"id": "settings-bot-overrides-fulfilled.reset-after-1:lifecycle-boundary",
"observation": {
"sender": ["7ca23c4c946b", "7ad8a0996352"],
"payloads": ["7ddcb1852b39", "8f6fe9452bda"],
"payloads": ["5c52bc3f9e55", "271aee91b48d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
@@ -179,7 +181,7 @@
"id": "settings-bot-overrides-fulfilled.reset-after-1:settled",
"observation": {
"sender": ["7ca23c4c946b", "7ad8a0996352"],
"payloads": ["7ddcb1852b39", "8f6fe9452bda"],
"payloads": ["5c52bc3f9e55", "271aee91b48d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-reset": "eb79a9b3682a"
@@ -192,7 +194,7 @@
"id": "settings-bot-overrides-fulfilled.unmount-before-1:lifecycle-boundary",
"observation": {
"sender": ["090c88478661"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -205,7 +207,7 @@
"id": "settings-bot-overrides-fulfilled.unmount-before-1:settled",
"observation": {
"sender": ["7ca23c4c946b"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -218,7 +220,7 @@
"id": "settings-bot-overrides-fulfilled.unmount-before-1:remounted",
"observation": {
"sender": ["7ca23c4c946b", "7ad8a0996352"],
"payloads": ["7ddcb1852b39", "8f6fe9452bda"],
"payloads": ["5c52bc3f9e55", "271aee91b48d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a",
@@ -232,7 +234,7 @@
"id": "settings-bot-overrides-fulfilled.unmount-after-1:lifecycle-boundary",
"observation": {
"sender": ["7ca23c4c946b"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -245,7 +247,7 @@
"id": "settings-bot-overrides-fulfilled.unmount-after-1:settled",
"observation": {
"sender": ["7ca23c4c946b"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -258,7 +260,7 @@
"id": "settings-bot-overrides-fulfilled.unmount-after-1:remounted",
"observation": {
"sender": ["7ca23c4c946b", "7ad8a0996352"],
"payloads": ["7ddcb1852b39", "8f6fe9452bda"],
"payloads": ["5c52bc3f9e55", "271aee91b48d"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a",
@@ -272,7 +274,7 @@
"id": "settings-bot-overrides-fulfilled.blur-before-1:lifecycle-boundary",
"observation": {
"sender": ["090c88478661"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -285,7 +287,7 @@
"id": "settings-bot-overrides-fulfilled.blur-before-1:settled",
"observation": {
"sender": ["7ca23c4c946b"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -298,7 +300,7 @@
"id": "settings-bot-overrides-fulfilled.blur-after-1:lifecycle-boundary",
"observation": {
"sender": ["7ca23c4c946b"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -311,7 +313,7 @@
"id": "settings-bot-overrides-fulfilled.blur-after-1:settled",
"observation": {
"sender": ["7ca23c4c946b"],
"payloads": ["7ddcb1852b39"],
"payloads": ["5c52bc3f9e55"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
File diff suppressed because it is too large Load Diff
@@ -3,9 +3,9 @@
"family": "settings.workspace-context",
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "136fb1d8d5925ad12ba22f4dd6c72573a9ad03b6a6ec8308668f0d9cd71aa36d",
"platform": "darwin",
@@ -63,14 +63,6 @@
"startedAt": 0
}
},
"0fb6ff3590e2": {
"name": "preflight.check#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}"
},
"13028e692551": {
"name": "preflight.check#2",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}"
},
"234fabe27913": {
"name": "preflight.check#1",
"args": [
@@ -107,6 +99,16 @@
},
"trust": {}
},
"2e6a7013ce61": {
"name": "ui.get#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}",
"sent": 4
},
"31184e123046": {
"name": "linear.status#2",
"json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}",
"sent": 8
},
"39bfd36b44ed": {
"name": "ui.get#2",
"args": [
@@ -132,14 +134,6 @@
"startedAt": 0
}
},
"3fc2a1b54e13": {
"name": "settings.get#2",
"json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}"
},
"4335d4b6568f": {
"name": "settings.get#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}"
},
"4938921744c6": {
"name": "ui.get#1",
"args": [
@@ -173,6 +167,11 @@
}
}
},
"4f682962c3c3": {
"name": "preflight.check#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}",
"sent": 4
},
"563e4c82b345": {
"name": "preflight.check#1",
"args": [
@@ -233,9 +232,15 @@
"startedAt": 0
}
},
"76de732c569f": {
"name": "linear.status#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}"
"6d3dba7b22b6": {
"name": "settings.get#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}",
"sent": 4
},
"762a39050969": {
"name": "settings.get#2",
"json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}",
"sent": 8
},
"789980530ae3": {
"name": "linear.status#1",
@@ -295,6 +300,11 @@
"startedAt": 0
}
},
"80712cb13084": {
"name": "linear.status#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}",
"sent": 4
},
"822040616fbb": {
"name": "settings.get#1",
"args": [
@@ -334,18 +344,6 @@
}
}
},
"82ff8123c1fe": {
"name": "ui.get#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}"
},
"847430ffa968": {
"name": "linear.status#2",
"json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}"
},
"84b10f34b617": {
"name": "ui.get#2",
"json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}"
},
"8a63b85fee0c": {
"providers": [],
"settings": {
@@ -407,6 +405,11 @@
"startedAt": 0
}
},
"dee8051f4ae6": {
"name": "ui.get#2",
"json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}",
"sent": 8
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
@@ -415,6 +418,11 @@
"$rpc": "undefined"
}
},
"f1c1823caa54": {
"name": "preflight.check#2",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}",
"sent": 8
},
"f6a09f8c5b85": {
"providers": [],
"settings": {
@@ -430,7 +438,7 @@
"id": "settings-workspace-context-fulfilled.prelude:settings-pending",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -442,7 +450,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-1:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -455,7 +463,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-1:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -478,14 +486,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -500,7 +508,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-1:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -513,7 +521,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-1:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -536,14 +544,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -558,7 +566,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-2:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -571,7 +579,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-2:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -594,14 +602,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -616,7 +624,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-2:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -629,7 +637,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-2:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -652,14 +660,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -674,7 +682,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-3:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -687,7 +695,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-3:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -710,14 +718,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -732,7 +740,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-3:lifecycle-boundary",
"observation": {
"sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -745,7 +753,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-3:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -768,14 +776,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -790,7 +798,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-4:lifecycle-boundary",
"observation": {
"sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -803,7 +811,7 @@
"id": "settings-workspace-context-fulfilled.unmount-before-4:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -826,14 +834,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -848,7 +856,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-4:lifecycle-boundary",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -861,7 +869,7 @@
"id": "settings-workspace-context-fulfilled.unmount-after-4:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-unmount": "eb79a9b3682a"
@@ -884,14 +892,14 @@
"39bfd36b44ed"
],
"payloads": [
"0fb6ff3590e2",
"76de732c569f",
"4335d4b6568f",
"82ff8123c1fe",
"13028e692551",
"847430ffa968",
"3fc2a1b54e13",
"84b10f34b617"
"4f682962c3c3",
"80712cb13084",
"6d3dba7b22b6",
"2e6a7013ce61",
"f1c1823caa54",
"31184e123046",
"762a39050969",
"dee8051f4ae6"
],
"settlements": {
"mount": "eb79a9b3682a",
@@ -906,7 +914,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-1:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -919,7 +927,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-1:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -932,7 +940,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-1:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -945,7 +953,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-1:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -958,7 +966,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-2:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -971,7 +979,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-2:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -984,7 +992,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-2:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -997,7 +1005,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-2:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1010,7 +1018,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-3:lifecycle-boundary",
"observation": {
"sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1023,7 +1031,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-3:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1036,7 +1044,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-3:lifecycle-boundary",
"observation": {
"sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1049,7 +1057,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-3:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1062,7 +1070,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-4:lifecycle-boundary",
"observation": {
"sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1075,7 +1083,7 @@
"id": "settings-workspace-context-fulfilled.blur-before-4:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1088,7 +1096,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-4:lifecycle-boundary",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -1101,7 +1109,7 @@
"id": "settings-workspace-context-fulfilled.blur-after-4:settled",
"observation": {
"sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"],
"payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"],
"payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"],
"settlements": {
"mount": "eb79a9b3682a",
"lifecycle-blur": "eb79a9b3682a"
@@ -0,0 +1,136 @@
{
"operation": "linear.select-workspace-picker",
"family": "linear.select-workspace-picker",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f",
"scenarioSha256": "b6eb40d9a91c89179483afec93fbc121b99ef679d3b2433575b26694d0c577d5",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"06776b3d9986": {
"name": "linear.selectWorkspace#1",
"args": [
{
"name": "method",
"value": "linear.selectWorkspace"
},
{
"name": "params",
"value": {
"workspaceId": "workspace-b"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"ok": true
}
}
}
},
"36c0bdbc5f9b": {
"contextLoads": 0,
"error": "",
"selectedWorkspaceId": "workspace-b",
"teamCount": 0
},
"4a23506ae3dc": {
"name": "linear.selectWorkspace#1",
"args": [
{
"name": "method",
"value": "linear.selectWorkspace"
},
{
"name": "params",
"value": {
"workspaceId": "workspace-b"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"c97ff66588a1": {
"name": "linear.context-reloaded",
"value": {
"contextLoads": 1
},
"sent": 1
},
"d2ade472a8ba": {
"contextLoads": 1,
"error": "",
"selectedWorkspaceId": "workspace-b",
"teamCount": 0
},
"ea687d1f2a99": {
"name": "linear.selectWorkspace#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "linear-select-workspace",
"checkpoints": [
{
"id": "selected",
"observation": {
"sender": ["4a23506ae3dc"],
"payloads": ["ea687d1f2a99"],
"settlements": {
"select-b": "eb79a9b3682a"
},
"state": "36c0bdbc5f9b",
"effects": []
}
},
{
"id": "switched",
"observation": {
"sender": ["06776b3d9986"],
"payloads": ["ea687d1f2a99"],
"settlements": {
"select-b": "eb79a9b3682a"
},
"state": "d2ade472a8ba",
"effects": ["c97ff66588a1"]
}
}
]
}
}
@@ -0,0 +1,335 @@
{
"operation": "session.live-worktree-name",
"family": "live-worktree-name",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "056abf42b34537025fed30a4401bd465c93bc21558babb826f21b5c803b487eb",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0861c192faf1": {
"name": "worktree.show#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}",
"sent": 1
},
"0dcafb9453a6": {
"name": "runtime.clientEvents.unsubscribe#2",
"json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}",
"sent": 3
},
"56c66d671d13": {
"name": "runtime.clientEvents.subscribe#2",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}",
"sent": 2
},
"592ccd522724": {
"crash": {
"$rpc": "null"
},
"name": "Feature Work Renamed",
"resolution": "present"
},
"767a3f460b84": {
"name": "worktree.show#3",
"json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}",
"sent": 3
},
"7926694cda85": {
"crash": {
"$rpc": "null"
},
"name": "Feature Work",
"resolution": "present"
},
"89ff819afc4f": {
"crash": {
"$rpc": "null"
},
"name": "Feature Work Replayed",
"resolution": "present"
},
"94437e18f7e8": {
"name": "worktree.show#1",
"args": [
{
"name": "method",
"value": "worktree.show"
},
{
"name": "params",
"value": {
"worktree": "id:repo-1::/work/feature"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"worktree": {
"displayName": "Feature Work",
"worktreeId": "repo-1::/work/feature"
}
}
}
}
},
"a6dad5b3250f": {
"name": "worktree.show#2",
"args": [
{
"name": "method",
"value": "worktree.show"
},
{
"name": "params",
"value": {
"worktree": "id:repo-1::/work/feature"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"worktree": {
"displayName": "Feature Work Renamed",
"worktreeId": "repo-1::/work/feature"
}
}
}
}
},
"b17f8702145e": {
"name": "worktree.show#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}",
"sent": 2
},
"b3c977d010c6": {
"name": "worktree.show#3",
"args": [
{
"name": "method",
"value": "worktree.show"
},
{
"name": "params",
"value": {
"worktree": "id:repo-1::/work/feature"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-6",
"ok": true,
"result": {
"worktree": {
"displayName": "Feature Work Replayed",
"worktreeId": "repo-1::/work/feature"
}
}
}
}
},
"bbdf51d110d4": {
"name": "runtime.clientEvents.unsubscribe#1",
"json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
"sent": 2
},
"bdc95c0ab9bc": {
"name": "runtime.clientEvents.subscribe#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}",
"sent": 0
},
"c7ea51c18a03": {
"name": "worktree.show#1",
"args": [
{
"name": "method",
"value": "worktree.show"
},
{
"name": "params",
"value": {
"worktree": "id:repo-1::/work/feature"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"dcfa9a8e959c": {
"crash": {
"$rpc": "null"
},
"name": "feature",
"resolution": "unknown"
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "live-worktree-name-stream",
"checkpoints": [
{
"id": "subscribed",
"observation": {
"sender": ["c7ea51c18a03"],
"payloads": ["bdc95c0ab9bc", "0861c192faf1"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "dcfa9a8e959c",
"effects": []
}
},
{
"id": "ready",
"observation": {
"sender": ["c7ea51c18a03"],
"payloads": ["bdc95c0ab9bc", "0861c192faf1"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "dcfa9a8e959c",
"effects": []
}
},
{
"id": "named",
"observation": {
"sender": ["94437e18f7e8"],
"payloads": ["bdc95c0ab9bc", "0861c192faf1"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "7926694cda85",
"effects": []
}
},
{
"id": "refreshed",
"observation": {
"sender": ["94437e18f7e8", "a6dad5b3250f"],
"payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "592ccd522724",
"effects": []
}
},
{
"id": "re-subscribed",
"observation": {
"sender": ["94437e18f7e8", "a6dad5b3250f"],
"payloads": [
"bdc95c0ab9bc",
"0861c192faf1",
"b17f8702145e",
"56c66d671d13",
"bbdf51d110d4"
],
"settlements": {
"mount": "eb79a9b3682a",
"cutover": "eb79a9b3682a"
},
"state": "592ccd522724",
"effects": []
}
},
{
"id": "replayed",
"observation": {
"sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"],
"payloads": [
"bdc95c0ab9bc",
"0861c192faf1",
"b17f8702145e",
"56c66d671d13",
"bbdf51d110d4",
"767a3f460b84"
],
"settlements": {
"mount": "eb79a9b3682a",
"cutover": "eb79a9b3682a"
},
"state": "89ff819afc4f",
"effects": []
}
},
{
"id": "unmounted",
"observation": {
"sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"],
"payloads": [
"bdc95c0ab9bc",
"0861c192faf1",
"b17f8702145e",
"56c66d671d13",
"bbdf51d110d4",
"767a3f460b84",
"0dcafb9453a6"
],
"settlements": {
"mount": "eb79a9b3682a",
"cutover": "eb79a9b3682a",
"unmount": "eb79a9b3682a"
},
"state": "89ff819afc4f",
"effects": []
}
}
]
}
}
@@ -0,0 +1,581 @@
{
"operation": "agentSession.structured-launch",
"family": "agentSession.structured-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "211e3780edc0ff5fa0529c0de0e8bc2fd746a19c8a6b4e49900f6c4e56d53f7c",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"03bae1ffdae6": {
"name": "agentSession.createSupport#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
}
}
}
},
"04f63acf891a": {
"launched": {
"kind": "unsupported",
"reason": {
"$rpc": "undefined"
}
}
},
"0972c78c3d52": {
"name": "agentSession.createSupport#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
}
}
},
"2c227fd1941f": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unsupported"
}
},
"3db129933d79": {
"name": "agentSession.createSupport#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}",
"sent": 1
},
"551313dcc738": {
"launched": {
"kind": "unsupported",
"reason": "remote"
}
},
"70998d5a1f56": {
"name": "agentSession.createSupport#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"
}
}
}
},
"99caa4276b06": {
"name": "agentSession.createSupport#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
}
}
},
"add0a607a4c6": {
"name": "agentSession.createSupport#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"
}
}
}
},
"af6b02a86254": {
"name": "agentSession.createSupport#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
}
}
}
},
"b5992e9c9c01": {
"name": "agentSession.createSupport#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
}
}
},
"bef30d717da6": {
"name": "agentSession.createSupport#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": {
"reason": "remote",
"supported": false
}
}
}
},
"c0c67a317e23": {
"name": "agentSession.createSupport#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
}
}
},
"dd51c5566f19": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unsupported",
"reason": "remote"
}
},
"e4a3b2c6a246": {
"name": "agentSession.createSupport#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
}
}
},
"f0bb9de9827c": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"kind": "unsupported",
"reason": {
"$rpc": "undefined"
}
}
},
"f40adca316f9": {
"launched": {
"kind": "unsupported"
}
},
"f698ccf3773d": {
"name": "agentSession.createSupport#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
}
}
}
},
"recording": {
"scenario": "matrix-agentsession.structured-launch-agentsession.createsupport-1",
"checkpoints": [
{
"id": "structured-launch-unsupported.normal:unsupported",
"observation": {
"sender": ["bef30d717da6"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "dd51c5566f19"
},
"state": "551313dcc738",
"effects": []
}
},
{
"id": "structured-launch-unsupported.result-absent:unsupported",
"observation": {
"sender": ["b5992e9c9c01"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-launch-unsupported.result-null:unsupported",
"observation": {
"sender": ["70998d5a1f56"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-launch-unsupported.inner-ok-missing:unsupported",
"observation": {
"sender": ["add0a607a4c6"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-launch-unsupported.inner-false-string-error:unsupported",
"observation": {
"sender": ["af6b02a86254"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-launch-unsupported.inner-false-object-error:unsupported",
"observation": {
"sender": ["03bae1ffdae6"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "f0bb9de9827c"
},
"state": "04f63acf891a",
"effects": []
}
},
{
"id": "structured-launch-unsupported.outer-refused:unsupported",
"observation": {
"sender": ["f698ccf3773d"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-launch-unsupported.outer-refused-no-message:unsupported",
"observation": {
"sender": ["0972c78c3d52"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-launch-unsupported.method-not-found:unsupported",
"observation": {
"sender": ["99caa4276b06"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-launch-unsupported.transport-rejection:unsupported",
"observation": {
"sender": ["e4a3b2c6a246"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
},
{
"id": "structured-launch-unsupported.transport-rejection-no-message:unsupported",
"observation": {
"sender": ["c0c67a317e23"],
"payloads": ["3db129933d79"],
"settlements": {
"claude": "2c227fd1941f"
},
"state": "f40adca316f9",
"effects": []
}
}
]
}
}
@@ -3,10 +3,10 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "efb8d1cd2a2ff0ade4cdc48a1aacec565e33b405bbe95c100b86534cdde49740",
"platform": "darwin",
"scenarioVersion": 1,
@@ -25,10 +25,6 @@
"message": "Cannot read properties of undefined (reading 'sessions')"
}
},
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"232a27ecb718": {
"name": "aiVault.listSessions#1",
"args": [
@@ -74,6 +70,11 @@
"message": "Unable to load agent sessions"
}
},
"56c96fec6d08": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 2
},
"61f76365e23c": {
"activeWorktreePath": "/repo/feature",
"hostStatusResult": {
@@ -121,10 +122,6 @@
}
}
},
"681cb0d74271": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}"
},
"698f848e6967": {
"activeWorktreePath": "/repo/feature",
"hostStatusResult": {
@@ -206,6 +203,11 @@
}
}
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"a07975f2dc20": {
"name": "aiVault.listSessions#1",
"args": [
@@ -582,7 +584,7 @@
"id": "aivault-history-scan-fulfilled.normal:ready",
"observation": {
"sender": ["6e50957443ea", "b567072e5440"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -594,7 +596,7 @@
"id": "aivault-history-scan-fulfilled.result-absent:ready",
"observation": {
"sender": ["6e50957443ea", "fe995263cbdb"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -606,7 +608,7 @@
"id": "aivault-history-scan-fulfilled.result-null:ready",
"observation": {
"sender": ["6e50957443ea", "63954da09bd5"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -618,7 +620,7 @@
"id": "aivault-history-scan-fulfilled.inner-ok-missing:ready",
"observation": {
"sender": ["6e50957443ea", "a07975f2dc20"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -630,7 +632,7 @@
"id": "aivault-history-scan-fulfilled.inner-false-string-error:ready",
"observation": {
"sender": ["6e50957443ea", "cb6df2fa8b89"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -642,7 +644,7 @@
"id": "aivault-history-scan-fulfilled.inner-false-object-error:ready",
"observation": {
"sender": ["6e50957443ea", "b439901fb32e"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -654,7 +656,7 @@
"id": "aivault-history-scan-fulfilled.outer-refused:ready",
"observation": {
"sender": ["6e50957443ea", "e52e185c004d"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -666,7 +668,7 @@
"id": "aivault-history-scan-fulfilled.outer-refused-no-message:ready",
"observation": {
"sender": ["6e50957443ea", "82e315fc9ae9"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -678,7 +680,7 @@
"id": "aivault-history-scan-fulfilled.method-not-found:ready",
"observation": {
"sender": ["6e50957443ea", "b4700df437ac"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -690,7 +692,7 @@
"id": "aivault-history-scan-fulfilled.transport-rejection:ready",
"observation": {
"sender": ["6e50957443ea", "232a27ecb718"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -702,7 +704,7 @@
"id": "aivault-history-scan-fulfilled.transport-rejection-no-message:ready",
"observation": {
"sender": ["6e50957443ea", "c5357db644f1"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -0,0 +1,727 @@
{
"operation": "aiVault.history-screen",
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "30e00c0d94413aab61b164fb9a658e526448addc4c42fd8892b1c28335d30beb",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"017d690f964b": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 4
},
"074d2293c010": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"worktrees": [
{
"path": "/repo/feature",
"repoId": "repo-1",
"worktreeId": "wt-history"
},
{
"path": "/repo/sibling",
"repoId": "repo-1",
"worktreeId": "wt-2"
}
]
}
}
}
},
"2698c9770ad3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"29ba09534e96": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"377739b45602": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"522b745543f1": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": ["/repo/feature"]
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"6ae619d3108a": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"72fe28919674": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-2",
"ok": false
}
}
},
"734a1d442442": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"8fa57295e0a5": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true
}
}
},
"accf1e896504": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"ba9fd57319d3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"bc1a8e138f82": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"bcb43d5f686b": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-2",
"ok": false
}
}
},
"c957a9653ef3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-2",
"ok": false
}
}
},
"d22bb2f62cea": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 2,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history"]
},
"d4ef0569dbbc": {
"name": "status.get#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 3
},
"de79fb948454": {
"name": "worktree.ps#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}",
"sent": 2
},
"de87f6266897": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"eadec2060275": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"ff0ffaddbbf7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 2
}
},
"recording": {
"scenario": "matrix-aivault.history-screen-platform-status",
"checkpoints": [
{
"id": "aivault-history-screen-worktrees.prelude:worktrees-pending",
"observation": {
"sender": ["bc1a8e138f82", "ba9fd57319d3"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.normal:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.result-absent:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "8fa57295e0a5", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.result-null:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "accf1e896504", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "734a1d442442", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "eadec2060275", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "377739b45602", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "c957a9653ef3", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "72fe28919674", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "bcb43d5f686b", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "de87f6266897", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "2698c9770ad3", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
}
]
}
}
@@ -0,0 +1,876 @@
{
"operation": "aiVault.history-screen",
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "b146be741484f2a6dca25e97f52b9ed10f8a2b28bd00e6b56acffbcd82136b2f",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"017d690f964b": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 4
},
"074d2293c010": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"worktrees": [
{
"path": "/repo/feature",
"repoId": "repo-1",
"worktreeId": "wt-history"
},
{
"path": "/repo/sibling",
"repoId": "repo-1",
"worktreeId": "wt-2"
}
]
}
}
}
},
"0be231dddda1": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": [
"Agent Session History",
"orca-history",
"Agent Session History Unavailable",
"Update Orca on this host to browse agent session history."
]
},
"18c1e8ee98a9": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"18ef6596b779": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history", "Unable to Load", "Retry"]
},
"1c8a5fa9c737": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"1ca2b2b151f0": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"20368e0f363c": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"22141179786a": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history", "Unable to Load", "Unknown method", "Retry"]
},
"266cf07850dd": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-3",
"ok": false
}
}
},
"29ba09534e96": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"3bf9d347000f": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true
}
}
},
"4584964f74a7": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"4af220e500d6": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history", "Unable to Load", "outer refused", "Retry"]
},
"522b745543f1": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": ["/repo/feature"]
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"5368af075169": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": [
"Agent Session History",
"orca-history",
"Unable to Load",
"Cannot read properties of undefined (reading 'capabilities')",
"Retry"
]
},
"6ae619d3108a": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"70934ebc4e94": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"7f2073d8dcc1": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": [
"Agent Session History",
"orca-history",
"Unable to Load",
"transport failure",
"Retry"
]
},
"8f8b5bf6f808": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-3",
"ok": false
}
}
},
"af9574769167": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": [
"Agent Session History",
"orca-history",
"Unable to Load",
"Unable to reach host",
"Retry"
]
},
"ba9fd57319d3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"bc1a8e138f82": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"c767ef059f7e": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 3,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 5,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": [
"Agent Session History",
"orca-history",
"Unable to Load",
"Cannot read properties of null (reading 'capabilities')",
"Retry"
]
},
"d22bb2f62cea": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 2,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history"]
},
"d2bc55fb4a14": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-3",
"ok": false
}
}
},
"d4ef0569dbbc": {
"name": "status.get#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 3
},
"de79fb948454": {
"name": "worktree.ps#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}",
"sent": 2
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"ff0ffaddbbf7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 2
}
},
"recording": {
"scenario": "matrix-aivault.history-screen-status.get-2",
"checkpoints": [
{
"id": "aivault-history-screen-worktrees.prelude:worktrees-pending",
"observation": {
"sender": ["bc1a8e138f82", "ba9fd57319d3"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.normal:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.result-absent:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "3bf9d347000f"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "5368af075169",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.result-null:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "1c8a5fa9c737"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "c767ef059f7e",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "70934ebc4e94"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "0be231dddda1",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "4584964f74a7"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "0be231dddda1",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "20368e0f363c"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "0be231dddda1",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "266cf07850dd"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "4af220e500d6",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "8f8b5bf6f808"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "af9574769167",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "d2bc55fb4a14"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "22141179786a",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "18c1e8ee98a9"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "7f2073d8dcc1",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "1ca2b2b151f0"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "18ef6596b779",
"effects": []
}
}
]
}
}
@@ -0,0 +1,772 @@
{
"operation": "aiVault.history-screen",
"family": "aiVault.history-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "5365449c24d789c6c01604b520b795502d0bec352032686efecd121fc4497f96",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"017d690f964b": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 4
},
"074d2293c010": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"worktrees": [
{
"path": "/repo/feature",
"repoId": "repo-1",
"worktreeId": "wt-history"
},
{
"path": "/repo/sibling",
"repoId": "repo-1",
"worktreeId": "wt-2"
}
]
}
}
}
},
"08a62b87ca0b": {
"crash": "Cannot read properties of undefined (reading 'find')",
"elements": {},
"labels": [],
"text": []
},
"111018d23b6c": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"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
}
}
},
"29ba09534e96": {
"name": "status.get#2",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-3",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"430d32843438": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"481a5e96b319": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"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
}
}
}
},
"4cb0f02a3a16": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": []
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"4fa9e403a3c8": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"522b745543f1": {
"name": "aiVault.listSessions#1",
"args": [
{
"name": "method",
"value": "aiVault.listSessions"
},
{
"name": "params",
"value": {
"force": false,
"limit": 500,
"scopePaths": ["/repo/feature"]
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"60569b10e210": {
"name": "screen.crash",
"value": {
"message": "Cannot read properties of undefined (reading 'find')"
},
"sent": 2
},
"6ae619d3108a": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"capabilities": ["aiVault.v1"]
}
}
}
},
"6ed6d686b491": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true
}
}
},
"8b42c7661500": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[]}}",
"sent": 4
},
"97177805ceb8": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-1",
"ok": false
}
}
},
"993fb2bd3f3e": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-1",
"ok": false
}
}
},
"9f1a49cd671e": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"ba9fd57319d3": {
"name": "status.get#1",
"args": [
{
"name": "method",
"value": "status.get"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"bc1a8e138f82": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"d22bb2f62cea": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 2,
"RefreshCw": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back", "Refresh agent sessions"],
"text": ["Agent Session History", "orca-history"]
},
"d4ef0569dbbc": {
"name": "status.get#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 3
},
"de79fb948454": {
"name": "worktree.ps#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}",
"sent": 2
},
"e904502f2359": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"f2257f595504": {
"name": "worktree.ps#1",
"args": [
{
"name": "method",
"value": "worktree.ps"
},
{
"name": "params",
"value": {
"limit": 10000
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"ff0ffaddbbf7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 2
}
},
"recording": {
"scenario": "matrix-aivault.history-screen-worktree.ps-1",
"checkpoints": [
{
"id": "aivault-history-screen-worktrees.prelude:worktrees-pending",
"observation": {
"sender": ["bc1a8e138f82", "ba9fd57319d3"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.normal:worktrees-listed",
"observation": {
"sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.result-absent:worktrees-listed",
"observation": {
"sender": ["6ed6d686b491", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.result-null:worktrees-listed",
"observation": {
"sender": ["430d32843438", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed",
"observation": {
"sender": ["e904502f2359", "6ae619d3108a"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "08a62b87ca0b",
"effects": ["60569b10e210"]
}
},
{
"id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed",
"observation": {
"sender": ["f2257f595504", "6ae619d3108a"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "08a62b87ca0b",
"effects": ["60569b10e210"]
}
},
{
"id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed",
"observation": {
"sender": ["481a5e96b319", "6ae619d3108a"],
"payloads": ["de79fb948454", "ff0ffaddbbf7"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "08a62b87ca0b",
"effects": ["60569b10e210"]
}
},
{
"id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed",
"observation": {
"sender": ["993fb2bd3f3e", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed",
"observation": {
"sender": ["97177805ceb8", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed",
"observation": {
"sender": ["111018d23b6c", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed",
"observation": {
"sender": ["4fa9e403a3c8", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
},
{
"id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed",
"observation": {
"sender": ["9f1a49cd671e", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"],
"payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "d22bb2f62cea",
"effects": []
}
}
]
}
}
@@ -3,10 +3,10 @@
"family": "aiVault.history",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462",
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4",
"adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "a5698ca720dad08561a509c9c18f7586611fc68c58bd86791f4fcefc7915ab1f",
"platform": "darwin",
"scenarioVersion": 1,
@@ -61,10 +61,6 @@
}
}
},
"1e5b32902af7": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}"
},
"2698c9770ad3": {
"name": "status.get#1",
"args": [
@@ -141,9 +137,10 @@
"message": "Cannot read properties of undefined (reading 'capabilities')"
}
},
"681cb0d74271": {
"56c96fec6d08": {
"name": "aiVault.listSessions#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}"
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}",
"sent": 2
},
"698f848e6967": {
"activeWorktreePath": "/repo/feature",
@@ -232,6 +229,11 @@
"kind": "unsupported"
}
},
"852980e2efc0": {
"name": "status.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}",
"sent": 1
},
"88200d49083c": {
"name": "status.get#1",
"args": [
@@ -582,7 +584,7 @@
"id": "aivault-history-scan-fulfilled.normal:ready",
"observation": {
"sender": ["6e50957443ea", "b567072e5440"],
"payloads": ["1e5b32902af7", "681cb0d74271"],
"payloads": ["852980e2efc0", "56c96fec6d08"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -594,7 +596,7 @@
"id": "aivault-history-scan-fulfilled.result-absent:ready",
"observation": {
"sender": ["7d3dd7f9381b"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -606,7 +608,7 @@
"id": "aivault-history-scan-fulfilled.result-null:ready",
"observation": {
"sender": ["88200d49083c"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -618,7 +620,7 @@
"id": "aivault-history-scan-fulfilled.inner-ok-missing:ready",
"observation": {
"sender": ["4451bb95a76e"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -630,7 +632,7 @@
"id": "aivault-history-scan-fulfilled.inner-false-string-error:ready",
"observation": {
"sender": ["944bf432f199"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -642,7 +644,7 @@
"id": "aivault-history-scan-fulfilled.inner-false-object-error:ready",
"observation": {
"sender": ["89236e432861"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -654,7 +656,7 @@
"id": "aivault-history-scan-fulfilled.outer-refused:ready",
"observation": {
"sender": ["16cd464bf664"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -666,7 +668,7 @@
"id": "aivault-history-scan-fulfilled.outer-refused-no-message:ready",
"observation": {
"sender": ["9cdf3c107e7b"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -678,7 +680,7 @@
"id": "aivault-history-scan-fulfilled.method-not-found:ready",
"observation": {
"sender": ["c71b2f8a6993"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -690,7 +692,7 @@
"id": "aivault-history-scan-fulfilled.transport-rejection:ready",
"observation": {
"sender": ["de87f6266897"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -702,7 +704,7 @@
"id": "aivault-history-scan-fulfilled.transport-rejection-no-message:ready",
"observation": {
"sender": ["2698c9770ad3"],
"payloads": ["1e5b32902af7"],
"payloads": ["852980e2efc0"],
"settlements": {
"mount": "eb79a9b3682a"
},
@@ -0,0 +1,772 @@
{
"operation": "aiVault.resume-launch",
"family": "aiVault.resume-launch",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "f721ab4438c4183927ce5ebc5fd6f1f18414701a5fa3b2807c359785829962a3",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"00ce2da4b927": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"133463600de6": {
"failure": "Failed to create terminal",
"launched": "unlaunched"
},
"30ec57518c05": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Failed to create terminal",
"isRpcDeliveryUnknown": false
}
},
"32a7c0ae7918": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "outer refused",
"isRpcDeliveryUnknown": false
}
},
"39cabd8258a3": {
"name": "terminal.send#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}",
"sent": 2
},
"3ad18553135a": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"400d946a183d": {
"failure": {
"$rpc": "null"
},
"launched": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex"
}
},
"432332c9740e": {
"failure": "Created terminal response was invalid",
"launched": "unlaunched"
},
"495d8519301e": {
"name": "session.tabs.createTerminal#1",
"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\"}}",
"sent": 1
},
"4ee71a589941": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"54558214b507": {
"failure": "Unknown method",
"launched": "unlaunched"
},
"611cf7134d32": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-1",
"ok": false
}
}
},
"671d748c842b": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true
}
}
},
"681fc4d59b92": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Created terminal response was invalid",
"isRpcDeliveryUnknown": false
}
},
"6b1e36abce6b": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"tab": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex",
"type": "terminal"
}
}
}
}
},
"6e79da536ca9": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "tab-9",
"terminal": "terminal-9",
"title": "codex"
}
},
"80ce09f50b96": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"92613ac6d4fa": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"a84f5d45a48b": {
"name": "terminal.send#1",
"args": [
{
"name": "method",
"value": "terminal.send"
},
{
"name": "params",
"value": {
"enter": true,
"terminal": "terminal-9",
"text": "codex resume rollout"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"send": {
"accepted": true
}
}
}
}
},
"a947768bc0ed": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
},
"b948e8307e81": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Unknown method",
"isRpcDeliveryUnknown": false
}
},
"c7584e82c72f": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
},
"cb0891b6056d": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-1",
"ok": false
}
}
},
"d34341547b51": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"dbc538c406b0": {
"name": "session.tabs.createTerminal#1",
"args": [
{
"name": "method",
"value": "session.tabs.createTerminal"
},
{
"name": "params",
"value": {
"activate": false,
"clientMutationId": "resume-mutation-1",
"env": {
"ORCA_RESUME": "1"
},
"envToDelete": ["CODEX_HOME"],
"launchAgent": "codex",
"navigation": "caller",
"select": true,
"worktree": "id:workspace-1"
}
},
{
"name": "options",
"value": {
"timeoutMs": 30000
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"e105057c5765": {
"failure": "transport failure",
"launched": "unlaunched"
},
"efa7e20c5a6f": {
"failure": "outer refused",
"launched": "unlaunched"
},
"f1f50b49b8de": {
"failure": "",
"launched": "unlaunched"
}
},
"recording": {
"scenario": "matrix-aivault.resume-launch-session.tabs.createterminal-1",
"checkpoints": [
{
"id": "aivault-resume-launch-sent.normal:resumed",
"observation": {
"sender": ["6b1e36abce6b", "a84f5d45a48b"],
"payloads": ["495d8519301e", "39cabd8258a3"],
"settlements": {
"full": "6e79da536ca9"
},
"state": "400d946a183d",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.result-absent:resumed",
"observation": {
"sender": ["671d748c842b"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "681fc4d59b92"
},
"state": "432332c9740e",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.result-null:resumed",
"observation": {
"sender": ["d34341547b51"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "681fc4d59b92"
},
"state": "432332c9740e",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.inner-ok-missing:resumed",
"observation": {
"sender": ["3ad18553135a"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "681fc4d59b92"
},
"state": "432332c9740e",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.inner-false-string-error:resumed",
"observation": {
"sender": ["92613ac6d4fa"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "681fc4d59b92"
},
"state": "432332c9740e",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.inner-false-object-error:resumed",
"observation": {
"sender": ["4ee71a589941"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "681fc4d59b92"
},
"state": "432332c9740e",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.outer-refused:resumed",
"observation": {
"sender": ["611cf7134d32"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "32a7c0ae7918"
},
"state": "efa7e20c5a6f",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.outer-refused-no-message:resumed",
"observation": {
"sender": ["cb0891b6056d"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "30ec57518c05"
},
"state": "133463600de6",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.method-not-found:resumed",
"observation": {
"sender": ["00ce2da4b927"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "b948e8307e81"
},
"state": "54558214b507",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.transport-rejection:resumed",
"observation": {
"sender": ["dbc538c406b0"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "a947768bc0ed"
},
"state": "e105057c5765",
"effects": []
}
},
{
"id": "aivault-resume-launch-sent.transport-rejection-no-message:resumed",
"observation": {
"sender": ["80ce09f50b96"],
"payloads": ["495d8519301e"],
"settlements": {
"full": "c7584e82c72f"
},
"state": "f1f50b49b8de",
"effects": []
}
}
]
}
}

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