I find it quite astonishing there is no go-to build system / task runner yet for handling small to medium-sized monorepos across ecosystems.<p>I want a tool that<p>- allows me to define tasks with inputs (+ secrets) and outputs. Inputs can be files & folders from the repo, Docker images, build parameters / env vars, outputs from other tasks, … Typical tasks I have in mind are setup/build/test/deploy, which of course will typically depend on one another, thereby forming a pipeline or dependency graph.<p>- sandboxes/containerizes tasks by default (in particular: no access to repo file system / working copy, env vars, … beyond what's specified as inputs) but does provide easy escape hatches (for deployment pipelines, sharing venv/node_modules between task and working copy / IDE, …),<p>- by default automatically caches a task's output & logs for a given input, unless I explicitly tell it not to (again, deployment tasks!). Then, when running a task upon the user's request, it automatically figures out the dependency graph and runs only those tasks that have not been cached before. This includes the case of the task definition itself having changed. (Many tools allowing you to define tasks in a full-blown programming language struggle with detecting this reliably.)<p>- comes with monorepo support, so supports collecting definitions of e.g. the "test" task across subfolders/projects and running them all in parallel (as far as the dependency graph allows),<p>- is language-/ecosystem-agnostic, so that I can invoke whatever tool or shell script inside a given task.<p>- provides a sane configuration language (<i>not</i> YAML) – ideally a lightweight functional language that makes side effects very explicit,<p>- can be run both in CI and locally, without much setup effort. In fact, since the tool should be used as task runner for everything else in the repo, it should be easily bootstrappable after cloning the repo.<p>- can be integrated somewhat nicely with Github/GitLab/Azure DevOps/… (actually not that easy).<p>Dagger comes pretty close in terms of general idea but I'm not sure I like it so far.