save-context
Saves a distilled session summary before context clears and reloads it after, so sessions pick up threads instead of starting cold.
What it is
A pair of hooks around session boundaries: before a context clear, it saves a distilled summary of the working state; on the next session start, it reloads that summary. Sessions pick up open threads instead of starting cold.
Why
Sessions end mid-thread — context fills, terminals crash. A distilled summary saved before the clear and reloaded after means the next session resumes the work instead of re-establishing it.
How I use it
It rides the session-end and session-start hooks automatically. The rolling context log is also where a returning session checks what parallel instances shipped in the meantime.
Get it
The whole method is downloadable and adaptable — skills/save-context/SKILL.md inside the zip, with the hook wiring it expects.
Connected
This thread is scoped to save-context. Opening another node starts a new one.
Ask this node