# route > Route input to the appropriate agent based on intent and domain analysis. - Author: Ada Lundhe - Repository: hyper-light/sylk - Version: 20260120093632 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/hyper-light/sylk - Web: https://mule.run/skillshub/@@hyper-light/sylk~route:20260120093632 --- --- name: route description: Route input to the appropriate agent based on intent and domain analysis. --- # Route Route user input to the most appropriate agent based on intent classification. ## When to use - User provides input that needs to be dispatched to a specialist agent - Input requires domain classification before processing - Cross-agent communication is needed ## Parameters - `input` (required): The text to route - `source_agent_id` (optional): ID of the requesting agent - `session_id` (optional): Session context for routing ## Example ```json { "input": "Find all functions that handle authentication", "session_id": "sess-123" } ``` The Guide will classify the intent and dispatch to the Librarian for code search.