Skip to content

min commands

min helper commands are available within all task sandboxes.

Commands

add <PACKAGES...>

Installs tools & dependencies into the running sandbox. If flags are provided, the named packages are also configured as a build, runtime, or task dependency in minimal.toml.

FlagDescription
--runtimeAdd packages to harness.runtime_packages
--buildAdd packages to harness.build_packages
--task <TASK_NAME>Add packages to tasks.<TASK_NAME>.packages

min add is the in-sandbox equivalent of the minimal add command.

search <TERM>

Searches-for and lists packages related to the search term.

check [<OPTIONS>] [FILTER_NAMES...]

Validates minimal configuration including packages, harnesses, and profiles.

FlagShortDescription
--fix-fAttempt to fix any issues
--skip-checkers <NAMES>-sComma-delimited checker names to skip
--packagesCheck packages defined in the codebase
--harnessesCheck harnesses defined in the codebase
--profilesCheck profiles defined in the codebase

If no type flags are specified, all types are checked by default.

If filter names are specified, any package, harness, or profile matching a specified name is checked.

min check is the in-sandbox equivalent of the minimal check command.

run <TASK_NAME> [<ARGS>...]

Runs the specified task in a new Minimal sandbox. Interactive tasks are not supported.

min run is the in-sandbox equivalent of the minimal run command.