What problem does it solve? It helps developers identify and diagnose performance regressions between code branches by automating benchmark comparisons and CPU profile analysis, replacing slow manual profiling workflows. ## Core Features & Use Cases - Branch Benchmark Comparison: Run pnpm bench:compare to automatically benchmark a branch against main and generate a summary report. - CPU Profile Analysis: Inspect generated .cpuprofile files and their Markdown summaries to find hotspot changes in runtime internals like reactivity/batch.js. - Targeted Benchmark Loops: Run only selected benchmarks by substring for fast iteration, and use profile-diff.mjs for quick hotspot deltas between branches. - Use Case: After modifying reactivity internals, compare your feature branch against main, review the report for the largest regressions, inspect per-benchmark CPU profile summaries, and verify fixes with pnpm test runtime-runes. ## Quick Start Ask the assistant to compare the performance of your current branch against main and summarize the largest regressions with their CPU profile hotspots.