Agent Client Protocol - v1.4.0
    Preparing search index...

    Type Alias CompactionSummaryChunkExperimental

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    A content block appended to the retained summary of an in-progress compaction. Agents send chunks only after an in_progress update and before the terminal update for the same ID. Agents MUST only send this update when the Client advertised [ClientSessionCapabilities::compaction].

    type CompactionSummaryChunk = {
        compactionId: CompactionId;
        content: ContentBlock;
        _meta?: { [key: string]: unknown } | null;
    }
    Index
    compactionId: CompactionId

    ID of the compaction whose summary receives this content.

    content: ContentBlock

    One content block to append.

    _meta?: { [key: string]: unknown } | null

    Metadata scoped to this chunk. Omission and null both mean absent.