Installation
Prerequisites
Section titled “Prerequisites”- Go 1.26+ (for building from source or
go install) - An Azure DevOps organization and a Personal Access Token (PAT)
go install (Recommended)
Section titled “go install (Recommended)”The fastest way to install adtk:
go install github.com/zach-snell/adtk/cmd/adtk@latestThis installs the adtk binary to $GOPATH/bin (or $HOME/go/bin by default). Ensure this directory is in your PATH.
Build from Source
Section titled “Build from Source”git clone https://github.com/zach-snell/adtk.gitcd adtk./install.shThe install script builds the binary with version info embedded and places it in ~/.local/bin/. Make sure this directory is in your PATH:
export PATH="$HOME/.local/bin:$PATH"Manual Build
Section titled “Manual Build”If you prefer to control the build process:
git clone https://github.com/zach-snell/adtk.gitcd adtkgo build -o adtk ./cmd/adtkMove the resulting binary anywhere on your PATH.
Pre-built Binaries
Section titled “Pre-built Binaries”Pre-built binaries for all platforms are available on the GitHub Releases page.
| Platform | Architecture | Filename |
|---|---|---|
| Linux | amd64 | adtk-linux-amd64 |
| Linux | arm64 | adtk-linux-arm64 |
| macOS | amd64 (Intel) | adtk-darwin-amd64 |
| macOS | arm64 (Apple Silicon) | adtk-darwin-arm64 |
| Windows | amd64 | adtk-windows-amd64.exe |
# Example: download for macOS Apple Siliconcurl -LO https://github.com/zach-snell/adtk/releases/latest/download/adtk-darwin-arm64chmod +x adtk-darwin-arm64mv adtk-darwin-arm64 ~/.local/bin/adtkVerify Installation
Section titled “Verify Installation”adtk --versionNext Steps
Section titled “Next Steps”- Configuration — Set up authentication and MCP client config