The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Session Watcher listing page.
LLM context economics, in your terminal.
Session Watcher treats your prompt cache as inventory — it uses EOQ theory to measure whether the current context is still worth carrying, tracking restart pressure so you can decide when to hand off.
Documentation · npm · Paper · llms.txt
Quick Start · Install · How It Works · Context Buckets · Handoff · MCP Tools · Agents · Cite
Session Watcher reads your Claude Code transcript in real time and answers one question: is this session still worth carrying?
Most context tools optimize how you consume tokens — Headroom compresses, /compact shrinks, RTK filters. Session Watcher tracks when the cost curve is drifting, giving you the data to decide. They compose: run any pruning strategy you like, SW measures the cost curve so you can decide when to hand off.
SW reads from the transcript, never writes to it. The dashboard and statusline are pure observers; MCP tools return data for you to act on. Metrics stay on your screen, not in the model's context window.
The harness layer is the only part that knows Claude Code: it reads transcript rows, decides the active branch, and emits normalized observations. Everything below it — measurement, dialogue history, handoff — consumes those observations and carries no transcript format, no row shape, and no tool name of any particular agent.
Core model: L = cache_read_input_tokens — the context stock you are renting. B is the rebuild baseline: the session's overhead floor plus the tokens of every file, skill and tool it has pulled in, which is what a restart would have to re-read. g is the growth no path accounts for, a smoothed ΔtotalStock − ΔB. x = L / B places the session on the EOQ cost curve, and br = mf × pp is the bill premium — how much you are overpaying relative to ideal restart timing.
Lamp thresholds are the named constants BR_AMBER and BR_RED in lib/bill-regret.js: below the amber one the lamp is green, between them amber, at or above the red one red. See the paper for the full derivation — EOQ inventory theory mapped to LLM prompt caching.
Requires Node.js ≥ 22.16.
Opens a browser dashboard. The demo uses a pre-built anonymized session; replay uses your real transcript. Both are read-only — nothing is modified or uploaded.
Or from within a Claude Code session:
This registers:
If you installed or updated in an already-running session, run /reload-plugins to activate.
The plugin system does not yet support declaring a statusline. Add to your ~/.claude/settings.json:
Find your plugin path with:
Or check via claude plugin details session-watcher@session-watcher.
Note: the plugin cache path changes on version update. After updating, re-run the command above and update your statusline path.
One compact line:
The bucket panel shows exactly which files, skills, and tools are consuming your context budget. Each path carries a token count — check or uncheck to preview how the restart cost changes. The U-curve ghost line updates in real time as you toggle.
When it's time to restart, handoff preserves the state you want to keep. Run /sw-handoff to prepare a package — selected paths, working summary, next task. Then /clear, and in the fresh session run /sw-load to restore. Only what you chose is rebuilt — less ramp-up, less waste.
Server lifecycle
| Tool | Description |
|---|---|
start_watcher | Start (or reuse) the dashboard server; returns its URL |
stop_watcher | Stop the managed server |
watcher_status | Report whether the server is running and its URL |
rotate_session | Rotate to a new session ID |
Handoff workflow
| Tool | Description |
|---|---|
get_bucket_summary | Return current context bucket structure (files, skills, tools) with metrics |
get_turn_skeleton | Render the turns of the capture epoch, one block per turn, as the slots a note can fill |
submit_turn_notes | Return the producing session's notes through the slots the skeleton defines |
prepare_handoff | Persist selected paths + summary as a handoff package; returns a semantic token |
load_handoff | Load a handoff by token, free-text search, or auto-match for the current project |
Turn history
Read the history turns carried by the handoff loaded into the current session. All three resolve that lineage themselves and take no lineage identifier — without a loaded handoff there is nothing to read.
| Tool | Description |
|---|---|
turn_page | Page deeper into the history, newest first; a returned cursor proves more history remains, while its absence does not prove none does |
turn_search | Find a literal that occurs verbatim in the transcripts — an identifier, a path, a quoted phrase |
turn_locate | Find which turn ranges mention a remembered term, when the original wording is unknown |
Tools return data for you to decide on — only handoff injects context back into the model, and only the paths you explicitly selected.
Session Watcher is agent-agnostic. Everything below the harness layer consumes normalized observations, so it never learns which agent produced the session.
| Agent | Driver | Status |
|---|---|---|
| Claude Code | JSONL tail (native) | ✅ |
| OpenCode | adapter-ready | pending |
| OpenClaw | adapter-ready | pending |
| Hermes | adapter-ready | pending |
| Aider | adapter-ready | pending |
Adding a new agent means writing a harness for it: a source driver that turns that agent's own session evidence into normalized observations, and a projection that maps those observations onto measurement records. The engine, dialogue history, handoff, and every product surface are shared and need no change. See lib/harness/claude-code/ for the reference harness — source-driver.js and measurement-projection.js are the two pieces a new agent supplies. PRs welcome.
Context Is Inventory: A Rent-or-Buy Model for Prompt-Cached LLM Sessions Longju Cheng (2026) · DOI:
10.5281/zenodo.21236704
The paper derives the full theoretical specification: EOQ→LLM mapping, the 41.4% movable-cost bound, the ski-rental restart strategy, and measurements on 1,016 real session transcripts. Read it at the DOI above.
~/.session-watcher.~/.session-watcher deletes all local state.MIT