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
Related skills

More from mizchi/skills

Installs
11
Repository
mizchi/skills
GitHub Stars
186
First Seen
Apr 27, 2026