You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parallelize all discovery I/O at plugin startup — all five collect* functions and the full init sequence now fan out concurrently via Promise.all instead of sequential await chains
Cache compiled picomatch matchers module-level so each unique applyTo glob pattern is only compiled once across all LLM turns
Rework FileTracker to store tracked files as a Set internally — getTrackedFiles is now a zero-allocation return on the hot path, and duplicate checks drop from O(n) to O(1)