CLI

QuantumDeploy from your terminal

Analyse repos, generate infrastructure, and download artifacts — all from the command line. Integrates with CI/CD pipelines.

macOS / Linux
Auto-detects OS and architecture
curl -sSL https://quantumdeploy.ai/install.sh | sh
Homebrew
macOS and Linux via Homebrew
brew install quantumdeploy/tap/qd
Go Install
Requires Go 1.25+
go install github.com/quantumlayer-core/quantumdeploy/cmd/qd@latest

Or download directly from GitHub Releases

GitHub Releases

Usage

terminal
$
qd auth login

Store your API key

$
qd analyse https://github.com/gin-gonic/gin

Analyse a repository

$
qd generate qd-abc123 --cloud azure

Generate infrastructure

$
qd generate qd-abc123 --cloud aws --output ./infra/

Download to disk

$
qd list

List your analyses

$
qd artifacts dep-abc --download

Download deployment files

$
qd analyse https://github.com/org/repo --fail-below 70

CI gate

$
qd analyse https://github.com/org/repo --json

JSON output for pipelines

CI/CD Integration

GitHub Actions
- name: Install QuantumDeploy CLI
  run: curl -sSL https://quantumdeploy.ai/install.sh | sh

- name: Analyse repository
  run: qd analyse ${{ github.server_url }}/${{ github.repository }} --fail-below 70
  env:
    QD_API_KEY: ${{ secrets.QD_API_KEY }}

- name: Generate infrastructure
  run: qd generate ${{ steps.analyse.outputs.id }} --cloud azure --output ./infra/
  env:
    QD_API_KEY: ${{ secrets.QD_API_KEY }}