DOWNLOAD & RELEASES

Latest public CLI: v0.1.3

May 22, 2026

Downloads open on itch.io. Pay what you want (including free).

Version roadmap

INSTALLATION

Installers are available on itch.io for:

  • Windows
  • macOS (Apple Silicon & Intel)
  • Linux

Add to PATH

Pick the block for your shell. Each example uses a bin folder under your profile or home directory.

Windows PowerShell

Put pixel-art-lint.exe in %USERPROFILE%\bin (create the folder if needed).

PowerShell
# Current session
$env:Path += ";$env:USERPROFILE\bin"

# Persist for your user account (new terminals)
[Environment]::SetEnvironmentVariable(
  "Path",
  [Environment]::GetEnvironmentVariable("Path", "User") + ";$env:USERPROFILE\bin",
  "User"
)

Windows Command Prompt

Put pixel-art-lint.exe in %USERPROFILE%\bin (create the folder if needed).

cmd.exe
REM Current session
set PATH=%PATH%;%USERPROFILE%\bin

REM Persist (User PATH) — run once, then open a new terminal
setx PATH "%PATH%;%USERPROFILE%\bin"

macOS & Linux Bash

Put the pixel-art-lint binary in ~/bin (create the folder if needed).

bash
mkdir -p ~/bin
# move your downloaded binary into ~/bin, then:
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

macOS & Linux Zsh

Put the pixel-art-lint binary in ~/bin (create the folder if needed).

zsh
mkdir -p ~/bin
# move your downloaded binary into ~/bin, then:
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

macOS & Linux fish

Put the pixel-art-lint binary in ~/bin (create the folder if needed).

fish
mkdir -p ~/bin
# move your downloaded binary into ~/bin, then:
fish_add_path ~/bin

Open a new terminal and run pixel-art-lint --version to confirm.