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