gkwa/volcanicviper

justfile

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

First seen Apr 8, 2026

Installation

$ npx skills add gkwa/volcanicviper --skill justfile

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from gkwa/volcanicviper · top by installs.

npx skills add gkwa/volcanicviper

Browse all from gkwa/volcanicviper

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch master
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 635 B
  • docs SUMMARY.md 111 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 49 installs

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.