Save tokens and extend your coding sessions
Save tokens and extend your coding sessions
In agentic workflows, raw command outputs and state recollection after compaction contribute to major token waste. Agents often pull raw terminal output into context even when they only need a few anchors, then pay the same cost again later when compaction forces them to reread files or rerun commands.
CtxSift was built to cut that loop down to two operations: keep only the signal that matters now, then recover it later without rebuilding the whole state trail.
It was inspired by the original Distill project and extends that direction toward local execution, file rereads, and read-after-compression state recovery for coding agents.
How it works
With CtxSift, your agents use two steps to keep minimal token footprint:
1. Extract and cache only what they need from raw outputs
2. Look up context later instead of repeatedly re-running commands or dragging raw terminal output back into the session.
That's it. Unlike other token savers, which can get heavy can confuse the agent with multiple tools, CtxSift keeps it simple and light. No multiple tools, MCP servers or sandbox spin-up dependencies.
