Skip to content

agent-session-kit 0.4.2

Choose a tag to compare

@github-actions github-actions released this 20 Aug 06:04
· 59 commits to main since this release
fd07393

Full-text session indexing now rebuilds large derived indexes with a bounded
working set while preserving the complete existing search surface.

Fixed

  • Full-text session rebuilds now have a bounded working set. Schema v5
    still indexes every eligible session and the same title, user, assistant,
    system, tool, and file-operation excerpts, but commits them in transactions
    capped at 4 MiB or 128 sessions instead of one FTS5 segment per session.
    Each batch releases SQLite caches and applies malloc-zone pressure relief,
    preventing a large first-run rebuild from retaining a multi-gigabyte heap.
    SQLite temporary storage is file-backed and its page cache is capped at
    32 MiB; search semantics, snippets, roles, and the existing 512 KiB
    per-session body policy are unchanged.