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
Fix crash on launch (EINVAL) - spawn with mixed inherit/pipe stdio caused an EINVAL error on Windows immediately on startup. Fixed by using ignore for stdin on Windows.
Fix process cleanup on Ctrl+C - child.kill('SIGINT') is not supported on Windows. Changed to child.kill() which works cross-platform.
Fix project names displaying as full paths - projectDisplayName and projectShortPath only split on /, so Windows paths like C:\Users\foo\project showed as a single unsplit chunk. Fixed to split on both / and \.
Fix JSONL parsing with Windows line endings - JSONL readers split on \n only, leaving a trailing \r on each token when files use \r\n endings, causing JSON.parse failures. Fixed to use /\r?\n/.