justfile

Installation
SKILL.md

Create a justfile to orchestrate project tasks.

The justfile must include at least these rules:

  • default — list all rules using just --list
  • setup — do the main work
  • test — (optional) run tests
  • teardown — 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.

Installs
15
First Seen
Apr 8, 2026
justfile — gkwa/volcanicviper