just
Installation
SKILL.md
just — Command Runner
Use just to make project commands discoverable, reproducible, and easy for humans, agents, and CI to run. It is not a build system; recipes run when invoked and do not track file timestamps like
Make.
Workflow
- Inspect existing project commands first:
justfile,package.json,pyproject.toml,Makefile, CI config, scripts, and README snippets. - Add or update recipes around commands the project already uses; avoid inventing a new toolchain.
- Keep public recipes documented and stable because CI and agents will depend on them.
- Run
just --fmtwhen supported, then runjust --listand the changed recipes orjust ciwhen safe. - Report the recipe names changed and which recipe CI should call.