Cache Break Notifier plugin for GitHub Copilot CLI A developer created a Cache Break Notifier plugin for GitHub Copilot CLI that warns users when the AI assistant's context cache drops significantly between turns, helping to identify costly cache misses. The plugin monitors cache read tokens per model and logs warnings when a drop of 4096 or more tokens is detected. | import { joinSession } from "@github/copilot-sdk/extension"; | | | | const DROP TOKENS = 4096; // the only tunable: how big a cache-read drop is worth a warning | | | | / @type {Map