Review discussion converged on the industry shape (Claude Code caches user context per conversation; Codex separates initial context from diffs; Kimi appends at continuation boundaries to protect prompt caching): stable openers belong in a compose-once prefix, mid-session changes belong in append-only history — not in a per-request slot. agent/session-prefix fires ONCE per loop instance, lazily on its first request-building step: the composed Message[] is deep-frozen, cached on the transmission bookkeeping, recorded as EpochHeader.messagePrefix on the anchoring 'initial'/'resume' snapshot, and reused verbatim for every request the instance sends — prefix stability is structural, not a producer discipline, and a resume recomposes with attributable drift. The request is messagePrefix + boundary snapshot. The per-step RequestAdvice/RequestAdviceContext surface and the messageSuffix header field are dropped: the tail slot had no consumer, and every current update pattern (new AGENTS.md discovered, memory update, skills change) routes through the existing append-only history channels — inject(), tools/post-execute additionalContext, prompt-submit additionalContext — each paid once and prefix-cached thereafter. The messagePrefix delta arm stays for codec totality; the loop never produces one in practice.
210 lines
9.7 KiB
TypeScript
210 lines
9.7 KiB
TypeScript
/**
|
|
* Request-header reconstruction utilities: the pure fold/diff/apply trio over
|
|
* the `request/header` / `request/header-delta` session events. Anyone
|
|
* holding a session log reconstructs the {@link EpochHeader} any request was
|
|
* built under by folding these events in log order; the loop uses the same
|
|
* functions to decide whether a step's header changed and to encode the
|
|
* change. Deltas are an encoding optimization with a safety valve — the
|
|
* writer round-trip-verifies every delta before appending and falls back to
|
|
* a full snapshot when the encoding cannot express the change — so folding
|
|
* never needs error recovery on a well-formed log.
|
|
*
|
|
* @module dsh-session/request-header
|
|
*/
|
|
|
|
import { callConfigEquals } from '@deepseek-ai/dsh-llm'
|
|
import type { LlmCallConfig, Message, ToolSchema } from '@deepseek-ai/dsh-llm'
|
|
import type { EpochHeader, SessionEvent, SystemDelta, ToolsDelta } from './types.ts'
|
|
|
|
/** The `request/header-delta` payload shape: each present field amends the folded header. */
|
|
type HeaderDelta = {
|
|
system?: SystemDelta
|
|
tools?: ToolsDelta
|
|
config?: LlmCallConfig
|
|
messagePrefix?: Message[]
|
|
}
|
|
|
|
/**
|
|
* Normalize a header to canonical form: an empty system prompt, an empty
|
|
* tool list, and an empty session prefix become ABSENT fields, matching how
|
|
* requests are built (the request-build spreads skip empty values). Diff,
|
|
* fold, and comparison all operate on canonical headers, so "no system
|
|
* prompt" (and "no session prefix") has exactly one representation.
|
|
* @param header - the header to normalize (not mutated).
|
|
* @returns the canonical header.
|
|
*/
|
|
export function canonicalHeader(header: EpochHeader): EpochHeader {
|
|
return {
|
|
config: header.config,
|
|
...header.system !== undefined && header.system.length > 0 ? { system: header.system } : {},
|
|
...header.tools !== undefined && header.tools.length > 0 ? { tools: header.tools } : {},
|
|
...header.messagePrefix !== undefined && header.messagePrefix.length > 0 ? { messagePrefix: header.messagePrefix } : {},
|
|
}
|
|
}
|
|
|
|
/** Split a canonical (possibly absent) system prompt into lines; absence is zero lines. */
|
|
function systemLines(system: string | undefined): string[] {
|
|
return system === undefined ? [] : system.split('\n')
|
|
}
|
|
|
|
/** Join lines back into a canonical system value; zero lines is absence. */
|
|
function joinSystem(lines: string[]): string | undefined {
|
|
return lines.length === 0 ? undefined : lines.join('\n')
|
|
}
|
|
|
|
/**
|
|
* Compute the line-level {@link SystemDelta} between two canonical system
|
|
* prompts: trim the common prefix and (non-overlapping) common suffix, and
|
|
* carry the replacement lines between them. Deterministic and library-free;
|
|
* with nothing shared it degenerates to a full replacement.
|
|
*/
|
|
function diffSystem(prev: string | undefined, next: string | undefined): SystemDelta {
|
|
const a = systemLines(prev)
|
|
const b = systemLines(next)
|
|
let keepStart = 0
|
|
while (keepStart < a.length && keepStart < b.length && a[keepStart] === b[keepStart]) keepStart += 1
|
|
let keepEnd = 0
|
|
while (
|
|
keepEnd < a.length - keepStart &&
|
|
keepEnd < b.length - keepStart &&
|
|
a[a.length - 1 - keepEnd] === b[b.length - 1 - keepEnd]
|
|
) keepEnd += 1
|
|
return { keepStart, keepEnd, insert: b.slice(keepStart, b.length - keepEnd) }
|
|
}
|
|
|
|
/** Apply a {@link SystemDelta} to a canonical system prompt. */
|
|
function applySystem(prev: string | undefined, delta: SystemDelta): string | undefined {
|
|
const a = systemLines(prev)
|
|
return joinSystem([...a.slice(0, delta.keepStart), ...delta.insert, ...a.slice(a.length - delta.keepEnd)])
|
|
}
|
|
|
|
/** Canonical JSON equality for tool schemas — sound because schemas are
|
|
* JSON-serializable by construction and both sides come from the same
|
|
* assembly path, so key insertion order matches when the values do. */
|
|
function sameSchema(a: ToolSchema, b: ToolSchema): boolean {
|
|
return JSON.stringify(a) === JSON.stringify(b)
|
|
}
|
|
|
|
/**
|
|
* Compute the name-keyed {@link ToolsDelta} between two canonical tool lists.
|
|
* A pure reordering produces an empty delta — the writer's round-trip guard
|
|
* catches that case and records a snapshot instead.
|
|
*/
|
|
function diffTools(prev: readonly ToolSchema[], next: readonly ToolSchema[]): ToolsDelta {
|
|
const prevByName = new Map(prev.map(tool => [tool.name, tool]))
|
|
const nextNames = new Set(next.map(tool => tool.name))
|
|
return {
|
|
added: next.filter(tool => !prevByName.has(tool.name)),
|
|
removed: prev.filter(tool => !nextNames.has(tool.name)).map(tool => tool.name),
|
|
changed: next.filter((tool) => {
|
|
const before = prevByName.get(tool.name)
|
|
return before !== undefined && !sameSchema(before, tool)
|
|
}),
|
|
}
|
|
}
|
|
|
|
/** Apply a {@link ToolsDelta} to a canonical tool list: drop removed, replace changed in place, append added. */
|
|
function applyTools(prev: readonly ToolSchema[], delta: ToolsDelta): ToolSchema[] {
|
|
const removed = new Set(delta.removed)
|
|
const changedByName = new Map(delta.changed.map(tool => [tool.name, tool]))
|
|
const kept = prev
|
|
.filter(tool => !removed.has(tool.name))
|
|
.map(tool => changedByName.get(tool.name) ?? tool)
|
|
return [...kept, ...delta.added]
|
|
}
|
|
|
|
/**
|
|
* Field-wise equality over canonical headers — the cheap comparison the
|
|
* writer's round-trip guard runs (`applyHeaderDelta(prev, delta)` must equal
|
|
* the intended header) and the loop runs to skip logging an unchanged header.
|
|
* Tools compare per-schema IN ORDER (canonical JSON), so a pure reordering is
|
|
* correctly unequal; the session prefix compares as canonical JSON (both
|
|
* sides come from the same build path, so key order matches when the values
|
|
* do).
|
|
* @param a - one canonical header.
|
|
* @param b - the other.
|
|
* @returns whether config, system, tools (in order), and the session prefix all match.
|
|
*/
|
|
export function headerEquals(a: EpochHeader, b: EpochHeader): boolean {
|
|
if (!callConfigEquals(a.config, b.config) || a.system !== b.system) return false
|
|
if (!sameMessages(a.messagePrefix, b.messagePrefix)) return false
|
|
const at = a.tools ?? []
|
|
const bt = b.tools ?? []
|
|
return at.length === bt.length && at.every((tool, i) => sameSchema(tool, bt[i] as ToolSchema))
|
|
}
|
|
|
|
/** Canonical JSON equality over session-prefix arrays; absence equals the empty array. */
|
|
function sameMessages(a: readonly Message[] | undefined, b: readonly Message[] | undefined): boolean {
|
|
return JSON.stringify(a ?? []) === JSON.stringify(b ?? [])
|
|
}
|
|
|
|
/**
|
|
* Compute the `request/header-delta` payload between two canonical headers,
|
|
* or undefined when they are equal. The caller MUST round-trip the result
|
|
* ({@link applyHeaderDelta} on `prev` deep-equals `next`) before logging it —
|
|
* the encoding cannot express every change (a pure tool reordering) — and
|
|
* fall back to a full `request/header` snapshot when the check fails.
|
|
* The session prefix is replaced whole (small advisory content, not worth
|
|
* diffing); an empty replacement array encodes the transition to "none".
|
|
* @param prev - the folded header the log currently implies.
|
|
* @param next - the header the next request will actually use.
|
|
* @returns the delta payload, or undefined when nothing changed.
|
|
*/
|
|
export function diffHeader(prev: EpochHeader, next: EpochHeader): HeaderDelta | undefined {
|
|
const delta: HeaderDelta = {}
|
|
if (prev.system !== next.system) delta.system = diffSystem(prev.system, next.system)
|
|
const prevTools = prev.tools ?? []
|
|
const nextTools = next.tools ?? []
|
|
if (JSON.stringify(prevTools) !== JSON.stringify(nextTools)) delta.tools = diffTools(prevTools, nextTools)
|
|
if (!callConfigEquals(prev.config, next.config)) delta.config = next.config
|
|
if (!sameMessages(prev.messagePrefix, next.messagePrefix)) delta.messagePrefix = next.messagePrefix ?? []
|
|
return Object.keys(delta).length > 0 ? delta : undefined
|
|
}
|
|
|
|
/**
|
|
* Apply a `request/header-delta` payload to a canonical header, producing the
|
|
* canonical header it encodes. Total for well-formed logs (the writer only
|
|
* appends round-trip-verified deltas).
|
|
* @param prev - the folded header before the delta.
|
|
* @param delta - the logged delta payload.
|
|
* @returns the canonical header after the delta.
|
|
*/
|
|
export function applyHeaderDelta(prev: EpochHeader, delta: HeaderDelta): EpochHeader {
|
|
const system = delta.system !== undefined ? applySystem(prev.system, delta.system) : prev.system
|
|
const tools = delta.tools !== undefined ? applyTools(prev.tools ?? [], delta.tools) : prev.tools
|
|
const messagePrefix = delta.messagePrefix ?? prev.messagePrefix
|
|
return canonicalHeader({
|
|
config: delta.config ?? prev.config,
|
|
...system !== undefined ? { system } : {},
|
|
...tools !== undefined ? { tools } : {},
|
|
...messagePrefix !== undefined ? { messagePrefix } : {},
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Fold the header events of a log (or any prefix of one) into the
|
|
* {@link EpochHeader} in force after the last of them: each
|
|
* `request/header` snapshot replaces the state, each `request/header-delta`
|
|
* amends it. The pure, offline form of reconstruction — external tooling and
|
|
* the dev invariant both use it; the live session tracks the same fold
|
|
* incrementally.
|
|
* @param events - session events in log order (non-header events are skipped).
|
|
* @param from - a previously folded state to continue from (the live session's
|
|
* incremental cursor); omit to fold from nothing.
|
|
* @returns the folded header, or undefined when no header event exists yet.
|
|
*/
|
|
export function foldRequestHeader(events: readonly SessionEvent[], from?: EpochHeader): EpochHeader | undefined {
|
|
let state: EpochHeader | undefined = from
|
|
for (const event of events) {
|
|
if (event.type === 'request/header') {
|
|
state = canonicalHeader(event.data.header)
|
|
} else if (event.type === 'request/header-delta') {
|
|
if (state === undefined) {
|
|
throw new Error(`request/header-delta at seq ${event.seq} before any request/header snapshot: corrupt log`)
|
|
}
|
|
state = applyHeaderDelta(state, event.data)
|
|
}
|
|
}
|
|
return state
|
|
}
|