just

Use `just` to save and run project-specific commands. Use when the user mentions `justfile`, `recipe`, or needs a simple alternative to `make` for task automation.

208 stars
Complexity: easy

About this skill

This AI agent skill provides comprehensive knowledge about `just`, a modern command runner designed for defining and executing project-specific commands. It allows the agent to assist users in understanding, setting up, and utilizing `justfiles` (where commands, called 'recipes', are defined). The skill covers core functionalities such as creating a `default` recipe to list available commands, running specific recipes with or without parameters, and configuring `just` behavior through settings like shell selection or `.env` file loading. The agent can explain `just`'s advantages over `make` in terms of simplicity and readability, helping users streamline their development workflows. Key use cases include automating common development tasks like testing, building, or deploying, managing dependencies between tasks, and standardizing command execution across a project. By leveraging this skill, the AI agent can effectively introduce `just` to new users, provide guidance for its implementation, and troubleshoot common usage scenarios, making project task management more efficient and accessible.

Best use case

The primary use case is to help developers simplify and standardize their project's command execution and task automation. It's ideal for individual developers and teams who want a straightforward, human-readable way to define and run recurring development commands (e.g., `test`, `build`, `lint`) without the complexity associated with traditional build systems like `make`. This skill enables the AI agent to facilitate quick setup and effective use of `just`, improving workflow consistency and developer productivity.

Use `just` to save and run project-specific commands. Use when the user mentions `justfile`, `recipe`, or needs a simple alternative to `make` for task automation.

The user will successfully define, understand, and execute project-specific commands using `just` for streamlined task automation, guided by the AI agent.

Practical example

Example input

I want to set up a `justfile` for my Node.js project. How do I define `start` and `test` scripts, and how can I run them?

Example output

To set up a `justfile` for your Node.js project, first ensure `just` is installed (e.g., `brew install just`). Then, create a file named `justfile` in your project root with the following content:

```just
default:
  @just --list

start:
  node index.js

test:
  npm test
```

To run the `start` script, type `just start` in your terminal. To run the `test` script, use `just test`. You can also just type `just` to see a list of available recipes.

When to use this skill

  • When the user explicitly mentions `justfile`, `recipe`, or `just`.
  • When the user needs a simple and readable alternative to `make` for project task automation.
  • When the user wants to define and run project-specific commands consistently across environments.
  • When assisting with setting up, configuring, or troubleshooting `just` in a development project.

When not to use this skill

  • When a full-fledged, complex build system like `Bazel` or `Gradle` is explicitly required for sophisticated build graph management.
  • When the project does not involve recurring commands or the need for task automation.
  • When `make` or another command runner is already deeply integrated and meeting all project requirements effectively.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/just/SKILL.md --create-dirs "https://raw.githubusercontent.com/disler/bowser/main/.claude/skills/just/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/just/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How just Compares

Feature / AgentjustStandard Approach
Platform SupportClaudeLimited / Varies
Context Awareness High Baseline
Installation ComplexityeasyN/A

Frequently Asked Questions

What does this skill do?

Use `just` to save and run project-specific commands. Use when the user mentions `justfile`, `recipe`, or needs a simple alternative to `make` for task automation.

Which AI agents support this skill?

This skill is designed for Claude.

How difficult is it to install?

The installation complexity is rated as easy. You can find the installation instructions above.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Just Command Runner

