DevTrack CLI

Single self-contained binary. Works standalone for git tracking, smart commits, and PM sync — add the optional Python server for AI work updates, reporting, and personalization.

Latest: v3.0.10
🐧
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

Two modes. One binary.

The binary works standalone — no Docker, no Python server required. Run devtrack setup and choose your mode: Standalone for git tracking, smart commits, and PM sync; or Full to additionally run the Python server locally for AI work updates, reporting, and personalization.

1

Install

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

macOS · Linux · Windows Python server (optional, for AI features) Ollama (optional, for local AI)
2

Run the setup wizard

The wizard detects your environment, selects a deployment mode, and writes a .env file. Standalone mode requires no extra services. Full mode optionally starts or connects to a Python AI server.

bash / PowerShell
$ devtrack setup
 
# choose mode, LLM provider, and PM integration
# Docker is started automatically if MongoDB/Redis are missing
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 →