Installation
Get the world's first agent-native runtime running in under 2 minutes.
Why Consonant?
Unlike local Python scripts, Consonant gives your agents a production-grade home. You get auto-scaling, distributed tracing, and hard resource isolation from the very first command.
Step 1: Install the CLI
The `cons` CLI is your gateway to the agent cluster. It handles everything from deployment to log tailing and policy management.
curl -sL https://get.consonant.ai/install | bashStep 2: Initialize Your Cluster
Consonant runs wherever Kubernetes runs. For your first time, we recommend a local developer setup (Kind, Minikube, or Docker Desktop).
Local Quickstart
cons init --localThis single command installs the Manager, Planner, and Observability stack into the consonant-system namespace.
Production Installation
For EKS, GKE, or AKS clusters, use our official Helm chart for fine-grained control over resource limits and ingress.
helm repo add consonant https://charts.consonant.ai
helm repo update
helm install consonant consonant/control-plane \
--namespace consonant-system \
--create-namespaceStep 3: Verify & Access
Ensure your control plane is healthy before deploying your first agent.
cons statusSuccess: Your local cluster is ready. Consonant is now watching for agent manifests.