One-line installers for Cloudanix products. Audit before piping to bash — the scripts and their full git history are public.
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
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.