index.ts 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. /**
  2. * `BasicCompactService`: the first implementation of the
  3. * `@deepseek-ai/dsh-compact` seam. It owns the entire compaction strategy:
  4. *
  5. * - **Token estimation** — chars/`charsPerToken` heuristic (config, default 4)
  6. * with per-block structural overhead.
  7. * - **Retention policy** — walk surface nodes tail→head, keep recent nodes up
  8. * to a token budget, compact everything older. The cutoff is snapped forward
  9. * to the next balanced tool-pairing boundary so a compacted region never
  10. * splits a step's tool-call/result pair (an open tail step is never crossed —
  11. * compaction declines and retries once it closes).
  12. * - **Summarization** — a direct one-shot `ctx.llm.stream()` call assembled
  13. * via `BlockAssembler` with a fixed condense-the-history system prompt;
  14. * NOT a loop step, so `agent/request` never fires — interception happens
  15. * at `llm/stream` like any other direct call.
  16. * - **Surface mutation** — a single `user/message` replace node carries the
  17. * summary; `compact/*` events are log-only lock + provenance records.
  18. * - **Auto-compaction** — an `agent/pre-step` listener delegates to
  19. * {@link BasicCompactService.compactIfNeeded} before EVERY step (so a
  20. * tool-heavy turn that grows the surface mid-turn still compacts); it owns the
  21. * sole token-pressure check.
  22. *
  23. * A different backend (real tokenizer, template summarizer, turn-count
  24. * retention) either subclasses this and overrides the {@link
  25. * BasicCompactService.estimateContentTokens} / {@link
  26. * BasicCompactService.summarize} hooks, or implements the abstract
  27. * {@link CompactService} from scratch.
  28. *
  29. * @module @deepseek-ai/dsh-compact-basic
  30. */
  31. import { Context } from 'cordis'
  32. import { CompactService, renderTranscript } from '@deepseek-ai/dsh-compact'
  33. import type { CompactionResult } from '@deepseek-ai/dsh-compact'
  34. import { BlockAssembler } from '@deepseek-ai/dsh-llm'
  35. import type { ContentBlock, FinishReason, GenerateOptions, Message } from '@deepseek-ai/dsh-llm'
  36. import type { Session, SessionEvent } from '@deepseek-ai/dsh-session'
  37. import { isToolPairingBalanced } from '@deepseek-ai/dsh-session'
  38. import type { Agent } from '@deepseek-ai/dsh-agent'
  39. import type { BasicCompactConfig, ResolvedConfig } from './types.ts'
  40. import { resolveConfig } from './types.ts'
  41. export type { BasicCompactConfig, ResolvedConfig } from './types.ts'
  42. export { resolveConfig } from './types.ts'
  43. /** Per-block structural overhead for JSON framing / type tag. */
  44. const BLOCK_OVERHEAD = 4
  45. /** Role-field framing overhead added per message in {@link BasicCompactService.estimateTokens}. */
  46. const ROLE_OVERHEAD = 4
  47. /** Tags wrapping the structured summary inside the landed checkpoint node. */
  48. const SUMMARY_OPEN_TAG = '<compacted-summary>'
  49. const SUMMARY_CLOSE_TAG = '</compacted-summary>'
  50. /**
  51. * The summarization system prompt: instructs the model to condense the
  52. * conversation into a fixed, fully-populated structure rather than freeform
  53. * bullets. The fixed structure guarantees coverage of the things a resuming
  54. * model needs (original intent, pending work, the next step, critical context)
  55. * and is stable across compaction cycles, so a prior checkpoint can be merged
  56. * in place. The final rule keys off {@link SUMMARY_OPEN_TAG}: when the
  57. * transcript already contains a prior checkpoint, the model consolidates rather
  58. * than re-summarizing it verbatim (a cheap incremental-merge that needs no
  59. * extra log/event machinery — the tag travels on the summary surface node).
  60. */
  61. const SUMMARIZE_SYSTEM_PROMPT = [
  62. 'You are a compaction engine for an AI coding assistant. Condense the conversation transcript into a structured checkpoint that lets another model resume the work with no loss of essential context.',
  63. '',
  64. 'Output EXACTLY the Markdown structure below: keep every section, in order. Use terse bullets, not prose paragraphs. Write "(none)" for an empty section — never drop a section.',
  65. '',
  66. '## Primary Request and Intent',
  67. "- [the user's original and evolving goals; quote verbatim where the exact wording matters]",
  68. '',
  69. '## Key Technical Concepts',
  70. '- [technologies, frameworks, patterns, and conventions in play]',
  71. '',
  72. '## Files and Code',
  73. '- [exact path: why it matters, key changes or snippets]',
  74. '',
  75. '## Errors and Fixes',
  76. '- [error: how it was resolved, plus any related user feedback]',
  77. '',
  78. '## Pending Tasks',
  79. '- [explicitly requested work not yet completed]',
  80. '',
  81. '## Current Work',
  82. '- [precisely what was in progress at this checkpoint]',
  83. '',
  84. '## Next Step',
  85. '- [the single next action, directly in line with the most recent request, or "(none)"]',
  86. '',
  87. '## Critical Context',
  88. '- [decisions and their rationale, constraints, user preferences, open questions, data needed to continue]',
  89. '',
  90. 'Rules:',
  91. '- Preserve exact file paths, commands, error strings, identifiers, and function signatures.',
  92. '- Capture user feedback and explicit instructions faithfully, especially corrections.',
  93. '- Do NOT mention this summarization process or that the context was compacted.',
  94. `- If the transcript already contains a ${SUMMARY_OPEN_TAG} block, it is a PRIOR checkpoint. Do not copy it forward verbatim: preserve still-true facts, drop stale ones, and merge newer information into a single consolidated summary under the same structure.`,
  95. ].join('\n')
  96. /**
  97. * Framing prepended to the landed summary so a resuming model reads it as a
  98. * checkpoint rather than a fresh user request, and continues the task from it.
  99. * It summarizes an earlier span of the conversation; the messages that follow
  100. * are the continuation. Because region compaction can be invoked manually, a
  101. * surface may hold several checkpoints, so the framing does NOT claim that
  102. * everything after it is recent or verbatim — only that the captured context
  103. * should be built on, not restated.
  104. */
  105. const CHECKPOINT_PREAMBLE =
  106. 'This is an automatically generated checkpoint condensing an earlier span of the conversation to free up context. Treat the captured context as established background and build on it without restating it. Continue the task directly from the messages that follow, without acknowledging this checkpoint.'
  107. /**
  108. * Map a terminal `FinishReason` to the error a SUMMARIZATION must throw, or
  109. * `undefined` for an acceptable finish. `FinishReason` is merge-extensible.
  110. *
  111. * Compaction fails CLOSED on a truncated summary: `error`, `aborted`, AND
  112. * `max-tokens` all raise. Unlike an ordinary agent turn — where `max-tokens` is
  113. * a normal "the model hit its budget" outcome the loop keeps — a summary cut off
  114. * at the token cap is an INCOMPLETE checkpoint, and committing it would shadow
  115. * (discard) the real history it summarizes. Raising here keeps the original
  116. * surface intact (the caller appends `compact/end` with the error and the auto
  117. * path proceeds with full history). `stop`/future kinds are accepted.
  118. */
  119. function finishError(finish: FinishReason): Error | undefined {
  120. switch (finish.kind) {
  121. case 'error': {
  122. const error = new Error(finish.message) as Error & { code?: string }
  123. if (finish.code !== undefined) error.code = finish.code
  124. return error
  125. }
  126. case 'aborted': {
  127. const error = new Error('summarization stream aborted') as Error & { code?: string }
  128. error.code = 'ABORTED'
  129. return error
  130. }
  131. case 'max-tokens': {
  132. const error = new Error('summarization truncated at the token cap (incomplete checkpoint)') as Error & { code?: string }
  133. error.code = 'MAX_TOKENS'
  134. return error
  135. }
  136. default:
  137. return undefined
  138. }
  139. }
  140. /**
  141. * Basic, dependency-light compaction backend: estimates the surface's token
  142. * footprint, summarizes the stale prefix through the model, and shadows it
  143. * behind a durable checkpoint. Every threshold/budget knob is required config
  144. * ({@link BasicCompactConfig}); the estimator's text density is the
  145. * `charsPerToken` knob.
  146. */
  147. export class BasicCompactService extends CompactService {
  148. static inject = ['llm']
  149. /** Resolved configuration (`auto` defaulted). */
  150. readonly config: ResolvedConfig
  151. constructor(ctx: Context, config: BasicCompactConfig) {
  152. super(ctx)
  153. this.config = resolveConfig(config)
  154. if (this.config.auto) {
  155. // Auto-compaction: delegate to compactIfNeeded before EVERY step. This is
  156. // LOAD-BEARING for runaway-turn survival: a tool-heavy ReAct turn appends
  157. // an assistant/message and a tool/result per step, so the surface (and the
  158. // derived token count) grows WITHIN a turn. The only moment to rescue a
  159. // turn that alone approaches the window is the next step's pre-step
  160. // checkpoint; gating to a turn's first step would let a runaway turn
  161. // overflow before the next turn's check. The listener owns NO threshold
  162. // logic — compactIfNeeded is the single place that decides whether to
  163. // compact, and its in-progress lock serializes concurrent attempts.
  164. //
  165. // It runs on `agent/pre-step` (a serial surface-mutation checkpoint fired
  166. // AFTER turn/start but BEFORE step/start), NOT `agent/request`: compaction
  167. // mutates the session surface, and the loop derives the request `messages`
  168. // AFTER this fires — so a single derive already reflects the compaction,
  169. // with no double-derive and no need to rewrite an already-assembled
  170. // `messages` array. Firing pre-step (outside any open step) keeps the
  171. // log-only `compact/*` records and the replacement node cleanly outside a
  172. // step, so a crash mid-compaction leaves an inert orphan the turn-repair
  173. // closes — never a half-open step.
  174. ctx.on('agent/pre-step', async (agent: Agent, _turn: number, _step: number, fullSystemPrompt: string, sessionPrefix: readonly Message[], signal: AbortSignal) => {
  175. try {
  176. const result = await this.compactIfNeeded(agent, fullSystemPrompt, sessionPrefix, signal)
  177. if (result) {
  178. const after = this.estimatePressure(agent.session, fullSystemPrompt, sessionPrefix)
  179. ctx.logger.info(
  180. `compaction: shadowed ${result.shadowedSeqs.length} surface nodes ` +
  181. `(seqs ${result.shadowedRange.start}-${result.shadowedRange.end}, ` +
  182. `~${result.shadowedTokenCount} tokens) ` +
  183. `→ ${after} estimated tokens after compaction`,
  184. )
  185. }
  186. } catch (error: unknown) {
  187. // A failed compaction must not prevent the model call — the surface is
  188. // untouched on failure, so the loop derives the full history and the
  189. // call proceeds.
  190. const msg = error instanceof Error ? error.message : String(error)
  191. ctx.logger.warn(`compaction failed: ${msg}; proceeding with full history`)
  192. }
  193. })
  194. }
  195. }
  196. // ---- Token estimation (overridable hooks) ----
  197. // TODO: chars/charsPerToken is a coarse heuristic. Replace with an exact
  198. // count — a real tokenizer, or the provider's post-response `usage` (input
  199. // tokens) fed back as a correction — so threshold decisions match the
  200. // model's actual budget.
  201. /**
  202. * Estimate the token count of content blocks — chars divided by the
  203. * `charsPerToken` config, with per-block overhead. Override in a subclass to
  204. * plug in a real tokenizer.
  205. *
  206. * @param blocks - the blocks to estimate; `tool-result` blocks recurse into
  207. * their nested content, and unknown (merge-extended) types fall back to
  208. * their JSON-stringified length.
  209. * @returns the estimated token count.
  210. */
  211. estimateContentTokens(blocks: readonly ContentBlock[]): number {
  212. const { charsPerToken } = this.config
  213. let tokens = 0
  214. for (const block of blocks) {
  215. switch (block.type) {
  216. case 'text':
  217. case 'reasoning':
  218. tokens += Math.ceil(block.text.length / charsPerToken) + BLOCK_OVERHEAD
  219. break
  220. case 'tool-call':
  221. tokens += Math.ceil(block.name.length / charsPerToken)
  222. + Math.ceil(block.arguments.length / charsPerToken)
  223. + BLOCK_OVERHEAD
  224. break
  225. case 'tool-result':
  226. tokens += this.estimateContentTokens(block.content) + BLOCK_OVERHEAD
  227. break
  228. default:
  229. // Unknown block types (merge-extensible ContentBlockMap):
  230. // estimate conservatively via JSON stringify.
  231. tokens += BLOCK_OVERHEAD + Math.ceil(JSON.stringify(block).length / charsPerToken)
  232. }
  233. }
  234. return tokens
  235. }
  236. /**
  237. * Estimate token count for a single session event. Returns 0 for non-message
  238. * event types (boundaries, chunks, usage, errors, compact markers).
  239. *
  240. * @param event - any session event; only the message-bearing types carry
  241. * content to count.
  242. * @returns the estimated token count of the event's content, or 0 for a
  243. * non-message event.
  244. */
  245. estimateEventTokens(event: SessionEvent): number {
  246. switch (event.type) {
  247. case 'user/message':
  248. case 'assistant/message':
  249. case 'context/message':
  250. case 'steering/message':
  251. case 'tool/result':
  252. return this.estimateContentTokens(event.data.content)
  253. default:
  254. return 0
  255. }
  256. }
  257. /**
  258. * Estimate total tokens across a list of messages plus optional system prompt.
  259. *
  260. * @param messages - the derived conversation messages; each adds a fixed
  261. * role-framing overhead on top of its content estimate.
  262. * @param systemPrompt - counted at chars / `charsPerToken` when provided.
  263. * @returns the estimated token footprint of the whole request.
  264. */
  265. estimateTokens(messages: readonly Message[], systemPrompt?: string): number {
  266. let total = 0
  267. for (const msg of messages) {
  268. total += this.estimateContentTokens(msg.content)
  269. total += ROLE_OVERHEAD
  270. }
  271. if (systemPrompt) total += Math.ceil(systemPrompt.length / this.config.charsPerToken)
  272. return total
  273. }
  274. /**
  275. * Summarize conversation text into content blocks via `ctx.llm.stream()`
  276. * assembled through a `BlockAssembler`. A direct one-shot model call, NOT a
  277. * loop step: it does not run the `agent/request` waterfall (that seam shapes
  278. * the loop's conversation requests); per-call
  279. * interception happens at `llm/stream` like any other direct call. The model
  280. * target comes from the explicit summarization provider/model pair, falling
  281. * back to the last logged request target and then the agent's creation options.
  282. * Override in a subclass for a template or remote summarizer.
  283. *
  284. * Honors the adapter failure contract: an adapter may report a model failure
  285. * by throwing from `stream()` (propagated here) OR by ending the stream with
  286. * a `finish {kind:'error'|'aborted'}` chunk — the latter is re-thrown so a
  287. * provider error never yields an empty summary.
  288. *
  289. * Forwards `signal` into `GenerateOptions.signal` so an abort/dispose tears
  290. * down the in-flight summarization rather than orphaning the model call.
  291. *
  292. * Returns the summary blocks TOGETHER with the call envelope it actually
  293. * used (`provider`, `model`, `maxTokens`) — the caller logs the envelope on the
  294. * `compact/summary` provenance event, so an overriding subclass (template
  295. * or remote summarizer) reports its own envelope honestly.
  296. *
  297. * @param text - plain-text rendering of the conversation region to condense.
  298. * @param agent - supplies the request-header/creation fallback target and the
  299. * session id stamped on the call; throws when no complete target exists.
  300. * @param signal - optional abort signal, forwarded into the model call.
  301. * @returns the text-only summary blocks plus the call envelope used
  302. * (`provider`, `model`, and `maxTokens` when the summarizer has a cap).
  303. */
  304. async summarize(
  305. text: string, agent: Agent, signal?: AbortSignal,
  306. ): Promise<{ summary: ContentBlock[]; provider: string; model: string; maxTokens?: number }> {
  307. const assembler = new BlockAssembler()
  308. const logged = agent.session.requestHeader()?.config
  309. const provider = this.config.summarizationProvider || logged?.provider || agent.options.provider || ''
  310. const model = this.config.summarizationModel || logged?.model || agent.options.model || ''
  311. const options: GenerateOptions = {
  312. provider,
  313. model,
  314. messages: [{
  315. role: 'user',
  316. content: [{ type: 'text', text: `Summarize this conversation history:\n\n${text}\n\nSummary:` }],
  317. }],
  318. system: SUMMARIZE_SYSTEM_PROMPT,
  319. maxTokens: this.config.maxTokens,
  320. sessionId: agent.session.id,
  321. }
  322. // exactOptionalPropertyTypes: only set `signal` when present — assigning
  323. // `undefined` to an optional `signal?: AbortSignal` is a type error.
  324. if (signal) options.signal = signal
  325. if (!options.provider || !options.model) {
  326. throw new Error('no provider/model available for summarization: set both summarization fields or provide a logged/agent target')
  327. }
  328. for await (const chunk of this.ctx.llm.stream(options)) {
  329. assembler.push(chunk)
  330. }
  331. const error = finishError(assembler.finish)
  332. if (error) throw error
  333. const summary = this._textOnly(assembler.message().content)
  334. if (!summary.some(block => block.type === 'text' && block.text.trim().length > 0)) {
  335. throw new Error('summarization produced no text summary content')
  336. }
  337. // config.maxTokens is required and validated positive, so this backend's
  338. // envelope always carries the cap; the return type's optionality exists
  339. // for overriding subclasses whose summarizer has none.
  340. return { summary, provider: options.provider, model: options.model, maxTokens: this.config.maxTokens }
  341. }
  342. // ---- Core API (implements the abstract contract) ----
  343. /**
  344. * The sole token-pressure gate: estimate the NEXT request's pressure — the
  345. * session prefix + the surface-derived history + the system prompt
  346. * ({@link estimatePressure}) — and if it exceeds the threshold
  347. * (`contextWindow * thresholdRatio`), compact
  348. * the oldest surface nodes outside the `retainTokens` budget. The auto-
  349. * compaction listener delegates here rather than pre-checking, so this is the
  350. * only place the decision lives. The prefix counts because every request
  351. * carries it in front of the history (`EpochHeader.messagePrefix`) even
  352. * though it is not derived history — omitting it would under-estimate by
  353. * exactly the prefix and let a deployment at the window edge skip
  354. * compaction, then ship an over-window request. The loop composes the
  355. * prefix BEFORE the pre-step seam and hands it through, so the gate sees
  356. * this instance's actual prefix (never a previous instance's logged one —
  357. * a resumed/forked instance whose contributor grew is gated on the grown
  358. * value from its very first step). Compaction itself can only
  359. * shrink HISTORY: a prefix that alone approaches the window is a
  360. * configuration error no compactor fixes.
  361. *
  362. * Retention is a UNIFORM tail→head walk over the whole surface — turn
  363. * boundaries play NO role. Walking node-by-node from the tail and summing
  364. * token estimates, once the retained total reaches `retainTokens` the cutoff
  365. * is rounded to a balanced tool-pairing boundary: if the cut before the
  366. * retained node is unbalanced (an unanswered tool-call sits before it — i.e.
  367. * it is mid-step), the walk continues head-ward until the cut is balanced so
  368. * the whole step is retained (never splitting a step's tool-calls from their
  369. * results); if it stopped on a free node (a node belonging to no step), that
  370. * cut is already balanced. This always rounds toward retaining MORE (retained
  371. * ≥ `retainTokens`) and is boundary-safe by construction — no separate snap
  372. * pass.
  373. *
  374. * The compacted range is always anchored at the surface HEAD (`nodes[0]`):
  375. * auto-compaction re-consolidates any prior head checkpoint into one fresh
  376. * checkpoint. Declines (`null`) when nothing is over threshold, when the whole
  377. * surface fits the retain budget, or when no balanced cutoff exists in the
  378. * compactable range (its only content is an open tail step — retry once it
  379. * closes).
  380. */
  381. override async compactIfNeeded(
  382. agent: Agent,
  383. fullSystemPrompt: string,
  384. sessionPrefix: readonly Message[],
  385. signal: AbortSignal,
  386. ): Promise<CompactionResult | null> {
  387. const session = agent.session
  388. const threshold = Math.floor(this.config.contextWindow * this.config.thresholdRatio)
  389. let result: CompactionResult | null = null
  390. for (let attempt = 0; attempt <= this.config.compactionRetries; attempt++) {
  391. const totalTokens = this.estimatePressure(session, fullSystemPrompt, sessionPrefix)
  392. if (totalTokens < threshold) return result
  393. const range = this._compactableRange(session)
  394. if (range === null) {
  395. /* v8 ignore else -- defensive for non-standard subclass mutations; the concrete replace keeps a compactable head checkpoint. */
  396. if (result === null) return null
  397. /* v8 ignore next -- paired with the ignored defensive branch above. */
  398. break
  399. }
  400. result = await this.compactRegion(session, range.start, range.end, agent, signal)
  401. }
  402. const totalTokens = this.estimatePressure(session, fullSystemPrompt, sessionPrefix)
  403. if (totalTokens < threshold) return result
  404. throw new Error(
  405. `compaction still above threshold after ${this.config.compactionRetries + 1} compaction attempts `
  406. + `(${totalTokens} estimated tokens >= threshold ${threshold})`,
  407. )
  408. }
  409. /**
  410. * Estimated token pressure of the NEXT request: the session prefix
  411. * (`EpochHeader.messagePrefix` — request-only messages the loop sends in
  412. * front of the derived history, composed before the pre-step seam and
  413. * handed to the gate), the derived history, and the system prompt.
  414. * @param session - the session whose next request is being estimated.
  415. * @param fullSystemPrompt - the assembled system prompt (counts toward pressure).
  416. * @param sessionPrefix - the instance's composed session prefix (counts toward pressure).
  417. * @returns the estimated token total the next request will carry.
  418. */
  419. estimatePressure(session: Session, fullSystemPrompt: string, sessionPrefix: readonly Message[]): number {
  420. return this.estimateTokens([...sessionPrefix, ...session.deriveMessages()], fullSystemPrompt)
  421. }
  422. override async compactRegion(
  423. session: Session,
  424. start: number,
  425. end: number,
  426. agent: Agent,
  427. signal?: AbortSignal,
  428. ): Promise<CompactionResult> {
  429. // Resolve the range by surface POSITION, not numeric seq interval. A prior
  430. // replace lands a fresh high-seq summary node AT the shadowed range's
  431. // position, so the surface order (head→tail) no longer tracks seq order —
  432. // `[newSummarySeq, olderRetainedSeq, …]` is normal. Indexing into the
  433. // ordered node list and slicing it is the only correct way to read a range;
  434. // a `node.seq >= start && node.seq <= end` interval test would mis-collect
  435. // nodes (and `start > end` would falsely reject) once that happens.
  436. const nodes = session.surface.nodes
  437. const startIdx = nodes.findIndex(n => n.seq === start)
  438. const endIdx = nodes.findIndex(n => n.seq === end)
  439. if (startIdx === -1) throw new Error(`compactRegion: start seq ${start} not found in surface`)
  440. if (endIdx === -1) throw new Error(`compactRegion: end seq ${end} not found in surface`)
  441. if (startIdx > endIdx) {
  442. throw new Error(`compactRegion: start seq ${start} (position ${startIdx}) is after end seq ${end} (position ${endIdx}) on the surface`)
  443. }
  444. // The region must never split a step's assistant-message tool-calls from
  445. // their tool/results (which would orphan one side and produce a transcript
  446. // every provider rejects). A region is safe iff BOTH its edges are balanced
  447. // cuts: the cut before `start`, and the cut after `end`. A node that belongs
  448. // to no step (pre-step user message, inter-step steering, injection context)
  449. // is a balanced (free) boundary; an `end` inside an open (unclosed) tail step
  450. // leaves the cut after it unbalanced (the open tool-call has no result yet),
  451. // so it is rejected. See dsh-session's tool-pairing balance check.
  452. const events = session.events
  453. if (!isToolPairingBalanced(nodes, events, start)) {
  454. throw new Error(`compactRegion: start seq ${start} is not a balanced boundary (would split a step's tool-call/result pair)`)
  455. }
  456. // The cut after `end` is named by `end`'s surface successor, or `null` when
  457. // `end` is the tail.
  458. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  459. const afterEnd: number | null = nodes[endIdx]!.next
  460. if (!isToolPairingBalanced(nodes, events, afterEnd)) {
  461. throw new Error(`compactRegion: end seq ${end} is not a balanced boundary (would split a step, or the step is still open)`)
  462. }
  463. if (this._isCompactionInProgress(session)) {
  464. throw new Error('compaction already in progress')
  465. }
  466. // Compaction's events (compact/* and the replacement user/message) must be
  467. // turn-enclosed: the session-log contract rejects any plugin event appended
  468. // outside an open turn. Auto-compaction satisfies this — it runs on the
  469. // `agent/pre-step` seam, after `turn/start` and before `step/start`, so
  470. // strictly inside the open turn (but outside any step). A manual call on a
  471. // fully-closed session has no turn to enclose the events, so reject rather
  472. // than emit an un-enclosed run.
  473. const openTurn = this._openTurn(session)
  474. if (openTurn === null) {
  475. throw new Error('compactRegion: no open turn — compaction events must be enclosed in a turn')
  476. }
  477. // Slice the ordered surface nodes [startIdx, endIdx] inclusive — the
  478. // shadowed range is positional, so this is the set the replace op covers.
  479. const shadowedSeqs = nodes.slice(startIdx, endIdx + 1).map(n => n.seq)
  480. // --- Acquire lock ---
  481. const startEvent = session.append('compact/start', { turn: openTurn })
  482. try {
  483. // --- Extract text and summarize ---
  484. const text = renderTranscript(session.events, shadowedSeqs)
  485. const { summary, provider, model, maxTokens } = await this.summarize(text, agent, signal)
  486. // Estimate token count of the shadowed content for provenance.
  487. let shadowedTokenCount = 0
  488. for (const seq of shadowedSeqs) {
  489. // seq comes from a surface node — always a valid log index by construction.
  490. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  491. shadowedTokenCount += this.estimateEventTokens(session.events[seq]!)
  492. }
  493. const framedSummary = this._frameSummary(summary)
  494. const framedSummaryTokenCount = this.estimateContentTokens(framedSummary)
  495. if (framedSummaryTokenCount >= shadowedTokenCount) {
  496. throw new Error(
  497. `summary is not smaller than the shadowed content (${framedSummaryTokenCount} estimated framed tokens >= ${shadowedTokenCount})`,
  498. )
  499. }
  500. // --- Provenance record (log-only) ---
  501. const summaryEvent = session.append('compact/summary', {
  502. summary,
  503. shadowedRange: { start, end },
  504. shadowedSeqs,
  505. shadowedTokenCount,
  506. provider,
  507. model,
  508. ...maxTokens !== undefined ? { maxTokens } : {},
  509. })
  510. // --- Surface replacement ---
  511. // The user/message directly shadows all compacted surface nodes with a
  512. // single replace op. It is the ONLY surface event in the compaction
  513. // sequence — compact/start, compact/summary, and compact/end are log-only
  514. // (surfaceOp is rejected by the compiler for non-SurfaceEventType).
  515. // The landed content is FRAMED (checkpoint preamble + tag-wrapped summary);
  516. // the compact/summary provenance event above holds the raw model output.
  517. session.append('user/message', {
  518. content: framedSummary,
  519. source: { kind: 'plugin', plugin: 'compact' },
  520. }, {
  521. surfaceOp: { op: 'replace', start, end },
  522. sourceEventSeqs: [startEvent.seq, summaryEvent.seq, ...shadowedSeqs],
  523. })
  524. // --- Release lock (log-only) ---
  525. // Appended LAST so the lock brackets the WHOLE operation: a crash between
  526. // compact/start and here leaves a detectable orphaned lock (a compact/start
  527. // with no matching compact/end) rather than a compact/end that falsely
  528. // claims compaction finished before the surface replacement landed.
  529. const endEvent = session.append('compact/end', { turn: openTurn })
  530. return {
  531. startSeq: startEvent.seq,
  532. summarySeq: summaryEvent.seq,
  533. endSeq: endEvent.seq,
  534. summary,
  535. shadowedRange: { start, end },
  536. shadowedSeqs,
  537. shadowedTokenCount,
  538. }
  539. } catch (error: unknown) {
  540. // Always release the lock — append compact/end with the error so a
  541. // wedged lock is impossible.
  542. const msg = error instanceof Error ? error.message : String(error)
  543. session.append('compact/end', { turn: openTurn, error: msg })
  544. throw error
  545. }
  546. }
  547. // ---- Internal helpers ----
  548. /**
  549. * Frame the raw summary blocks into the content that lands on the surface:
  550. * a checkpoint preamble (so a resuming model reads it as a checkpoint, not a
  551. * fresh user request) followed by the summary wrapped in
  552. * {@link SUMMARY_OPEN_TAG}/{@link SUMMARY_CLOSE_TAG}. The tags make a prior
  553. * checkpoint detectable in the transcript on the next compaction cycle, which
  554. * triggers the merge rule in the summarization prompt. The raw, unframed
  555. * `summary` is preserved separately on the `compact/summary` provenance event.
  556. */
  557. private _frameSummary(summary: readonly ContentBlock[]): ContentBlock[] {
  558. return [
  559. { type: 'text', text: `${CHECKPOINT_PREAMBLE}\n\n${SUMMARY_OPEN_TAG}` },
  560. ...summary,
  561. { type: 'text', text: SUMMARY_CLOSE_TAG },
  562. ]
  563. }
  564. /**
  565. * Whether a compaction is currently in progress for `session` — an unmatched
  566. * `compact/start` (no later `compact/end`) WITHIN the current turn.
  567. *
  568. * The scan is scoped to the current turn: walking back from the tail it stops
  569. * at the first `turn/end` (the boundary closing the prior turn). A
  570. * `compact/start` left orphaned by a crash mid-compaction lives in a turn that
  571. * persistence repair then closes with a synthetic `turn/end`; scoping here so
  572. * that a stale orphan from a PAST turn cannot wedge compaction forever (it sits
  573. * before the nearest `turn/end`, so the scan never reaches it). An in-progress
  574. * compaction's `compact/start` is always in the still-open current turn,
  575. * before any `turn/end`, so it is still detected.
  576. */
  577. private _isCompactionInProgress(session: Session): boolean {
  578. const events = session.events
  579. for (let i = events.length - 1; i >= 0; i--) {
  580. // Index bounded by i >= 0 and i < events.length — never undefined.
  581. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  582. const e = events[i]!
  583. if (e.type === 'compact/start') return true
  584. if (e.type === 'compact/end') break
  585. // A turn/end bounds the scan: anything before it belongs to a prior
  586. // (closed) turn and cannot be an in-progress compaction of THIS turn.
  587. if (e.type === 'turn/end') break
  588. }
  589. return false
  590. }
  591. /** Resolve the next head-anchored compactable surface range, or `null`. */
  592. private _compactableRange(session: Session): { start: number; end: number } | null {
  593. const nodes = session.surface.nodes
  594. if (nodes.length === 0) return null
  595. const events = session.events
  596. const retainBudget = this.config.retainTokens
  597. // Walk tail→head summing per-node token estimates. `keepFromIdx` is the
  598. // index of the OLDEST node we retain verbatim; everything strictly older
  599. // (`[0, keepFromIdx - 1]`) is the compactable range.
  600. let accumulated = 0
  601. let keepFromIdx = nodes.length // nothing retained yet
  602. for (let i = nodes.length - 1; i >= 0; i--) {
  603. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  604. const node = nodes[i]!
  605. const event = events[node.seq]
  606. /* v8 ignore next -- node.seq is a surface-node seq, always a valid log index by construction */
  607. if (event) accumulated += this.estimateEventTokens(event)
  608. keepFromIdx = i
  609. if (accumulated >= retainBudget) break
  610. }
  611. // The whole surface fits the retain budget — nothing to compact.
  612. if (keepFromIdx === 0) return null
  613. // Round the cutoff to a tool-pairing boundary: if the cut before
  614. // `nodes[keepFromIdx]` is unbalanced (an unanswered tool-call sits before
  615. // it — i.e. it is mid-step), extend the retained side head-ward until the
  616. // cut is balanced, so the compacted range ends without splitting an
  617. // assistant↔result pair. A node that belongs to no step is already a
  618. // balanced (free) boundary. Decline if no balanced cut exists at or below
  619. // `keepFromIdx` (the compactable range is only an un-splittable open tail
  620. // step — retry once it closes).
  621. while (keepFromIdx > 0) {
  622. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  623. if (isToolPairingBalanced(nodes, events, nodes[keepFromIdx]!.seq)) break
  624. keepFromIdx -= 1
  625. }
  626. if (keepFromIdx === 0) return null
  627. // The compacted range is [head … keepFromIdx - 1], anchored at the head.
  628. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  629. const firstSeq = nodes[0]!.seq
  630. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  631. const cutoffSeq = nodes[keepFromIdx - 1]!.seq
  632. return { start: firstSeq, end: cutoffSeq }
  633. }
  634. /**
  635. * Keep ONLY text blocks from the model-produced summary before storing it.
  636. *
  637. * The summary lands on the surface as a synthesized `user/message` (see
  638. * {@link _frameSummary}), so the only block type that is both useful and safe
  639. * there is `text`. A model assistant message can otherwise carry `reasoning`
  640. * (private chain-of-thought, must not leak into the durable checkpoint) and
  641. * `tool-call` blocks — and a surviving `tool-call` in a user message would be
  642. * an orphaned call with no matching `tool-result`, exactly the tool-pairing
  643. * breakage compaction works to avoid. Filtering to text drops both.
  644. */
  645. private _textOnly(blocks: readonly ContentBlock[]): ContentBlock[] {
  646. return blocks.filter((block): block is Extract<ContentBlock, { type: 'text' }> => block.type === 'text')
  647. }
  648. /**
  649. * The turn number of the currently OPEN turn — a `turn/start` not yet
  650. * followed by its `turn/end` — or `null` if the session has no open turn.
  651. *
  652. * Compaction's events must be enclosed in a turn, so scanning back from the
  653. * tail: a `turn/start` means that turn is open (return it); a `turn/end` means
  654. * the most recent turn already closed (return null). The whole compaction
  655. * sequence (compact/start … compact/end) is stamped with this turn.
  656. */
  657. private _openTurn(session: Session): number | null {
  658. for (let i = session.events.length - 1; i >= 0; i--) {
  659. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  660. const e = session.events[i]!
  661. if (e.type === 'turn/start') return e.data.turn
  662. if (e.type === 'turn/end') return null
  663. }
  664. return null
  665. }
  666. }
  667. export default BasicCompactService