routing

Classifies user requests and routes them to the most suitable specialized agent.

1|Updated Feb 11, 2026
One-click install
npx skills add https://github.com/LauraFlorentin/skills-marketplace --skill routing-lauraflorentin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: routing
Source: https://github.com/LauraFlorentin/skills-marketplace/tree/main/agentic-skills/skills/routing
Command: npx skills add https://github.com/LauraFlorentin/skills-marketplace --skill routing-lauraflorentin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Routing acts as the traffic controller for an agentic system, reducing coupling by classifying an input request and delegating it to the most suitable specialized handler.

Core Features & Use Cases

  • Classify intent and route to the appropriate agent based on task type and context.
  • Enable modular, scalable workflows by separating concerns among routers, responders, and tool handlers.
  • Provide safe fallbacks and clear task schemas for unknown intents, increasing robustness.

Quick Start

Tell the Router a query and it will route it to the appropriate agent.

Frequently Asked Questions about routing

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

FAQPage Schema
What is multi-agent routing and when do I need it for my workflow?

Multi-agent routing classifies input requests and delegates them to specialized handlers. You need it when building scalable workflows that require intent detection, tool selection, and modular separation between routers and responders.

How do I route user requests to the right agent based on intent?

To route user requests to the right agent, provide a query to the router. It uses classifier-driven delegation to detect intent, select the appropriate tool, and invoke the modular handler best suited for the task context.

Can I use classifier-driven delegation for multi-agent systems across support and sales?

Yes, classifier-driven delegation supports multi-agent systems across support, sales, and operations. It routes requests by detecting task type and context, then delegates to specialized agents to maximize accuracy and efficiency.

What's the best way to handle unknown intents in an agent routing workflow?

The best way to handle unknown intents in agent routing is to configure safe fallbacks with clear task schemas. This increases robustness by ensuring undefined queries are managed gracefully without breaking the workflow.

How does modular handler invocation reduce coupling in multi-agent systems?

Modular handler invocation reduces coupling in multi-agent systems by acting as a traffic controller. It separates concerns among routers, responders, and tool handlers, enabling scalable workflows and independent agent updates.