feat: add context engine transcript maintenance (#51191)

Merged via squash.

Prepared head SHA: b42a3c28b4
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
This commit is contained in:
Josh Lehman
2026-03-20 16:28:27 -07:00
committed by GitHub
parent 6526074c85
commit 751d5b7849
20 changed files with 1305 additions and 107 deletions

View File

@@ -65,6 +65,15 @@ export type { ReplyPayload } from "../auto-reply/types.js";
export type { WizardPrompter } from "../wizard/prompts.js";
export type { ContextEngineFactory } from "../context-engine/registry.js";
export type { DiagnosticEventPayload } from "../infra/diagnostic-events.js";
export type {
ContextEngine,
ContextEngineInfo,
ContextEngineMaintenanceResult,
ContextEngineRuntimeContext,
TranscriptRewriteReplacement,
TranscriptRewriteRequest,
TranscriptRewriteResult,
} from "../context-engine/types.js";
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
export { registerContextEngine } from "../context-engine/registry.js";