justfile
Installation
SKILL.md
Create a justfile to orchestrate project tasks.
The justfile must include at least these rules:
default— list all rules usingjust --listsetup— do the main worktest— (optional) run teststeardown— clean up artifacts created by setup
Keep the justfile simple and clear about what to run.
Inline bash is acceptable within the justfile. If a task requires more than ~10 commands, extract it into a separate bash script and have the justfile call that script instead.