← Back to tools
View AGENTS.md for just
just
A handy command runner for project-specific commands
Description
just is a command runner inspired by make but focused solely on running commands. It uses a simple syntax in a 'justfile', supports parameters, dependencies, and works cross-platform without the quirks of Makefiles.
Install
homebrew
brew install justcargo
cargo install justpacman
sudo pacman -S justAI Summary
A command runner for project-specific tasks. Uses a simple 'justfile' syntax without Make's implicit rules, supporting parameters, dependencies, and cross-platform execution.
Capabilities
- + Simple recipe syntax without Makefile quirks
- + Parameters, default values, and environment variable loading
- + Recipe dependencies and ordering
- + Cross-platform with consistent behavior
Use When
- → Defining project-specific commands (build, test, deploy)
- → Want a simpler alternative to Makefiles for task running
- → Need parameterized commands that team members can discover
Avoid When
- x Need actual build system features with file-dependency tracking (use make)
Usage Patterns
Run a recipe
just build Runs the 'build' recipe from the justfile
List available recipes
just --list Shows all recipes defined in the justfile with descriptions