# Command-Line Help for `neomake` This document contains the help content for the `neomake` command-line program. **Command Overview:** * [`neomake`↴](#neomake) * [`neomake man`↴](#neomake-man) * [`neomake autocomplete`↴](#neomake-autocomplete) * [`neomake workflow`↴](#neomake-workflow) * [`neomake workflow init`↴](#neomake-workflow-init) * [`neomake workflow schema`↴](#neomake-workflow-schema) * [`neomake plan`↴](#neomake-plan) * [`neomake execute`↴](#neomake-execute) * [`neomake describe`↴](#neomake-describe) * [`neomake list`↴](#neomake-list) ## `neomake` A makefile alternative / task runner. **Usage:** `neomake [OPTIONS] ` ###### **Subcommands:** * `man` — Renders the manual. * `autocomplete` — Renders shell completion scripts. * `workflow` — Workflow related subcommands. * `plan` — Creates an execution plan. * `execute` — Executes an execution plan. * `describe` — Describes which nodes are executed in which stages. * `list` — Lists all available nodes. ###### **Options:** * `-e`, `--experimental ` — Enables experimental features. ## `neomake man` Renders the manual. **Usage:** `neomake man --out --format ` ###### **Options:** * `-o`, `--out ` * `-f`, `--format ` Possible values: `manpages`, `markdown` ## `neomake autocomplete` Renders shell completion scripts. **Usage:** `neomake autocomplete --out --shell ` ###### **Options:** * `-o`, `--out ` * `-s`, `--shell ` Possible values: `bash`, `zsh`, `fish`, `elvish`, `powershell` ## `neomake workflow` Workflow related subcommands. **Usage:** `neomake workflow [COMMAND]` ###### **Subcommands:** * `init` — Initializes a new template workflow. * `schema` — Renders the workflow schema to STDOUT. ## `neomake workflow init` Initializes a new template workflow. **Usage:** `neomake workflow init [OPTIONS]` ###### **Options:** * `-t`, `--template