configure-justfile

configure-justfile is a skill for Claude Code from laurigates/claude-plugins. It costs 36 tokens per session (2,220 once invoked), scanned B, original, MIT.

A setup guide for Justfiles, files that define repeatable project commands. Just is a task runner similar to Make, used to collect common development recipes.

In plain words
What is it for?
Use it to create or audit a Justfile, add standard recipes, migrate from Make, and check task-runner conventions in CI.
Why use it?
It gives teams a consistent set of commands and can help move a project from Make to Just when appropriate.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is go build -o bin/{{PROJECT_NAME}} ./cmd/{{PROJECT_NAME}}.

Part of the configure-plugin plugin — 48 skills shipped together

Good fit Use it to create or audit a Justfile, add standard recipes, migrate…

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins
agentmods
npx agentmods add skills/laurigates/claude-plugins/configure-justfile

Made for: Claude Code.

Or install configure-plugin, the plugin that ships this one along with the rest of its 48 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for configure-justfile

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-justfile.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/configure-justfile)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/configure-justfile"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-justfile.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,220 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.02220
Opus 5 $0.00018 $0.01110
Sonnet 5 $0.00007 $0.00444
Haiku 4.5 $0.00004 $0.00222

Measured 2d ago against content hash b99c23b5aa0e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

configure-justfile scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletemediumDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

configure-plugin/skills/configure-justfile/SKILL.md · 356 lines

How it starts

The opening of the file, as written. The whole thing — 356 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/configure:justfile

Check and configure project Justfile against project standards.

When to Use This Skill

Use this skill when... Use another approach when...
Setting up a new Justfile for a project Project already uses Make exclusively and migration is not desired — use /configure:makefile
Auditing existing Justfile for missing standard recipes Writing complex custom recipes — use justfile-expert skill
Migrating from Makefile to Justfile Project has no task runner needs (single-file scripts)
Ensuring Justfile follows team conventions (groups, comments, settings) Debugging a specific recipe failure — use direct just commands
Running CI/CD compliance checks on project task runners Only need to list available recipes — run just --list directly

Context

  • Project root: !pwd
  • Justfile: !find . -maxdepth 1 \( -name 'justfile' -o -name 'Justfile' \)
  • Makefile: !find . -maxdepth 1 -name 'Makefile'
  • Package files: !find . -maxdepth 1 \( -name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \)
  • Docker files: !find . -maxdepth 1 \( -name 'Dockerfile' -o -name 'docker-compose.yml' \)
  • Env file: !find . -maxdepth 1 -name '.env'
  • Project standards: !find . -maxdepth 1 -name '.project-standards.yaml'

Parameters

Parse from command arguments:

  • --check-only: Report compliance status without modifications (CI/CD mode)
  • --fix: Apply fixes automatically without prompting

Execution

Execute this Justfile compliance check:

Step 1: Detect Justfile and project type

  1. Check for justfile or Justfile in project root
  2. If exists, read and analyze current recipes and settings
  3. Detect project type from file indicators:
Indicator Project Type
pyproject.toml or requirements.txt Python
package.json Node.js
Cargo.toml Rust
go.mod Go
None of the above Generic

Read the full file on GitHub · 356 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 356 lines · 36 tokens per session scan B b99c23b5aa0e

Subscribe to this mod's changes

configure-justfile is a skill published in the GitHub repository laurigates/claude-plugins (58 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 2,220 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

notion-artifact-capture

Use when a user says “save to Notion” for research, reports, drafts, references, or generated artifacts and wants a reusable default destination. Bootstraps a generic Notion AI Output Library under a user-created shared parent page, saves typed metadata and optional Markdown, verifies every write through the live API…

AtlasOmnia/hermes-custom-pack · 82 tokens

telegram

Send notifications, interactive questions, or multiple-choice polls to the user via Telegram. Use when the user asks to be notified ("ping me", "notify me on Telegram", "ask me when..."), when a long-running task finishes and the user is likely away, when an irreversible action needs out-of-band confirmation, or when…

laurigates/dotfiles · 117 tokens

name-it-better

Generate and evaluate fresh name candidates for anything: a variable, function, file, module, skill, repo, or domain term. Then let the human pick. Use when the target name is still UNDECIDED, whether the ask is a fresh name ('suggest names', 'what should I call this') or a retry on one just rejected ('name it…

melodic-software/claude-code-plugins · 150 tokens

gog

Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.

SafeAI-Lab-X/ClawKeeper · 20 tokens

notion

Notion API for creating and managing pages, databases, and blocks.

SafeAI-Lab-X/ClawKeeper · 17 tokens

tmux

Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.

SafeAI-Lab-X/ClawKeeper · 22 tokens