# Justfile

> Create a justfile to orchestrate project tasks. Use when setting up task running for a project.

- Skill: `gkwa/justfile` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add gkwa/justfile`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gkwa/justfile/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: gkwa (https://skillmd.com/u/gkwa)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/gkwa/justfile

---


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.

