multi-agent-genie-orchestration

Orchestrate multi-agent queries across Genie Spaces with LangGraph.

5|6|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/databricks-solutions/vibe-coding-workshop-template --skill multi-agent-genie-orchestration
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: multi-agent-genie-orchestration
Source: https://github.com/databricks-solutions/vibe-coding-workshop-template/tree/main/data_product_accelerator/skills/genai-agents/05-multi-agent-genie-orchestration
Command: npx skills add https://github.com/databricks-solutions/vibe-coding-workshop-template --skill multi-agent-genie-orchestration

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill streamlines the process of building sophisticated multi-agent systems that can intelligently query and synthesize information from various data domains.

Core Features & Use Cases

  • Intent Classification: Routes user queries to the most relevant Genie Spaces.
  • Parallel Query Execution: Queries multiple Genie Spaces simultaneously for faster results.
  • Cross-Domain Synthesis: Combines information from different domains into a single, coherent answer.
  • CRITICAL NO LLM Fallback: Ensures data integrity by preventing LLMs from generating fake data when queries fail.
  • Use Case: A user asks, "What is our current cloud spend and the status of our critical jobs?" This Skill will classify the intent, query both the 'billing' and 'jobs' Genie Spaces in parallel, and then synthesize the findings into a single response.

Quick Start

Use the multi-agent-genie-orchestration skill to classify the intent of the query "Show me billing costs and job performance metrics".

Frequently Asked Questions about multi-agent-genie-orchestration

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate multiple Genie Spaces to answer cross-domain queries?

Multi-agent orchestration routes user queries by classifying intent, querying relevant Genie Spaces in parallel, and synthesizing the results into a single coherent answer using LangGraph and the Genie Conversation API.

How does intent classification work for routing queries to Genie Spaces?

Intent classification analyzes user queries to determine the relevant data domains, routing each request to the appropriate domain-specific Genie Spaces for targeted data retrieval and parallel execution.

How do I prevent LLMs from generating fake data when domain queries fail?

The NO LLM fallback pattern ensures data integrity by preventing the model from hallucinating results when Genie Space queries fail, returning failures or partial data instead of fabricated information.

Can I execute parallel queries across different Genie Spaces using LangGraph?

Yes, this multi-agent orchestration pattern uses LangGraph to execute parallel queries across multiple domain-specific Genie Spaces, enabling faster cross-domain data retrieval and comprehensive synthesis.

What is the best way to combine billing and job performance metrics in a single response?

Cross-domain synthesis combines information from separate Genie Spaces, such as billing and jobs, by classifying the intent, querying both domains in parallel, and synthesizing the findings into one response.

Are there limitations to using multi-agent orchestration with Genie Spaces?

The primary limitation involves query failures within Genie Spaces, which the NO LLM fallback pattern addresses by refusing to generate fabricated data, ensuring only accurate retrieved data is synthesized.