Prerequisites
- Manual
- Agentic
Start Dash
Load sample data and knowledge
generate_data.py seeds the SaaS dataset (customers, subscriptions, invoices, usage, support tickets). load_knowledge.py loads the table metadata, query patterns, and business rules in knowledge/.Connect to AgentOS UI
Open os.agno.com and log in. Click Add OS, choose Local, enterhttp://localhost:8000, click Connect.
Try a question:
“What’s our current MRR?”
“Which plan has the highest churn rate?”
“Show me revenue trends by plan over the last 6 months.”Dash routes through its team. The Analyst introspects the schema and writes read-only SQL. The Engineer builds reusable views in the agent-managed
dash schema. The Leader coordinates and answers.
What you have now
| Component | Detail |
|---|---|
| Dash team | Analyst (read-only public), Engineer (writes to dash schema), Leader (coordinator) |
public schema | Synthetic SaaS data: customers, subscriptions, plan_changes, invoices, usage_metrics, support_tickets |
dash schema | Agent-managed views and summary tables. Empty until the Engineer builds something. |
| Knowledge | Table metadata, query patterns, and business rules from knowledge/. Powers the Analyst’s grounding. |
| Learnings | Error patterns and fixes captured by Agno’s Learning Machine as Dash works. |