List Coder CLI

The terminal-native edition of List Coder — a blazing-fast AI coding agent that runs entirely in your terminal.

List Coder CLI is the terminal-native edition of List Coder. It is a blazing-fast AI coding agent that reads, writes, and refactors code right from your terminal on Windows, macOS, and Linux.

Built on the MIMOCODE open-source foundation, the CLI keeps all the power of the List Coder ecosystem without ever leaving the command line.

Features

  • Terminal-Native TUI — A rich terminal user interface with zero GUI overhead
  • Read & Write Code — Edit files, run commands, and manage Git from the terminal
  • Multi-Model Support — Connect to any mainstream LLM provider API
  • Persistent Memory — Keeps deep context about your project across sessions
  • Autonomous Agents — Plan, execute, and verify coding tasks end-to-end
  • Subagent Orchestration — Spawn child agents for parallel, isolated work
  • MCP & Plugins — Full Model Context Protocol and plugin support
  • Auto-Update — Self-updates in the background with zero manual steps

Installation

List Coder CLI is a standalone binary. Install it with a single command on any platform.

Windows (PowerShell)

irm https://github.com/legitey01/List-Coder-CLI-Realeses/releases/latest/download/install.ps1 | iex

Or download the installer .exe directly.

macOS / Linux (script)

curl -fsSL https://github.com/legitey01/List-Coder-CLI-Realeses/releases/latest/download/install.sh | bash

npm (all platforms)

npm install -g @listcoder/cli

Homebrew (Linux)

brew tap legitey01/homebrew-tap
brew install listcoder

Direct binary (Linux)

curl -fL -o listcoder https://github.com/legitey01/List-Coder-CLI-Realeses/releases/latest/download/listcoder-x86_64-unknown-linux-gnu
chmod +x listcoder
sudo mv listcoder /usr/local/bin/

Debian / Ubuntu (.deb) and Fedora / RHEL (.rpm)

  • Debian/Ubuntu: listcoder_<version>_amd64.deb
  • Fedora/RHEL: listcoder-<version>-1.x86_64.rpm

Both are available on the releases page.

Quick Start

# Start the agent
listcoder

# Check the installed version
listcoder --version

# Update to the latest version
listcoder upgrade

Auto-Update

The CLI checks the GitHub releases page every 30 seconds and applies updates in the background. When a new patch is applied you'll see:

Patch update applied: vX. Restart to use the new version.

Disable auto-update by setting autoupdate: false in the config.

System Requirements

PlatformRequirements
WindowsWindows 10 x64 or later
macOSmacOS 12+
LinuxAny modern distro (x86_64)

Terminal-First:

Prefer a graphical editor? List Coder CLI pairs perfectly with List Coder IDE and List Coder Omni — use the CLI for scripting, CI/CD, and remote work, and the IDE when you want a full visual workspace.