Skip to content

v0.6.4

Latest

Choose a tag to compare

@brandonburrus brandonburrus released this 02 Apr 02:26

What's Changed

Performance

  • 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)