[![build status](https://github.com/jacobdeichert/mask/actions/workflows/ci.yml/badge.svg?branch=master)][github_ci] [![mask version](https://img.shields.io/crates/v/mask.svg)][crate] [![mask crate downloads](https://img.shields.io/crates/d/mask.svg)][crate] `mask` is a CLI task runner which is defined by a simple markdown file. It searches for a `maskfile.md` in the current directory which it then parses for commands and arguments. A `maskfile.md` is both a **human-readable document** and a **command definition**! Being documentation focused allows others to easily get started with your project's development setup by simply reading your `maskfile.md`. A nice advantage of using markdown is that syntax highlighting for code blocks is built-in to many editors and renderers like GitHub itself. Here's the [maskfile.md](/maskfile.md) that `mask` itself uses as an example! To get started, follow the guide below or check out the more [advanced features](#features) `mask` has like **positional args**, **optional flags**, **subcommands**, other **scripting runtimes** and more! ## Installation ### Precompiled binaries Head to the [Releases page][releases] and look for the latest published version. Under **Assets** you'll see zips available for download for linux, macOS and Windows. Once downloaded, you can unzip them and then move the `mask` binary to somewhere accessible in your `$PATH` like `mv mask /usr/local/bin`. ### Homebrew `mask` is available in [Homebrew][homebrew] which allows you to install it via `brew install mask`. ### Cargo `mask` is published to [crates.io][crate] which allows you to install it via `cargo install mask`. ### From source If you prefer to build from source, clone this repo and then run `cargo build --release` ## Getting started First, define a simple `maskfile.md` in your project. ```markdown # Tasks For My Project ## build > Builds my project ~~~sh echo "building project..." ~~~ ## test > Tests my project You can also write documentation anywhere you want. Only certain types of markdown patterns are parsed to determine the command structure. This code block below is defined as js which means it will be ran with node. Mask also supports other scripting runtimes including python, ruby and php! ~~~js console.log("running tests...") ~~~ ``` Then, try running one of your commands! ~~~sh mask build mask test ~~~ ## Features ### Positional arguments These are defined beside the command name within `(round_brackets)`. They are required arguments that must be supplied for the command to run. The argument name is injected into the script's scope as an environment variable. **Example:** ```markdown ## test (file) (test_case) > Run tests ~~~bash echo "Testing $test_case in $file" ~~~ ``` Optional arguments are defined within `[square_brackets]`. **Example:** ```markdown ## test [test_file] > Run tests ~~~bash if [[ -n "$test_file" ]]; then echo "Run tests in $test_file..." else echo "Running all tests...." fi ~~~ ``` ### Named flags You can define a list of named flags for your commands. The flag name is injected into the script's scope as an environment variable. **Example:** ```markdown ## serve > Serve this directory **OPTIONS** * port * flags: -p --port * type: string * desc: Which port to serve on ~~~sh PORT=${port:-8080} # Set a fallback port if not supplied if [[ "$verbose" == "true" ]]; then echo "Starting an http server on PORT: $PORT" fi python -m SimpleHTTPServer $PORT ~~~ ``` You can also make your flag expect a numerical value by setting its `type` to `number`. This means `mask` will automatically validate it as a number for you. If it fails to validate, `mask` will exit with a helpful error message. **Example:** ```markdown ## purchase (price) > Calculate the total price of something. **OPTIONS** * tax * flags: -t --tax * type: number * desc: What's the tax? ~~~sh TAX=${tax:-1} # Fallback to 1 if not supplied echo "Total: $(($price * $TAX))" ~~~ ``` If you add a `choices` list, `mask` will validate if the flag value is one of them. **Example:** ```markdown ## color **OPTIONS** * color * flags: -c --color * type: string * choices: RED, BLUE, GREEN ~~~bash COLOR=${color:-RED} # Fallback to RED if not supplied echo "Color selected = '$COLOR'" ~~~ ``` If you exclude the `type` field, `mask` will treat it as a `boolean` flag. If the flag is passed, its environment variable will be `"true"`, otherwise it will be unset/non-existent. Important to note that `mask` auto injects a very common `boolean` flag called `verbose` into every single command even if it's not used, which saves a bit of typing for you. This means every command implicitly has a `-v` and `--verbose` flag already. **Example:** ```markdown ## test > Run the test suite **OPTIONS** * watch * flags: -w --watch * desc: Run tests on file change ~~~bash [[ "$watch" == "true" ]] && echo "Starting in watch mode..." [[ "$verbose" == "true" ]] && echo "Running with extra logs..." ~~~ ``` Flags are optional by default. If you add `required` to your flag definition, `mask` will error if it isn't supplied by the user. **Example:** ```markdown ## ping **OPTIONS** * domain * flags: -d --domain * type: string * desc: Which domain to ping * required ~~~sh ping $domain ~~~ ``` ### Subcommands Nested command structures can easily be created since they are simply defined by the level of markdown heading. H2 (`##`) is where you define your top-level commands. Every level after that is a subcommand. **Example:** ```markdown ## services > Commands related to starting and stopping services ### services start (service_name) > Start a service. ~~~bash echo "Starting service $service_name" ~~~ ### services stop (service_name) > Stop a service. ~~~bash echo "Stopping service $service_name" ~~~ ``` You may notice above that the `start` and `stop` commands are prefixed with their parent command `services`. Prefixing subcommands with their ancestor commands may help readability in some cases, however, it is completely optional. The example below is the same as above, but without prefixing. **Example:** ```markdown ## services > Commands related to starting and stopping services ### start (service_name) > Start a service. ~~~bash echo "Starting service $service_name" ~~~ ### stop (service_name) > Stop a service. ~~~bash echo "Stopping service $service_name" ~~~ ``` ### Support for other scripting runtimes On top of shell/bash scripts, `mask` also supports using node, python, ruby and php as scripting runtimes. This gives you the freedom to choose the right tool for the specific task at hand. For example, let's say you have a `serve` command and a `snapshot` command. You could choose python to `serve` a simple directory and maybe node to run a puppeteer script that generates a png `snapshot` of each page. **Example:** ```markdown ## shell (name) > An example shell script Valid lang codes: sh, bash, zsh, fish... any shell that supports -c ~~~zsh echo "Hello, $name!" ~~~ ## node (name) > An example node script Valid lang codes: js, javascript ~~~js const { name } = process.env; console.log(`Hello, ${name}!`); ~~~ ## python (name) > An example python script Valid lang codes: py, python ~~~python import os name = os.getenv("name", "WORLD") print("Hello, " + name + "!") ~~~ ## ruby (name) > An example ruby script Valid lang codes: rb, ruby ~~~ruby name = ENV["name"] || "WORLD" puts "Hello, #{name}!" ~~~ ## php (name) > An example php script ~~~php $name = getenv("name") ?: "WORLD"; echo "Hello, " . $name . "!\n"; ~~~ ``` #### Windows support You can even add powershell or batch code blocks alongside linux/macOS ones. Depending on which platform this runs on, the correct code block will be executed. **Example:** ```markdown ## link > Build and link the binary globally ~~~bash cargo install --force --path . ~~~ ~~~powershell [Diagnostics.Process]::Start("cargo", "install --force --path .").WaitForExit() ~~~ ``` ### Automatic help and usage output You don't have to spend time writing out help info manually. `mask` uses your command descriptions and options to automatically generate help output. For every command, it adds `-h, --help` flags and an alternative `help