>_

just

agent-ready non-interactive

๐Ÿค– Just a command runner

How to install just

npm install -g rust-just</code></td>

just use case

Run project-specific commands and automate common tasks using a simple, make-inspired recipe file.

When to use just

  • When you need a lightweight, cross-platform alternative to Make for running project-specific commands
  • When you want to define and share reusable scripts with dependencies within a team or project
  • When you need to run build, test, or deployment tasks with minimal configuration

When not to use just

  • When you need complex build logic with extensive dependency graphs or built-in compilation rules (use Make or a build system)
  • When your scripts require platform-specific features or extensive argument parsing that exceeds just's capabilities

just features

  • ยท Define recipes in a justfile with dependencies and default targets
  • ยท Supports variable interpolation and shell expansion
  • ยท Cross-platform with no external dependencies (Rust binary)
  • ยท Error handling with exit code propagation and quiet mode

Want your agent to find this automatically?

Add the MCP server to your agent config and it will discover tools like just on its own.

Set up MCP โ†’

Similar tools to just