assist v0.205.1
Windows fix for assist devlog next
assist devlog next was crashing on Windows with '%h' is not recognized as an internal or external command. The cause was three git log --pretty=format:'%ad|%h|%s' calls running via execSync — cmd.exe doesn’t strip single quotes the way bash does, so %h got expanded as an empty env var and the rest of the format string was parsed as a command. Switched all three call sites (devlog list, devlog next, getLastVersionInfo) from execSync with a shell string to execFileSync with an argv array, which sidesteps the shell entirely and works the same way on every platform.