11 · The Command Line
Makefile
Named command recipes
A file of named tasks (`make test`, `make build`) that standardizes project commands. Still common even in JS/Python repos as a thin task runner.
Concrete example
`make lint` might wrap the real linter command the team agrees on.
Why it matters
A single entry point agents can call instead of guessing script names.