justfile

Installation
SKILL.md

justfile Skill

just is a command runner for project-specific commands. Similar to Make but simpler.

Basic Syntax

# Default recipe (runs when just is called without arguments)
default:
  @echo "Available: just --list"

# Basic recipe
build:
  cargo build --release

# Dependencies
test: build
  cargo test
Installs
8
GitHub Stars
582
First Seen
Apr 20, 2026
justfile — mizchi/chezmoi-dotfiles