1---2name: casey-just-just3description: Just4---56Just7====89Discovery10---------1112- `just --dump` Print justfile13- `just --evaluate` Print variable values14- `just --help` Print detailed command-line syntax help15- `just --list` Print recipes with descriptions16- `just --show <RECIPE>` Print recipe source17- `just --summary` Print recipes without descriptiosn1819Execution20---------2122- `just` Run default recipe23- `just <RECIPE>` Run specific recipe24- `just <RECIPE> <ARG1> <ARG2` Run recipe with arguments2526Syntax27------2829```just30executable := 'main'3132# compile main.c33compile:34 cc main.c -o {{ executable }}3536# run main37run: compile38 ./{{ executable }}3940# run test41test name: compile42 ./bin/test {{ name }}4344# start webserver45serve port='8080':46 python -m http.server {{port}}4748# publish current tag49publish:50 #!/usr/bin/env bash51 set -euxo pipefail52 tag=`git describe --tags --exact-match`53 ./bin/check-tag $tag54 git push origin $tag55```5657Notes58-----5960The comment proceeding a recipe is used as its doc-comment, and included in61`just --list`.6263By default, each line of a recipe runs in a fresh shell. Recipes whose bodies64start with `#!` are written to a file and executed as a script.6566Commonly used commands and scripts should be turned into `just` recipes.6768---69> Source: [casey/just](https://github.com/casey/just) — distributed by [TomeVault](https://tomevault.io).70<!-- tomevault:4.0:skill_md:2026-06-18 -->
Run npx skillmds@latest add tomevault-io/casey-just-just in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Just It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.