Commands
Execute a script, pass arguments through, and propagate its exit code.
rune listEvery script visible from here, with descriptions and provenance.
rune inspectThe resolved command, environment and chain, without spawning anything.
rune initWrite a starter config, optionally seeded from package.json.
rune cacheRemove the resolved-config cache.
Streams
Standard output belongs to the script. Every Rune diagnostic, warning and echo goes to standard
error, on every platform, so rune run build > artifact.txt captures the build's bytes and nothing
of Rune's.
Colour
Colour is used when standard error is a terminal that supports it. NO_COLOR set to any value
turns it off. Rune never relies on colour alone: every state carries a glyph and a word as well.
Environment variables
Every flag has a matching RUNE_ environment variable, so a setting can live in a shell profile or
a CI job definition instead of on the command line. See
Environment variables.