task

CLI

A task runner / simpler Make alternative written in Go.

2 views

Installation

Homebrewbrew install go-task
Gogo install github.com/go-task/task/v3/cmd/task

Links

License

MIT

AI Agent Notes

Modern task runner using Taskfile.yml, simpler than Makefile

When to use

Defining and running project tasks with dependency tracking

Examples
  • task build
  • task test --verbose

Proven Recipes

List all available tasks🟢 99% success
task --list
Run a task🟢 98% success
task build
Run task with variable🟢 96% success
task deploy ENV=production