Help us improve
Share bugs, ideas, or general feedback.
From just
Use the just command runner to execute recipes. Use when running just commands, listing recipes, choosing recipes interactively, evaluating variables, or using just CLI features.
npx claudepluginhub tarqd/skills --plugin justHow this skill is triggered — by the user, by Claude, or both
Slash command
/just:using-justThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Just is a command runner that executes recipes defined in a `justfile`.
Provides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.
Share bugs, ideas, or general feedback.
Just is a command runner that executes recipes defined in a justfile.
# Run default recipe
just
# Run specific recipe
just build
# Run with arguments
just test integration
# Run multiple recipes
just clean build test
# List all recipes with descriptions
just --list
# List in file order (not alphabetical)
just --list --unsorted
# List with groups shown
just --list --groups
# One-line summary
just --summary
# Show recipe groups
just --groups
# Run recipe from specific justfile
just -f path/to/justfile recipe
# Run from different directory
just -d /path/to/project recipe
# Set variables from CLI
just --set version "1.0.0" release
# Dry run (show commands without executing)
just --dry-run build
# Run without dependencies
just --no-deps test
# Run only one recipe (stop after first)
just -1 test1 test2
# Choose recipe interactively (requires fzf)
just --choose
# Use custom chooser
just --choose --chooser "fzf --multi"
# Auto-confirm prompts
just --yes dangerous-recipe
# Show recipe source
just --show build
# Show recipe usage
just --usage deploy
# Evaluate and print variables
just --evaluate
just --evaluate version
# List all variables
just --variables
# Dump parsed justfile
just --dump
just --dump --dump-format json
just --dump --dump-format yaml
# Run recipe from module
just module::recipe
just module recipe
# List module recipes
just --list module::
# Edit justfile in $EDITOR
just --edit
# Create starter justfile
just --init
# Format justfile (unstable)
just --fmt
# Check justfile syntax
just --check
# Generate completions
just --completions bash > just.bash
just --completions zsh > _just
just --completions fish > just.fish
just --completions powershell > just.ps1
| Option | Short | Description |
|---|---|---|
--justfile FILE | -f | Use specific justfile |
--directory DIR | -d | Change to directory first |
--working-directory DIR | -C | Set recipe working directory |
--dry-run | -n | Show commands without running |
--quiet | -q | Suppress output |
--verbose | -v | Increase verbosity |
--color MODE | auto, always, or never | |
--yes | -y | Auto-confirm prompts |
--unstable | Enable unstable features |
| Variable | Purpose |
|---|---|
JUST_CHOOSER | Default chooser for --choose |
JUST_UNSTABLE | Enable unstable features |
just --list frequently to see available recipes--dry-run flag is useful for testing complex recipesjust --show recipe reveals the actual commands