index.ts 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  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. * comes from `BasicCompactConfig.summarizationModel`, falling back to the
  281. * agent's own model.
  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 (`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 fallback model and the session id stamped on
  299. * the call; throws when neither it nor the config names a model.
  300. * @param signal - optional abort signal, forwarded into the model call.
  301. * @returns the text-only summary blocks plus the call envelope used
  302. * (`model`, and `maxTokens` when the summarizer has a cap).
  303. */
  304. async summarize(
  305. text: string, agent: Agent, signal?: AbortSignal,
  306. ): Promise<{ summary: ContentBlock[]; model: string; maxTokens?: number }> {
  307. const assembler = new BlockAssembler()
  308. const options: GenerateOptions = {
  309. model: this.config.summarizationModel || agent.options.model || '',
  310. messages: [{
  311. role: 'user',
  312. content: [{ type: 'text', text: `Summarize this conversation history:\n\n${text}\n\nSummary:` }],
  313. }],
  314. system: SUMMARIZE_SYSTEM_PROMPT,
  315. maxTokens: this.config.maxTokens,
  316. sessionId: agent.session.id,
  317. }
  318. // exactOptionalPropertyTypes: only set `signal` when present — assigning
  319. // `undefined` to an optional `signal?: AbortSignal` is a type error.
  320. if (signal) options.signal = signal
  321. if (!options.model) {
  322. throw new Error('no model available for summarization: set BasicCompactConfig.summarizationModel or AgentOptions.model')
  323. }
  324. for await (const chunk of this.ctx.llm.stream(options)) {
  325. assembler.push(chunk)
  326. }
  327. const error = finishError(assembler.finish)
  328. if (error) throw error
  329. const summary = this._textOnly(assembler.message().content)
  330. if (!summary.some(block => block.type === 'text' && block.text.trim().length > 0)) {
  331. throw new Error('summarization produced no text summary content')
  332. }
  333. // config.maxTokens is required and validated positive, so this backend's
  334. // envelope always carries the cap; the return type's optionality exists
  335. // for overriding subclasses whose summarizer has none.
  336. return { summary, model: options.model, maxTokens: this.config.maxTokens }
  337. }
  338. // ---- Core API (implements the abstract contract) ----
  339. /**
  340. * The sole token-pressure gate: estimate the NEXT request's pressure — the
  341. * session prefix + the surface-derived history + the system prompt
  342. * ({@link estimatePressure}) — and if it exceeds the threshold
  343. * (`contextWindow * thresholdRatio`), compact
  344. * the oldest surface nodes outside the `retainTokens` budget. The auto-
  345. * compaction listener delegates here rather than pre-checking, so this is the
  346. * only place the decision lives. The prefix counts because every request
  347. * carries it in front of the history (`EpochHeader.messagePrefix`) even
  348. * though it is not derived history — omitting it would under-estimate by
  349. * exactly the prefix and let a deployment at the window edge skip
  350. * compaction, then ship an over-window request. The loop composes the
  351. * prefix BEFORE the pre-step seam and hands it through, so the gate sees
  352. * this instance's actual prefix (never a previous instance's logged one —
  353. * a resumed/forked instance whose contributor grew is gated on the grown
  354. * value from its very first step). Compaction itself can only
  355. * shrink HISTORY: a prefix that alone approaches the window is a
  356. * configuration error no compactor fixes.
  357. *
  358. * Retention is a UNIFORM tail→head walk over the whole surface — turn
  359. * boundaries play NO role. Walking node-by-node from the tail and summing
  360. * token estimates, once the retained total reaches `retainTokens` the cutoff
  361. * is rounded to a balanced tool-pairing boundary: if the cut before the
  362. * retained node is unbalanced (an unanswered tool-call sits before it — i.e.
  363. * it is mid-step), the walk continues head-ward until the cut is balanced so
  364. * the whole step is retained (never splitting a step's tool-calls from their
  365. * results); if it stopped on a free node (a node belonging to no step), that
  366. * cut is already balanced. This always rounds toward retaining MORE (retained
  367. * ≥ `retainTokens`) and is boundary-safe by construction — no separate snap
  368. * pass.
  369. *
  370. * The compacted range is always anchored at the surface HEAD (`nodes[0]`):
  371. * auto-compaction re-consolidates any prior head checkpoint into one fresh
  372. * checkpoint. Declines (`null`) when nothing is over threshold, when the whole
  373. * surface fits the retain budget, or when no balanced cutoff exists in the
  374. * compactable range (its only content is an open tail step — retry once it
  375. * closes).
  376. */
  377. override async compactIfNeeded(
  378. agent: Agent,
  379. fullSystemPrompt: string,
  380. sessionPrefix: readonly Message[],
  381. signal: AbortSignal,
  382. ): Promise<CompactionResult | null> {
  383. const session = agent.session
  384. const threshold = Math.floor(this.config.contextWindow * this.config.thresholdRatio)
  385. let result: CompactionResult | null = null
  386. for (let attempt = 0; attempt <= this.config.compactionRetries; attempt++) {
  387. const totalTokens = this.estimatePressure(session, fullSystemPrompt, sessionPrefix)
  388. if (totalTokens < threshold) return result
  389. const range = this._compactableRange(session)
  390. if (range === null) {
  391. /* v8 ignore else -- defensive for non-standard subclass mutations; the concrete replace keeps a compactable head checkpoint. */
  392. if (result === null) return null
  393. /* v8 ignore next -- paired with the ignored defensive branch above. */
  394. break
  395. }
  396. result = await this.compactRegion(session, range.start, range.end, agent, signal)
  397. }
  398. const totalTokens = this.estimatePressure(session, fullSystemPrompt, sessionPrefix)
  399. if (totalTokens < threshold) return result
  400. throw new Error(
  401. `compaction still above threshold after ${this.config.compactionRetries + 1} compaction attempts `
  402. + `(${totalTokens} estimated tokens >= threshold ${threshold})`,
  403. )
  404. }
  405. /**
  406. * Estimated token pressure of the NEXT request: the session prefix
  407. * (`EpochHeader.messagePrefix` — request-only messages the loop sends in
  408. * front of the derived history, composed before the pre-step seam and
  409. * handed to the gate), the derived history, and the system prompt.
  410. * @param session - the session whose next request is being estimated.
  411. * @param fullSystemPrompt - the assembled system prompt (counts toward pressure).
  412. * @param sessionPrefix - the instance's composed session prefix (counts toward pressure).
  413. * @returns the estimated token total the next request will carry.
  414. */
  415. estimatePressure(session: Session, fullSystemPrompt: string, sessionPrefix: readonly Message[]): number {
  416. return this.estimateTokens([...sessionPrefix, ...session.deriveMessages()], fullSystemPrompt)
  417. }
  418. override async compactRegion(
  419. session: Session,
  420. start: number,
  421. end: number,
  422. agent: Agent,
  423. signal?: AbortSignal,
  424. ): Promise<CompactionResult> {
  425. // Resolve the range by surface POSITION, not numeric seq interval. A prior
  426. // replace lands a fresh high-seq summary node AT the shadowed range's
  427. // position, so the surface order (head→tail) no longer tracks seq order —
  428. // `[newSummarySeq, olderRetainedSeq, …]` is normal. Indexing into the
  429. // ordered node list and slicing it is the only correct way to read a range;
  430. // a `node.seq >= start && node.seq <= end` interval test would mis-collect
  431. // nodes (and `start > end` would falsely reject) once that happens.
  432. const nodes = session.surface.nodes
  433. const startIdx = nodes.findIndex(n => n.seq === start)
  434. const endIdx = nodes.findIndex(n => n.seq === end)
  435. if (startIdx === -1) throw new Error(`compactRegion: start seq ${start} not found in surface`)
  436. if (endIdx === -1) throw new Error(`compactRegion: end seq ${end} not found in surface`)
  437. if (startIdx > endIdx) {
  438. throw new Error(`compactRegion: start seq ${start} (position ${startIdx}) is after end seq ${end} (position ${endIdx}) on the surface`)
  439. }
  440. // The region must never split a step's assistant-message tool-calls from
  441. // their tool/results (which would orphan one side and produce a transcript
  442. // every provider rejects). A region is safe iff BOTH its edges are balanced
  443. // cuts: the cut before `start`, and the cut after `end`. A node that belongs
  444. // to no step (pre-step user message, inter-step steering, injection context)
  445. // is a balanced (free) boundary; an `end` inside an open (unclosed) tail step
  446. // leaves the cut after it unbalanced (the open tool-call has no result yet),
  447. // so it is rejected. See dsh-session's tool-pairing balance check.
  448. const events = session.events
  449. if (!isToolPairingBalanced(nodes, events, start)) {
  450. throw new Error(`compactRegion: start seq ${start} is not a balanced boundary (would split a step's tool-call/result pair)`)
  451. }
  452. // The cut after `end` is named by `end`'s surface successor, or `null` when
  453. // `end` is the tail.
  454. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  455. const afterEnd: number | null = nodes[endIdx]!.next
  456. if (!isToolPairingBalanced(nodes, events, afterEnd)) {
  457. throw new Error(`compactRegion: end seq ${end} is not a balanced boundary (would split a step, or the step is still open)`)
  458. }
  459. if (this._isCompactionInProgress(session)) {
  460. throw new Error('compaction already in progress')
  461. }
  462. // Compaction's events (compact/* and the replacement user/message) must be
  463. // turn-enclosed: the session-log contract rejects any plugin event appended
  464. // outside an open turn. Auto-compaction satisfies this — it runs on the
  465. // `agent/pre-step` seam, after `turn/start` and before `step/start`, so
  466. // strictly inside the open turn (but outside any step). A manual call on a
  467. // fully-closed session has no turn to enclose the events, so reject rather
  468. // than emit an un-enclosed run.
  469. const openTurn = this._openTurn(session)
  470. if (openTurn === null) {
  471. throw new Error('compactRegion: no open turn — compaction events must be enclosed in a turn')
  472. }
  473. // Slice the ordered surface nodes [startIdx, endIdx] inclusive — the
  474. // shadowed range is positional, so this is the set the replace op covers.
  475. const shadowedSeqs = nodes.slice(startIdx, endIdx + 1).map(n => n.seq)
  476. // --- Acquire lock ---
  477. const startEvent = session.append('compact/start', { turn: openTurn })
  478. try {
  479. // --- Extract text and summarize ---
  480. const text = renderTranscript(session.events, shadowedSeqs)
  481. const { summary, model, maxTokens } = await this.summarize(text, agent, signal)
  482. // Estimate token count of the shadowed content for provenance.
  483. let shadowedTokenCount = 0
  484. for (const seq of shadowedSeqs) {
  485. // seq comes from a surface node — always a valid log index by construction.
  486. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  487. shadowedTokenCount += this.estimateEventTokens(session.events[seq]!)
  488. }
  489. const framedSummary = this._frameSummary(summary)
  490. const framedSummaryTokenCount = this.estimateContentTokens(framedSummary)
  491. if (framedSummaryTokenCount >= shadowedTokenCount) {
  492. throw new Error(
  493. `summary is not smaller than the shadowed content (${framedSummaryTokenCount} estimated framed tokens >= ${shadowedTokenCount})`,
  494. )
  495. }
  496. // --- Provenance record (log-only) ---
  497. const summaryEvent = session.append('compact/summary', {
  498. summary,
  499. shadowedRange: { start, end },
  500. shadowedSeqs,
  501. shadowedTokenCount,
  502. model,
  503. ...maxTokens !== undefined ? { maxTokens } : {},
  504. })
  505. // --- Surface replacement ---
  506. // The user/message directly shadows all compacted surface nodes with a
  507. // single replace op. It is the ONLY surface event in the compaction
  508. // sequence — compact/start, compact/summary, and compact/end are log-only
  509. // (surfaceOp is rejected by the compiler for non-SurfaceEventType).
  510. // The landed content is FRAMED (checkpoint preamble + tag-wrapped summary);
  511. // the compact/summary provenance event above holds the raw model output.
  512. session.append('user/message', {
  513. content: framedSummary,
  514. source: { kind: 'plugin', plugin: 'compact' },
  515. }, {
  516. surfaceOp: { op: 'replace', start, end },
  517. sourceEventSeqs: [startEvent.seq, summaryEvent.seq, ...shadowedSeqs],
  518. })
  519. // --- Release lock (log-only) ---
  520. // Appended LAST so the lock brackets the WHOLE operation: a crash between
  521. // compact/start and here leaves a detectable orphaned lock (a compact/start
  522. // with no matching compact/end) rather than a compact/end that falsely
  523. // claims compaction finished before the surface replacement landed.
  524. const endEvent = session.append('compact/end', { turn: openTurn })
  525. return {
  526. startSeq: startEvent.seq,
  527. summarySeq: summaryEvent.seq,
  528. endSeq: endEvent.seq,
  529. summary,
  530. shadowedRange: { start, end },
  531. shadowedSeqs,
  532. shadowedTokenCount,
  533. }
  534. } catch (error: unknown) {
  535. // Always release the lock — append compact/end with the error so a
  536. // wedged lock is impossible.
  537. const msg = error instanceof Error ? error.message : String(error)
  538. session.append('compact/end', { turn: openTurn, error: msg })
  539. throw error
  540. }
  541. }
  542. // ---- Internal helpers ----
  543. /**
  544. * Frame the raw summary blocks into the content that lands on the surface:
  545. * a checkpoint preamble (so a resuming model reads it as a checkpoint, not a
  546. * fresh user request) followed by the summary wrapped in
  547. * {@link SUMMARY_OPEN_TAG}/{@link SUMMARY_CLOSE_TAG}. The tags make a prior
  548. * checkpoint detectable in the transcript on the next compaction cycle, which
  549. * triggers the merge rule in the summarization prompt. The raw, unframed
  550. * `summary` is preserved separately on the `compact/summary` provenance event.
  551. */
  552. private _frameSummary(summary: readonly ContentBlock[]): ContentBlock[] {
  553. return [
  554. { type: 'text', text: `${CHECKPOINT_PREAMBLE}\n\n${SUMMARY_OPEN_TAG}` },
  555. ...summary,
  556. { type: 'text', text: SUMMARY_CLOSE_TAG },
  557. ]
  558. }
  559. /**
  560. * Whether a compaction is currently in progress for `session` — an unmatched
  561. * `compact/start` (no later `compact/end`) WITHIN the current turn.
  562. *
  563. * The scan is scoped to the current turn: walking back from the tail it stops
  564. * at the first `turn/end` (the boundary closing the prior turn). A
  565. * `compact/start` left orphaned by a crash mid-compaction lives in a turn that
  566. * persistence repair then closes with a synthetic `turn/end`; scoping here so
  567. * that a stale orphan from a PAST turn cannot wedge compaction forever (it sits
  568. * before the nearest `turn/end`, so the scan never reaches it). An in-progress
  569. * compaction's `compact/start` is always in the still-open current turn,
  570. * before any `turn/end`, so it is still detected.
  571. */
  572. private _isCompactionInProgress(session: Session): boolean {
  573. const events = session.events
  574. for (let i = events.length - 1; i >= 0; i--) {
  575. // Index bounded by i >= 0 and i < events.length — never undefined.
  576. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  577. const e = events[i]!
  578. if (e.type === 'compact/start') return true
  579. if (e.type === 'compact/end') break
  580. // A turn/end bounds the scan: anything before it belongs to a prior
  581. // (closed) turn and cannot be an in-progress compaction of THIS turn.
  582. if (e.type === 'turn/end') break
  583. }
  584. return false
  585. }
  586. /** Resolve the next head-anchored compactable surface range, or `null`. */
  587. private _compactableRange(session: Session): { start: number; end: number } | null {
  588. const nodes = session.surface.nodes
  589. if (nodes.length === 0) return null
  590. const events = session.events
  591. const retainBudget = this.config.retainTokens
  592. // Walk tail→head summing per-node token estimates. `keepFromIdx` is the
  593. // index of the OLDEST node we retain verbatim; everything strictly older
  594. // (`[0, keepFromIdx - 1]`) is the compactable range.
  595. let accumulated = 0
  596. let keepFromIdx = nodes.length // nothing retained yet
  597. for (let i = nodes.length - 1; i >= 0; i--) {
  598. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  599. const node = nodes[i]!
  600. const event = events[node.seq]
  601. /* v8 ignore next -- node.seq is a surface-node seq, always a valid log index by construction */
  602. if (event) accumulated += this.estimateEventTokens(event)
  603. keepFromIdx = i
  604. if (accumulated >= retainBudget) break
  605. }
  606. // The whole surface fits the retain budget — nothing to compact.
  607. if (keepFromIdx === 0) return null
  608. // Round the cutoff to a tool-pairing boundary: if the cut before
  609. // `nodes[keepFromIdx]` is unbalanced (an unanswered tool-call sits before
  610. // it — i.e. it is mid-step), extend the retained side head-ward until the
  611. // cut is balanced, so the compacted range ends without splitting an
  612. // assistant↔result pair. A node that belongs to no step is already a
  613. // balanced (free) boundary. Decline if no balanced cut exists at or below
  614. // `keepFromIdx` (the compactable range is only an un-splittable open tail
  615. // step — retry once it closes).
  616. while (keepFromIdx > 0) {
  617. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  618. if (isToolPairingBalanced(nodes, events, nodes[keepFromIdx]!.seq)) break
  619. keepFromIdx -= 1
  620. }
  621. if (keepFromIdx === 0) return null
  622. // The compacted range is [head … keepFromIdx - 1], anchored at the head.
  623. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  624. const firstSeq = nodes[0]!.seq
  625. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  626. const cutoffSeq = nodes[keepFromIdx - 1]!.seq
  627. return { start: firstSeq, end: cutoffSeq }
  628. }
  629. /**
  630. * Keep ONLY text blocks from the model-produced summary before storing it.
  631. *
  632. * The summary lands on the surface as a synthesized `user/message` (see
  633. * {@link _frameSummary}), so the only block type that is both useful and safe
  634. * there is `text`. A model assistant message can otherwise carry `reasoning`
  635. * (private chain-of-thought, must not leak into the durable checkpoint) and
  636. * `tool-call` blocks — and a surviving `tool-call` in a user message would be
  637. * an orphaned call with no matching `tool-result`, exactly the tool-pairing
  638. * breakage compaction works to avoid. Filtering to text drops both.
  639. */
  640. private _textOnly(blocks: readonly ContentBlock[]): ContentBlock[] {
  641. return blocks.filter((block): block is Extract<ContentBlock, { type: 'text' }> => block.type === 'text')
  642. }
  643. /**
  644. * The turn number of the currently OPEN turn — a `turn/start` not yet
  645. * followed by its `turn/end` — or `null` if the session has no open turn.
  646. *
  647. * Compaction's events must be enclosed in a turn, so scanning back from the
  648. * tail: a `turn/start` means that turn is open (return it); a `turn/end` means
  649. * the most recent turn already closed (return null). The whole compaction
  650. * sequence (compact/start … compact/end) is stamped with this turn.
  651. */
  652. private _openTurn(session: Session): number | null {
  653. for (let i = session.events.length - 1; i >= 0; i--) {
  654. // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  655. const e = session.events[i]!
  656. if (e.type === 'turn/start') return e.data.turn
  657. if (e.type === 'turn/end') return null
  658. }
  659. return null
  660. }
  661. }
  662. export default BasicCompactService