Cloudanix Installers

One-line installers for Cloudanix products. Audit before piping to bash — the scripts and their full git history are public.

Cloudanix Guard

Pre-hook firewall for coding agents (Claude Code, Codex CLI, Kiro) — inspects prompts and tool calls for secrets, PII, and sensitive files before they reach the LLM.

curl -fsSL https://install.cloudanix.com/cloudanix-guard | bash
Options

Pin a specific version:

curl -fsSL https://install.cloudanix.com/cloudanix-guard \
  | CLOUDANIX_VERSION="0.1.1" bash

Env vars go on the bash side of the pipe, not on curl. (Vars set before curl don't propagate through the pipe — a classic curl-pipe-bash gotcha.)

The installer downloads the wheel from a public Cloudanix artifact mirror and verifies its SHA256 before pip install. No GitHub token required.

Reading before you run. Every installer here is an MIT-licensed bash script you can review. Source: github.com/Cloudanix/install-scripts. Each script tells you exactly what it will do and prints a summary before any destructive operation.