Skip to main content
Some tasks need to interact with the user — for example, launching a text editor or running an interactive prompt. Set interactive: true on the task to allow it to receive user input from stdin.
Taskfile.yaml
version: '3'

tasks:
  default:
    cmds:
      - vim my-file.txt
    interactive: true
Without interactive: true, tasks that require stdin (like vim, fzf, or other interactive tools) may not behave correctly.

Build docs developers (and LLMs) love