Get started with Clanker in minutes—from first query to infrastructure insights
This guide will get you from zero to your first working query in minutes. We’ll set up a minimal configuration and run your first infrastructure query.
Clanker maintains conversation context, so you can ask follow-up questions:
# Initial queryclanker ask "show me the nginx deployment"# Follow-up (no need to repeat context)clanker k8s ask "now show me its logs"clanker k8s ask "how many replicas does it have?"
If you have multiple AI providers configured, switch between them:
# Use OpenAI for this queryclanker ask --ai-profile openai "what lambdas do we have?"# Use Gemini for this queryclanker ask --ai-profile gemini-api "show me ec2 instances"
You can override the default AWS profile for specific queries:
# Use a different profileclanker ask --profile production "what ec2 instances are running?"# Force AWS contextclanker ask --aws --profile dev "list all lambda functions"
Deep dive into all configuration options, AI providers, and multi-cloud setup
AWS commands
Learn about AWS-specific features and the maker mode for infrastructure changes
Kubernetes
Explore Kubernetes cluster management, deployments, and troubleshooting
Debugging
Debug mode and troubleshooting
Clanker is read-only by default. To make infrastructure changes, you need to use --maker mode, which generates reviewable plans before applying changes.