Latest public CLI: v0.1.3
May 22, 2026
Downloads open on itch.io. Pay what you want (including free).
Installers are available on itch.io for:
Pick the block for your shell. Each example uses a bin folder under your
profile or home directory.
Put pixel-art-lint.exe in %USERPROFILE%\bin (create the folder if needed).
# 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"
)Put pixel-art-lint.exe in %USERPROFILE%\bin (create the folder if needed).
REM Current session
set PATH=%PATH%;%USERPROFILE%\bin
REM Persist (User PATH) — run once, then open a new terminal
setx PATH "%PATH%;%USERPROFILE%\bin"Put the pixel-art-lint binary in ~/bin (create the folder if needed).
mkdir -p ~/bin
# move your downloaded binary into ~/bin, then:
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc
source ~/.bashrcPut the pixel-art-lint binary in ~/bin (create the folder if needed).
mkdir -p ~/bin
# move your downloaded binary into ~/bin, then:
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.zshrc
source ~/.zshrcPut the pixel-art-lint binary in ~/bin (create the folder if needed).
mkdir -p ~/bin
# move your downloaded binary into ~/bin, then:
fish_add_path ~/binOpen a new terminal and run pixel-art-lint --version to confirm.