{"id":49038482,"url":"https://github.com/nickhartjes/lazyjust","last_synced_at":"2026-04-19T14:00:46.341Z","repository":{"id":352406376,"uuid":"1215024799","full_name":"nickhartjes/lazyjust","owner":"nickhartjes","description":"A lazy TUI for just — browse, search, and run recipes without memorizing commands. Built with Bubble Tea.","archived":false,"fork":false,"pushed_at":"2026-04-19T13:22:29.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-19T13:28:01.765Z","etag":null,"topics":["bubbletea","catppuccin","cli","command-runner","go","just","justfile","terminal","tui"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nickhartjes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-19T11:31:22.000Z","updated_at":"2026-04-19T13:22:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/nickhartjes/lazyjust","commit_stats":null,"previous_names":["nickhartjes/lazyjust"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/nickhartjes/lazyjust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickhartjes%2Flazyjust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickhartjes%2Flazyjust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickhartjes%2Flazyjust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickhartjes%2Flazyjust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nickhartjes","download_url":"https://codeload.github.com/nickhartjes/lazyjust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickhartjes%2Flazyjust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009239,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bubbletea","catppuccin","cli","command-runner","go","just","justfile","terminal","tui"],"created_at":"2026-04-19T14:00:27.789Z","updated_at":"2026-04-19T14:00:46.327Z","avatar_url":"https://github.com/nickhartjes.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lazyjust\n\nA modern TUI frontend for [just](https://github.com/casey/just) — browse and run recipes without memorizing commands.\n\n```\n╭─ lazyjust ─────────────────────────────────────────────────────╮\n│                                                                │\n│  ╭─ Recipes ──────────────╮  ╭─ Output ────────────────────╮  │\n│  │                         │  │                              │  │\n│  │  ┃ General              │  │  📋 build                    │  │\n│  │  ● build                │  │                              │  │\n│  │    Build the project    │  │    Build the project         │  │\n│  │                         │  │                              │  │\n│  │  ○ test                 │  │    go build -o lazyjust .     │  │\n│  │    Run all tests        │  │                              │  │\n│  │                         │  │                              │  │\n│  │  ┃ docker               │  │                              │  │\n│  │  ○ docker-up            │  │                              │  │\n│  │    Start containers     │  │                              │  │\n│  │                         │  │                              │  │\n│  ╰─────────────────────────╯  ╰──────────────────────────────╯  │\n│                                                                │\n│  📂 backend/justfile  ╱  4 recipes  ╱  ↑↓ navigate  ╱  ⏎ run  │\n╰────────────────────────────────────────────────────────────────╯\n```\n\n## Features\n\n- **Split-panel layout** — recipes on the left, output on the right\n- **Recipe groups** — color-coded headers from `[group]` attributes\n- **Body preview** — see recipe commands before running\n- **Parameter input** — modal form for recipes with parameters, with defaults pre-filled\n- **Confirm support** — `[confirm]` recipes prompt before execution\n- **Real-time output** — streaming stdout/stderr with animated spinner\n- **Search** — fuzzy filter recipes with `/`\n- **Aliases \u0026 dependencies** — shown inline next to recipe names\n- **Variadic params** — `*args` and `+args` handled in the input modal\n- **ANSI color passthrough** — colored output from recipes preserved\n- **Catppuccin Mocha** — soft dark theme with polished styling\n\n## Install\n\n### Homebrew\n\n```bash\nbrew tap nickhartjes/tap\nbrew install lazyjust\n```\n\n### From source\n\n```bash\ngo install github.com/nickhartjes/lazyjust@latest\n```\n\n### Build locally\n\n```bash\ngit clone https://github.com/nickhartjes/lazyjust.git\ncd lazyjust\ngo build -o lazyjust .\n```\n\n### From releases\n\nDownload a binary from the [releases page](https://github.com/nickhartjes/lazyjust/releases).\n\n## Usage\n\n```bash\n# Run in any directory with a justfile\nlazyjust\n\n# Specify a justfile explicitly\nlazyjust --justfile path/to/justfile\n\n# Version\nlazyjust --version\n\n# Shell completions (see below)\nlazyjust --completions zsh\nlazyjust --completions bash\nlazyjust --completions fish\n```\n\n### Shell completions setup\n\n**Zsh** — add to your `~/.zshrc`:\n\n```zsh\n# lazyjust completions\neval \"$(lazyjust --completions zsh)\"\n```\n\nOr, to load from a file (faster startup):\n\n```zsh\n# Generate once\nlazyjust --completions zsh \u003e ~/.zfunc/_lazyjust\n\n# Add to ~/.zshrc (before compinit)\nfpath=(~/.zfunc $fpath)\nautoload -Uz compinit \u0026\u0026 compinit\n```\n\n**Bash** — add to your `~/.bashrc`:\n\n```bash\n# lazyjust completions\neval \"$(lazyjust --completions bash)\"\n```\n\n**Fish** — run once:\n\n```fish\nlazyjust --completions fish \u003e ~/.config/fish/completions/lazyjust.fish\n```\n\n## Keybindings\n\n| Key | Action |\n|-----|--------|\n| `↑`/`↓` or `j`/`k` | Navigate recipes (or scroll output when focused) |\n| `Enter` | Run selected recipe |\n| `/` | Search/filter recipes |\n| `Tab` | Switch focus between recipes and output panel |\n| `Esc` | Cancel running recipe / close modal / clear search |\n| `y`/`n` | Confirm/cancel `[confirm]` recipes |\n| `q` | Quit |\n| `Ctrl+C` | Force quit |\n\n## Justfile discovery\n\n`lazyjust` finds your justfile the same way `just` does:\n\n1. Looks for `justfile`, `Justfile`, or `.justfile` in the current directory\n2. Walks up parent directories until one is found\n3. Use `--justfile` to override\n\n## Requirements\n\n- [just](https://github.com/casey/just) must be installed and on your `$PATH`\n- A terminal with true color support (for the Catppuccin theme)\n\n## Development\n\n```bash\n# Run all checks\njust check\n\n# Build with version info\njust build-release\n\n# Run the TUI on its own justfile\njust run\n\n# Test goreleaser locally\njust release-snapshot\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickhartjes%2Flazyjust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnickhartjes%2Flazyjust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickhartjes%2Flazyjust/lists"}