feat(core): add durable compaction barrier (#35371)

This commit is contained in:
Kit Langton
2026-07-06 21:26:05 -04:00
committed by GitHub
parent a605abbc27
commit 2d4012fe7f
39 changed files with 1488 additions and 398 deletions
+1
View File
@@ -210,6 +210,7 @@ export const Assistant = Schema.Struct({
export interface Compaction extends Schema.Schema.Type<typeof Compaction> {}
export const Compaction = Schema.Struct({
type: Schema.Literal("compaction"),
status: Schema.Literals(["queued", "running", "completed", "failed"]),
reason: Schema.Literals(["auto", "manual"]),
summary: Schema.String,
recent: Schema.String,