Review before you execute

Simplify any installer script so you can review it before executing it on your machine.

How it works

Installers ask you to pipe a script from the internet straight into sudo bash. That means running code you have never read, as root, on your own machine. Reading it first is the obvious defence, and it rarely happens — installer scripts run to hundreds of lines of spinners, banner art, platform detection, and retry logic wrapped around a handful of commands that actually matter.

Paste the URL of a script and a language model rewrites it: same commands, same order, same effect, with the decoration removed. Both versions sit side by side, syntax-highlighted, so you can compare them line by line. Lines that deserve a second look — anything writing outside your home directory, adding a package repository, or reaching for sudo — come back tagged# REVIEW: and highlighted.

When the rewrite reads clean, download it and run that instead of the original.

The rewrite comes from a language model, and a language model can be wrong. It is a reading aid, not a security audit. Read the result yourself, and never run a script you do not understand.