fix(code): increase warm limit to 800 (#5728)

Resumed threads now warm more recent messages before scrollback reaches
cold history.

---

The transcript still mounts 100 rows initially, then warms to 800 while
retaining opposite-edge pruning so all history remains reachable.

Made by [Open
SWE](https://openswe.vercel.app/agents/61ba3072-607c-5a9f-bc03-aa370ac641ca)

---------

Co-authored-by: open-swe[bot] <open-swe@users.noreply.github.com>
Co-authored-by: Johannes <johannes117@users.noreply.github.com>
This commit is contained in:
Johannes du Plessis
2026-08-21 11:03:16 -07:00
committed by GitHub
parent 995cad6751
commit f954cde37f
@@ -647,8 +647,8 @@ class MessageStore:
"""
INITIAL_WINDOW_SIZE: int = 100
WINDOW_SIZE: int = 400
HARD_WINDOW_SIZE: int = 500
WINDOW_SIZE: int = 800
HARD_WINDOW_SIZE: int = 900
HYDRATE_BUFFER: int = 8
PREFETCH_VIEWPORTS: int = 8