docs-mintlify/admin/ai/multi-agent.mdx
Every Cube deployment ships with a single agent by default — see the Overview for the standard configuration. For more advanced setups, you can configure multiple agents within the same deployment, each with its own model, accessible views, rules, and certified queries.
Multi-agent is useful when:
A multi-agent setup introduces one new concept on top of the single-agent model: spaces.
This means you choose a space's boundary based on what context should be shared. Two agents serving the same team usually live in one space; agents serving different domains (Sales vs. Marketing) live in different spaces so their context stays separate.
flowchart LR
classDef deployment fill:#4f46e5,stroke:#3730a3,color:#fff
classDef space fill:#e0e7ff,stroke:#6366f1,color:#1e1b4b
classDef agent fill:#10b981,stroke:#047857,color:#fff
classDef resource fill:#fef3c7,stroke:#d97706,color:#78350f
D[Deployment]:::deployment
SA[Space
sales-analytics]:::space
SM[Space
marketing-analytics]:::space
SAR[Rules]:::resource
SAC[Certified queries]:::resource
SAM[Memories]:::resource
A1[Agent
sales-assistant]:::agent
A2[Agent
sales-reporter]:::agent
SMR[Rules]:::resource
SMC[Certified queries]:::resource
SMM[Memories]:::resource
A3[Agent
marketing-analyst]:::agent
D --> SA
D --> SM
SA --- SAR
SA --- SAC
SA --- SAM
SA --> A1
SA --> A2
SM --- SMR
SM --- SMC
SM --- SMM
SM --> A3
In the single-agent setup, there is an implicit auto space that holds all rules, certified queries, and memories — you don't need to think about it. In a multi-agent setup, you define spaces explicitly and attach rules and certified queries to specific spaces.
The agents/ file structure is the same. What's different is how agents/config.yml is shaped:
name and an optional description, in addition to the standard agent properties (llm, runtime, accessible_views, memory_mode, etc.).spaces array defines the contexts agents operate in. Each space gets a unique name.space property in the frontmatter of each rule or certified query Markdown file to attach it to a specific space.Replace the flat root-level agent properties with an agents array:
# agents/config.yml
agents:
- name: sales-assistant # Required
description: "AI assistant for sales analytics"
space: sales-analytics # Required: reference to a space
llm: claude_4_6_sonnet
accessible_views:
- orders_view
- customers_view
memory_mode: user
- name: marketing-analyst # Required
description: "AI assistant for marketing analytics"
space: marketing-analytics # Required
llm: gpt_5
The properties available on each agent are the same as in the single-agent setup, plus:
| Property | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Unique identifier for the agent. |
description | string | No | Human-readable description. |
space | string | Yes | Name of the space this agent belongs to. |
A space is the context an agent operates in. Spaces own the rules, certified queries, and memories that the agents inside them share. Define spaces alongside agents:
# agents/config.yml
spaces:
- name: sales-analytics # Required
description: "Space for sales team analytics and reporting"
- name: marketing-analytics # Required
description: "Space for marketing team analytics"
| Property | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Unique identifier for the space. |
description | string | No | Human-readable description. |
Each agent must reference exactly one space via its space property. Multiple agents can share the same space and inherit its rules, certified queries, and memories.
In the single-agent setup, rules and certified queries belong to the implicit auto space. In a multi-agent setup, you must attach each rule and certified query to a specific space using the space property in the Markdown frontmatter:
<!-- agents/rules/fiscal-year.md -->
---
space: sales-analytics
type: always
---
Always use fiscal year starting April 1st when analyzing dates.
<!-- agents/certified_queries/quarterly-revenue.md -->
---
space: sales-analytics
description: "Apply when the user asks about quarterly revenue"
user_request: "What is the revenue by quarter?"
---
SELECT
DATE_TRUNC('quarter', order_date) AS quarter,
SUM(amount) AS revenue
FROM orders
WHERE status != 'cancelled'
GROUP BY 1
ORDER BY 1
You can also organize rules and certified queries into space-named subdirectories. Files placed under agents/rules/<space-name>/ or agents/certified_queries/<space-name>/ are attached to that space automatically — no space frontmatter required.
# agents/config.yml
spaces:
- name: sales-analytics
description: "Space for sales team analytics and reporting"
- name: marketing-analytics
description: "Space for marketing team analytics"
agents:
- name: sales-assistant
description: "AI assistant for sales analytics and reporting"
space: sales-analytics
llm: claude_4_6_sonnet
accessible_views:
- orders_view
- customers_view
- products_view
memory_mode: user
- name: marketing-analyst
description: "AI assistant for marketing analytics"
space: marketing-analytics
llm: gpt_5
memory_mode: user