Ship tools as standalone static binaries

Open AI is ditching TypeScript to rebuild Codex in Rust. This is a great example of why you should always ship tools as standalone static binaries using compiled languages. Reddit Comment The biggest advantage of such tools is not speed or efficiency. Rather, it is the ability to not install the full tool chain to just use a tool. Compiler provides additional safety check Compilation is an additional guardrail that reduces the likelihood of shipping non-functioning code. ...