Files
walkies/.claude/agents/taskfile-not-make.md
2026-03-05 15:59:33 -04:00

549 B

description, alwaysApply
description alwaysApply
Use go-task (Taskfile) instead of Make for task automation true

Use Taskfile, not Make

This project uses go-task (Taskfile.yaml) for task automation. Do not use Makefiles.

  • Task definitions go in Taskfile.yaml at the repo root.
  • Use task <name> to run tasks (e.g. task test, task db).
  • Use colon-separated namespacing for related tasks (e.g. task db:stop).
  • When adding new automation, add a task to Taskfile.yaml rather than creating a Makefile or shell script.