casey/just

🤖 Just a command runner

View on GitHub ↗Jump to charts ↓Open shareable report →

Summary Information

Updated 23 minutes ago
Added to GitGenius on September 1st, 2026
Created on June 17th, 2016
Open Issues & Pull Requests: 171 (+0)
GitHub issues: Enabled
Number of forks: 839
Total Stargazers: 35,674 (+1)
Total Subscribers: 107 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 8.1 hours
Mean response time: 77.9 days
90th percentile: 89.1 days
Tracked items: 677

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 82% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 7% of issues opened in the past year have been closed. Three people close 89% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 125
New in 7 days: 2
Closed in 7 days: 2
Avg open age: 618 days
Stale 30+ days: 110
Stale 90+ days: 75

Recent activity

Opened in 7 days: 1
Closed in 7 days: 2
Comments in 7 days: 1
Events in 7 days: 1

Top labels

  • enhancement (42)
  • coveted (20)
  • completions (7)
  • question (4)
  • stabilization (4)
  • development (3)
  • reform (3)
  • bug (2)

Detailed Description

Just is a command runner that provides a simpler alternative to Make for executing project tasks.

The tool solves the problem of managing and running project-specific commands without the complexity of Make's build-system semantics. Just reads a justfile containing recipes—named command sequences—and executes them on demand. Unlike Make, which interprets recipes as build targets with implicit file-dependency tracking, Just treats recipes as straightforward task definitions. This approach eliminates unexpected behavior from Make's file-modification-time logic and reduces cognitive overhead for developers who simply want to run a sequence of shell commands under a memorable name.

Just suits projects that need a lightweight task runner without committing to Make's paradigm. It works well for any codebase where developers benefit from documenting and centralizing common operations—building, testing, deploying, or linting—in a single file. The tool is particularly valuable in polyglot projects where Make feels overengineered or where team members lack familiarity with Make's syntax. Projects already using Make and satisfied with it have no pressing reason to migrate, but teams starting fresh or frustrated with Make's implicit rules will find Just more predictable and easier to reason about.

The project maintains steady activity with regular commits addressing bug fixes, feature requests, and documentation improvements. Development is responsive to user-reported issues and incorporates community feedback into releases. The codebase shows consistent refinement of the justfile parser and recipe execution logic, with attention to edge cases and cross-platform compatibility. The maintainer actively engages with the issue tracker and merges pull requests that align with the project's scope, keeping the tool focused on its core mission rather than expanding into unrelated functionality.