[GitHub Repository](https://github.com/casey/just)

`just` is a handy way to save and run project-specific commands. It's a command runner, not a build system, avoiding much of `make`'s complexity.

## Instructions

### Prerequisites

- `just` must be installed: `brew install just`
- Commands are stored in a `justfile` (or `Justfile`).

#### Common Settings (`set ...`)

You can configure `just` behavior at the top of your `justfile`:
- `set shell := ["bash", "-c"]`: Change the default shell.
- `set dotenv-load`: Automatically load `.env` files.
- `set allow-duplicate-recipes`: Allow overriding recipes.
- `set fallback`: Search for `justfile` in parent directories.
- `set quiet`: Don't echo commands by default.

## Example Justfiles

For complete reference, see these templates:
- [Node.js + Docker](examples/node-docker.just)
- [Python + Venv](examples/python-venv.just)
- [Bun + TypeScript](examples/bun-typescript.just)
- [Astral UV + Python](examples/uv-python.just)
- [Multi-Module / Advanced](examples/multi-module.just)

## Workflow

1. **Create a `justfile`**:
   Define recipes at the top level of your project. **Always include a `default` recipe that lists available commands:**
   ```just
   default:
     @just --list
   ```
   ```just
   # The default recipe (runs when calling `just` with no args)
   default:
     just --list

   # A basic recipe
   test:
     cargo test

   # A recipe with parameters
   build target:
     echo "Building {{target}}..."
     cc main.c -o {{target}}
   ```

2. **Run Recipes**:
   - Run the default recipe: `just`
   - Run a specific recipe: `just <recipe>`
   - Pass arguments to a recipe: `just build my-app`
   - List all available recipes: `just --list`

3. **Advanced Features**:
   - **Dependencies**: `test: build` (runs `build` before `test`).
   - **Shebang Recipes**: Use other languages like Python or Node inside a recipe.
     ```just
     python-task:
       #!/usr/bin/env python3
       print("Hello from Python!")
     ```
   - **Dotenv**: `set dotenv-load` at the top of the file to load `.env`.

## Examples

### Example 1: Standard Development Justfile

User request:
```
Create a justfile for my Node project to handle lint, test, and dev
```

You would:
1. Create a `justfile`:
   ```just
   default:
     @just --list

   lint:
     npm run lint

   test:
     npm test

   dev:
     npm run dev
   ```
2. Tell the user they can now run `just dev` or `just test`.

### Example 2: Recipe with Parameters

User request:
```
Add a recipe to just to deploy to a specific environment
```

You would:
1. Edit the `justfile`:
   ```just
   deploy env:
     echo "Deploying to {{env}}..."
     ./scripts/deploy.sh --target {{env}}
   ```
2. Inform the user they can run `just deploy production`.

### Example 3: Listing Recipes

User request:
```
What commands are available in this project?
```

You would:
1. Run `just --list` to see available recipes and their comments.

Related Skills

laravel-expert

31392
from sickn33/antigravity-awesome-skills

Senior Laravel Engineer role for production-grade, maintainable, and idiomatic Laravel solutions. Focuses on clean architecture, security, performance, and modern standards (Laravel 10/11+).

Coding & DevelopmentClaude

webmcp

1093
from qdhenry/Claude-Command-Suite

This skill guides AI agents in implementing WebMCP within web projects, enabling browser-native structured tools for AI interaction using JavaScript or HTML APIs.

Coding & DevelopmentClaude

Prompt Coach

799
from bear2u/my-skills

Analyze your Claude Code session logs to improve prompt quality, optimize tool usage, and enhance your skills as an AI-native engineer.

Coding & DevelopmentClaude

react

389
from udecode/better-convex

This AI agent skill guides the generation of modern React components, incorporating best practices such as destructured props, leveraging compiler optimizations, and proper use of React Effects. It also ensures compatibility and utilizes Tailwind CSS v4 syntax.

Coding & DevelopmentClaude

nextjs

389
from udecode/better-convex

Provides comprehensive Next.js routing capabilities, including typed routes, helpers for `PageProps` and `LayoutProps`, and `nuqs` for managing URL state.

Coding & DevelopmentClaude

chrome-debug

159
from majiayu000/claude-skill-registry

This skill empowers AI agents to debug web applications and inspect browser behavior using the Chrome DevTools Protocol (CDP), offering both collaborative (headful) and automated (headless) modes.

Coding & DevelopmentClaude

worktree-manager

125
from Wirasm/worktree-manager-skill

Create, manage, and cleanup git worktrees with Claude Code agents across all projects. USE THIS SKILL when user says "create worktree", "spin up worktrees", "new worktree for X", "worktree status", "cleanup worktrees", "sync worktrees", or wants parallel development branches. Also use when creating PRs from a worktree branch (to update registry with PR number). Handles worktree creation, dependency installation, validation, agent launching in Ghostty, and global registry management.

Coding & DevelopmentClaude

clearshot

124
from udayanwalvekar/clearshot

Structured screenshot analysis for UI implementation and critique. Analyzes every UI screenshot with a 5×5 spatial grid, full element inventory, and design system extraction — facts and taste together, every time. Escalates to full implementation blueprint when building. Trigger on any digital interface image file (png, jpg, gif, webp — websites, apps, dashboards, mockups, wireframes) or commands like 'analyse this screenshot,' 'rebuild this,' 'match this design,' 'clone this.' Skip for non-UI images (photos, memes, charts) unless the user explicitly wants to build a UI from them. Does NOT trigger on HTML source code, CSS, SVGs, or any code pasted as text.

Coding & DevelopmentClaude

osgrep

101
from pr-pm/prpm

Semantic code search using natural language queries. Use when users ask "where is X implemented", "how does Y work", "find the logic for Z", or need to locate code by concept rather than exact text. Returns file paths with line numbers and code snippets.

Coding & DevelopmentClaude

10up-css

87
from petenelson/wp-rest-api-log

CSS architecture, best practices, and patterns for WordPress projects. Covers ITCSS methodology, accessibility, specificity management, naming conventions, and modern CSS features.

Coding & DevelopmentClaude

agentifind

68
from AvivK5498/Beads-Kanban-UI

This skill sets up codebase intelligence for AI agents by running the `agentifind` CLI to extract code structure and synthesize a `CODEBASE.md` navigation guide. It includes staleness detection and intelligently handles LSP installation for optimal accuracy.

Coding & DevelopmentClaude

CLAUDE.md – JJ Quick Command List

58
from mizchi/chezmoi-dotfiles

A concise cheat sheet for essential Jujutsu (`jj`) version control commands, designed to help AI agents or users quickly perform common repository operations.

Coding & DevelopmentClaude