DevTrack CLI

The lightweight binary that monitors your git activity and routes work updates to your project management system.

checking latest version…
🐧
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 .zip
or use the PowerShell one-liner below

Install with one command

bash / zsh — macOS & Linux
$ curl -fsSL https://devtrack.cloud/install.sh | sh
# Installs to ~/.local/bin/devtrack · add to PATH if needed

Install on Windows (PowerShell)

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

Manual install

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

Everything is in the single binary

DevTrack is a single self-contained binary. There is no separate server to install. The setup wizard provisions a local database (via Docker), configures your AI provider, and wires up your project management integrations — all in one step.

1

Install

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

macOS · Linux · Windows Docker (auto-installed prompt) Ollama (optional, for local AI)
2

Run the setup wizard

The wizard detects your environment, provisions MongoDB + Redis via Docker if needed, and writes a .env file with all required settings.

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 →