Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
researcher/benchmarks/router/routing-prompt.md
1You are routing an incoming task to the most relevant skill from a curated collection. Your only job is to pick the best skill.23# Available skills ({{SKILL_COUNT}})45Each item is `<name>` followed by the skill's activation description.67{{SKILL_BLOCK}}89# Task1011The user has the following task. Read it carefully and identify which skill (if any) most directly applies.1213```14{{USER_PROMPT}}15```1617# Output1819Return ONLY a single JSON object. No prose, no markdown, no code fence.2021The JSON object must have exactly these keys:2223- `ranking`: an array of skill names, ordered most-to-least relevant. Include only skills you genuinely consider relevant. At least one skill must appear.24- `confidence`: a number between 0.0 and 1.0 describing your confidence in the top choice.25- `rationale`: a single sentence explaining why the top choice is the best match.2627Example:2829```30{"ranking":["skill-a","skill-b"],"confidence":0.82,"rationale":"The task is about X, which is the core scope of skill-a."}31```32