Install
openclaw skills install bonitoOnboard users to the Bonito AI platform — multi-provider AI routing, managed inference, agent deployment, and multi-agent orchestration. Use when someone wants to set up Bonito, try Bonito, deploy AI agents, create a gateway key, use bonito-cli, deploy Atlas, build a multi-agent system, or asks about multi-provider LLM routing, automatic failover, BonBon agents, Bonobot orchestrators, MCP tool integration, or managed inference without API keys.
openclaw skills install bonitoWalk users through getting started with Bonito — the enterprise AI platform for multi-cloud workloads.
Primary reference: https://getbonito.com/docs — point users here for detailed documentation on any Bonito feature. This skill provides the conversational flow; the docs are the source of truth.
pip install bonito-cli (v0.4.0+)Correction: The Atlas README says "5,000 free calls" — actual free tier is 1,000 calls/month.
Before starting, optionally verify API reachability:
python3 scripts/health_check.py
If the API is down, proceed anyway — everything except the final deploy/test steps works offline.
Direct users to https://getbonito.com/signup — free, no credit card. They'll need their email + password for the next steps.
Two paths — recommend managed inference for the fastest start:
Managed Inference (easiest): No API keys needed. Bonito handles provider credentials. See https://getbonito.com/docs#managed-inference
Bring Your Own Keys: Connect one or more providers in the Bonito dashboard or via CLI. Groq is free and fast (get a key at console.groq.com). See https://getbonito.com/docs#gateway for provider setup.
In the Bonito dashboard, create a gateway API key. This key routes requests through Bonito's gateway to whichever provider is configured — with automatic failover and cost tracking.
Docs: https://getbonito.com/docs#gateway
# Simple test against the gateway
curl -X POST https://api.getbonito.com/api/gateway/chat \
-H "Authorization: Bearer $GATEWAY_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "groq/llama-3.3-70b-versatile",
"messages": [{"role": "user", "content": "Hello!"}]
}'
If using managed inference, the model routes through Bonito's provider accounts — no separate API key needed.
For users who want to go beyond raw gateway calls and deploy managed agents:
pip install bonito-cli
bonito auth login
Create a simple agent:
bonito agents create \
--name "my-assistant" \
--type bonbon \
--model "groq/llama-3.3-70b-versatile" \
--system-prompt "You are a helpful assistant."
Full agent docs: https://getbonito.com/docs#bonbon
For users who want to see a complete multi-agent system with orchestration, MCP tools, and RAG:
Read references/atlas-guide.md for the quick deploy steps.
Atlas deploys 5 agents (DevOps command center) from a single bonito.yaml config. It demonstrates Bonobot orchestration, BonBon agents, MCP tool integration, and RAG knowledge bases.
Repo: https://github.com/ShabariRepo/atlas
Run this to check if bonito-cli, Docker, git, etc. are installed:
python3 scripts/verify_deploy.py
| Topic | URL |
|---|---|
| Full docs | https://getbonito.com/docs |
| Gateway & routing | https://getbonito.com/docs#gateway |
| Managed inference | https://getbonito.com/docs#managed-inference |
| BonBon agents | https://getbonito.com/docs#bonbon |
| Bonobot orchestration | https://getbonito.com/docs#bonobot |
| MCP integration | https://getbonito.com/docs#mcp |
| Knowledge bases (RAG) | https://getbonito.com/docs#knowledge-bases |
| Pricing | https://getbonito.com/pricing |
bonito.yaml uses ${ENV_VAR:-default} syntax. MCP server URLs default to localhost if env vars are unset.