Files
deepseek-harness/.agents/notes/implemented/testing/2026-08-24-session-log-snapshot-corpus.md
T

5.6 KiB

Agent Note: Session-log snapshot corpus

Status: implemented

English | 中文

Problem

The keyless snapshot corpus uses ACP as the controller for many scenarios whose asserted behavior belongs to the assembled Agent, tools, persistence, or another product interface. This makes an automation protocol look like the owner of backend behavior, retains test-only application entrypoints beside the supported dsh launcher, and scatters recorded sessions among example, SDK, Web, and script directories.

The term snapshot also covers unrelated ARIA, geometry, generator, and package-unit expected output. Contributors cannot infer from a path whether a recorded session drives the test, whether the session is both replay input and expected output, or which command owns a refresh.

Decision

Reserve the top-level snapshots/ tree and *.snapshot.ts suffix for scenarios that own or explicitly reference recorded session JSONL. Each process-level scenario launches a shipped profile through dsh; a small adapter controls headless, SDK, ACP, or Web behavior without becoming another application entrypoint. A declarative snapshot.yml holds only profile, patch, lifecycle-control, platform, header-pin, and workspace facts that the completed session cannot express.

The recorded session remains the primary input and expected output. Human-originated messages drive the selected public interface, recorded assistant chunks drive deterministic model replay, and the normalized persisted result must equal the fixture. Parent and child sessions share one typed redaction map. Committed fixtures contain relationship-preserving identity tokens and replace request system prompts and tool schemas with tokens; each distinct header class retains one explicit sidecar owner.

Every existing ACP scenario receives a behavior-preserving destination. Ordinary one-shot behavior uses the headless profile, persistent machine control uses the SDK profile, and only ACP protocol behavior remains ACP-owned. Web scenarios driven by a recorded session join the corpus and retain their ARIA or geometry expected output as secondary evidence. Web and package tests without a recorded-session source keep owner-local expected output and stop using snapshot paths or filenames.

Workspace inputs remain scenario-local. A mutating scenario compares a complete expected final workspace that record and refresh never rewrite, so a model or tool self-report cannot satisfy the test. Existing intentional session reuse remains an explicit acyclic owner reference; the corpus adds no workspace inheritance or general fixture-merging mechanism.

Alternatives considered

Keep ACP as the universal driver. This preserves the existing harness but continues coupling backend coverage to a low-priority protocol and cannot prove the supported headless, SDK, and Web launch paths.

Move every scenario to a new headless test driver. A private driver would reproduce the application-entrypoint problem and cannot express multi-turn, cancellation, or background lifecycle control available through the shipped SDK profile.

Centralize every expected output under snapshots/. ARIA, geometry, generator, and unit expectations do not use a recorded session as both input and result. Mixing them would keep the current ambiguous terminology and weaken package ownership.

Create one declarative browser and terminal language. Complex UI and PTY scenarios need interaction code. A shared snapshot core plus interface adapters removes application drivers without adding a second test framework.

Deduplicate workspaces and recorded sessions automatically. The current workspace duplication is small and intentional locality is easier to review. Only existing semantic session reuse justifies an explicit reference.

Invariants

  • Every existing recorded-session scenario has one passing replacement before its old owner is removed.
  • Every process-level snapshot starts through dsh, and the application-entrypoint inventory no longer allows the retired snapshot drivers.
  • Every top-level scenario owns or references session JSONL; non-session expected output remains owner-local.
  • Committed session fixtures are redaction fixed points, contain no system-prompt or tool-schema bulk, and retain exactly one pin per header class.
  • Mutating scenarios verify their final workspace externally.
  • Owner-local process expectations use *.expected.e2e.ts and a separate built-output gate.
  • Source and built launch modes, browser replay, SDK projections, packaged Python runtime cases, documentation gates, and repository hygiene pass.

Consequences

The corpus makes controller ownership visible: ordinary Agent behavior no longer inherits ACP protocol output, SDK and Web projections retain their interface-specific evidence, and only ACP cancellation and permission exchanges remain ACP-owned. Contributors review one normalized session diff plus the sidecars or UI expectations that add independent evidence. Adding a composition requires a manifest class pin; adding a volatile identity requires a typed relationship-preserving redaction rule rather than a broader text scrubber.

Risks

The migration moves hundreds of fixtures and can hide behavior changes in path churn. Mechanical moves, normalization changes, and controller changes therefore remain separate commits, and expected-output rewrites require scenario-level review.

One recorded session serving as both replay input and expected output can reproduce a bad model script consistently. Independent world-state assertions, protocol or UI expectations, real-model recording, and focused package tests remain required complementary evidence.