
What is klaw?
klaw is enterprise AI agent orchestration — like kubectl, but for AI agents.Quick Start
Install and run your first agent in 5 minutes
Core Concepts
Understand agents, namespaces, and tools
Slack Integration
Control agents from Slack
CLI Reference
kubectl-style command reference
The Problem
You’re running AI agents in production:- Lead Scorer — analyzes CRM leads every hour
- Competitor Watch — monitors competitor websites daily
- Ticket Handler — auto-responds to support tickets
- Report Generator — creates weekly analytics reports
| Challenge | Current State | With klaw |
|---|---|---|
| Visibility | ”Is the agent running?” | klaw get agents, klaw logs |
| Isolation | Sales accessing support secrets | Namespaces with scoped permissions |
| Scheduling | Messy cron jobs, Lambda | klaw cron create — built-in |
| Scaling | Manual server provisioning | klaw node join — auto-dispatch |
| Debugging | grep through CloudWatch | klaw logs agent --follow |
| Deployment | Complex setup | Single binary, one command |
The Kubernetes Parallel
If you know kubectl, you already know klaw:| You Want To… | kubectl | klaw |
|---|---|---|
| List workloads | kubectl get pods | klaw get agents |
| Inspect | kubectl describe pod | klaw describe agent |
| View logs | kubectl logs | klaw logs |
| Deploy | kubectl apply -f | klaw apply -f |
| Isolate | Namespaces | Namespaces |
| Schedule | CronJob | klaw cron |
| Scale out | Add nodes | klaw node join |
Key Features
kubectl-style CLI
kubectl-style CLI
Familiar commands:
klaw get, klaw describe, klaw logs, klaw apply. If you know Kubernetes, you know klaw.Slack Control
Slack Control
Manage agents from Slack.
@klaw status, @klaw run agent, @klaw logs. Your AI command center.Namespaces & Isolation
Namespaces & Isolation
Isolate agents by team. Sales can’t access support’s secrets. Each namespace has its own tools and permissions.
Built-in Scheduling
Built-in Scheduling
klaw cron create — no external scheduler needed. Run agents hourly, daily, weekly.Distributed Mode
Distributed Mode
Scale from laptop to cluster. Controller dispatches tasks to worker nodes automatically.
300+ LLM Models
300+ LLM Models
Claude, GPT-4, Gemini, Llama, and 300+ more through a single API. Swap models without code changes.
Single Binary
Single Binary
One ~20MB binary with zero dependencies. No Python, no Node.js. Just
klaw.Architecture Overview
Quick Example
What’s Next?
Quick Start
Install klaw and run your first agent
Agents
Learn how agents work
Namespaces
Isolate agents by team
Slack Integration
Control agents from Slack
