MCP Config Control: Use `--disable-mcp-configs`, `DEV3000_DISABLE_MCP_CONFIGS`, or `$XDG_CONFIG_HOME/dev3000/config.json` (falls back to `~/.config/dev3000/config.json`) to skip writing specific MCP config files (resolves #58)
User Config Defaults: `$XDG_CONFIG_HOME/dev3000/config.json` (or `~/.config/dev3000/config.json`) now stores persistent CLI defaults like MCP config suppression
Custom Command Flag: New `--command` flag lets you override auto-detection and run any arbitrary command (e.g., `dev3000 --command "bun run dev"` or `dev3000 --command "uvicorn main:app --reload"`)
Smart Error Prioritization: Automatically scores and ranks errors by severity - build errors (1000+), server errors (500+), browser errors (300+), with modifiers for recency and reproducibility
One-PR-Per-Run: Creates focused single-issue PRs for the highest priority error - no more overwhelming multi-fix PRs
Improved Port Detection: Works with non-standard ports (like Svelte's 5173) and shows loading spinner until port is confirmed
Non-Intrusive Health Checks: Replaced HTTP HEAD requests with simple TCP port checks - no more interfering with auth middleware or polluting server logs
Better Compatibility: Works seamlessly with apps using redirect-based auth without causing infinite loops
Auto-Configuration for AI CLIs: Automatically writes .mcp.json (Claude Code) and .cursor/mcp.json (Cursor) so MCP servers are instantly available
New find_component_source MCP tool: Maps DOM elements to React component source code by extracting the component function and providing targeted grep patterns to locate source files
Removed get_react_component_info tool: React 19 removed __reactFiber$ properties from DOM nodes, making the old approach obsolete
Passive screencast capture automatically records page loads and navigations without slowing down your dev server
CLS detection video viewer shows frame-by-frame video of layout shifts with red bounding boxes highlighting exactly which elements shifted
Real PerformanceObserver integration uses browser APIs to detect actual layout shifts (not just pixel-diff guessing), with querySelector to find precise element positions
New fix_my_jank MCP tool automatically analyzes performance issues and CLS problems, flagging critical UI shifts in NAV/HEADER elements
Better header and status line rendering for narrow terminal windows