DevTrack CLI

Single Go binary for local monitoring, queueing, MCP, scheduling, and connectors. Managed mode brings the PostgreSQL-backed Python intelligence layer online in the background.

Latest: v3.1.1
🐧
Linux
x86_64 · amd64
↓ Download .tar.gz
🍎
macOS
Apple Silicon · arm64
↓ Download .tar.gz
🍎
macOS
Intel · amd64
↓ Download .tar.gz
🪟
Windows
x86_64 · amd64
↓ Download .exe
or use the PowerShell one-liner below

Install with one command

bash / zsh — macOS & Linux
$ curl -fsSL https://devtrack.cloud/install.sh | sh
# Auto-detects OS & arch · installs to ~/.local/bin/devtrack

Install on Windows (PowerShell)

PowerShell — Windows
> irm https://devtrack.cloud/install.ps1 | iex
# Installs to %LOCALAPPDATA%\DevTrack · adds to user PATH automatically

Manual install

bash / zsh
# 1 — get the latest version tag
$ VER=$(curl -sf 'https://api.github.com/repos/sraj0501/Devtrack_/releases/latest' | grep -o '"tag_name":"[^"]*"' | sed 's/"tag_name":"//;s/"//')
# 2 — download and extract (replace linux_amd64 with your platform)
$ curl -fsSL "https://github.com/sraj0501/Devtrack_/releases/download/${VER}/devtrack_linux_amd64.tar.gz" | tar xz
# 3 — move into PATH
$ mv devtrack ~/.local/bin/
# 4 — run setup wizard
$ devtrack setup

Three modes. One binary.

The binary works immediately for Go-native capabilities without Python. Run devtrack setup and choose Managed for the local Python intelligence layer, Lightweight for Go-only operation, or External for a separately operated server. Managed Python requires PostgreSQL; the Go client remains SQLite-only.

1

Install

Download the binary for your platform above, or use the one-liner. No other dependencies required for basic use.

macOS · Linux · Windows PostgreSQL (required for managed Python) Ollama (optional, for local AI)
2

Run the setup wizard

The wizard writes and registers the runtime environment immediately. Managed dependencies and the optional model continue bootstrapping in the background; follow progress with devtrack doctor.

bash / PowerShell
$ devtrack setup
 
# choose mode, LLM provider, and PM integration
# Go state is local SQLite; managed Python uses PostgreSQL
3

Start the daemon

bash / PowerShell
$ devtrack start
✓ Daemon started
 
$ devtrack status
✓ running · monitoring 1 workspace
4

Optional: local AI with Ollama

Enhance commit messages and run git-sage entirely offline. No API keys, no data leaving your machine.

bash
# install Ollama
$ curl -fsSL https://ollama.com/install.sh | sh
# pull a model
$ ollama pull llama3.2
# set in your .env
LLM_PROVIDER=ollama
GIT_SAGE_DEFAULT_MODEL=llama3.2
Full configuration reference, troubleshooting guide, and all .env variables are in the Documentation →