Research Router
Use this skill as the default orchestration layer for broad life-sciences research requests.
Do not use it for narrow single-source lookups when a more specific skill already matches the request cleanly.
Primary Responsibility
Turn an open-ended research question into a small, defensible retrieval plan:
- understand the research objective
- normalize the main entities
- select the minimum useful set of downstream skills
- gather evidence
- synthesize the answer for the user
The router owns the framing and the final synthesis. It should not dump raw source payloads unless the user explicitly asks for them.
When To Use This Skill
Use this skill when any of the following are true:
- the user asks a broad question such as
what is known about ...
- the question could require more than one evidence type
- the right source is unclear at the start
- the request mixes entities, for example gene plus disease, variant plus phenotype, protein plus ligand, or pathway plus dataset
- the user wants a synthesized answer rather than a single database lookup
Research Task Classification
Start by classifying the request into one or more lanes:
- human genetics and variant interpretation
- locus-to-gene prioritization
- expression, tissue, or cell-type context
- pathway, network, or functional biology
- protein structure and mechanism
- chemistry, ligands, and pharmacology
- clinical, translational, or cancer evidence
- literature, preprints, and public dataset discovery
- metabolomics, proteomics, or microbiome context
Prefer 1 to 3 lanes. Only expand further if the user explicitly asks for a broad landscape review.
Entity Normalization
Normalize the key entities before deep retrieval.
Common patterns:
- gene or protein:
ncbi-clinicaltables-skill, ensembl-skill, uniprot-skill
- disease or phenotype:
efo-ontology-skill, opentargets-skill
- variant:
clinvar-variation-skill, ensembl-skill, cohort-specific PheWAS skills
- compound or metabolite:
chembl-skill, pubchem-pug-skill, chebi-skill, hmdb-skill
- pathway or function:
reactome-skill, quickgo-skill, string-skill
- accession or dataset identifier:
ncbi-datasets-skill, biostudies-arrayexpress-skill, pride-skill, metabolights-skill
Do not start broad evidence collection until the important entities are stable enough to route correctly.
Skill Selection Heuristics
Choose the smallest set of skills that can answer the question well.
Examples:
- target or disease evidence review:
opentargets-skill, gwas-catalog-skill, gtex-eqtl-skill, human-protein-atlas-skill
- variant interpretation:
clinvar-variation-skill, gnomad-graphql-skill, ensembl-skill, one or more cohort PheWAS skills
- locus-to-gene mapping:
locus-to-gene-mapper-skill, or its component genetics skills when the user wants a custom workflow
- structure and mechanism:
alphafold-skill, rcsb-pdb-skill, uniprot-skill, reactome-skill
- chemistry and pharmacology:
chembl-skill, bindingdb-skill, pubchem-pug-skill, pharmgkb-skill
- clinical and translational:
clinicaltrials-skill, cbioportal-skill, civic-skill
- literature and dataset discovery:
ncbi-entrez-skill, ncbi-pmc-skill, biorxiv-skill, biostudies-arrayexpress-skill, ncbi-datasets-skill
Prefer direct lookups before expensive multi-step chains.
Subagent And Parallelization Guidance
If Codex subagents are available, use them only when the work cleanly decomposes into independent lanes.
Good candidates for subagents:
- genetics, expression, structure, chemistry, and clinical evidence can be gathered independently for the same question
- multiple loci, variants, genes, compounds, or datasets need parallel comparison
- a broad landscape review requires separate evidence summaries before synthesis
Keep these steps with the coordinating agent:
- initial interpretation of the user request
- entity normalization and final scope decisions
- conflict resolution across evidence sources
- final synthesis and recommendation writing
Avoid subagents when:
- one specific skill already answers the question
- later steps depend tightly on earlier intermediate outputs
- the work is mostly identifier resolution or narrow follow-up lookup
- the extra coordination cost is likely to exceed the retrieval benefit
When delegating, give each subagent a bounded read-only objective such as one evidence family or one comparison unit. Each subagent should return:
- what it checked
- the key findings
- the main caveats
- which skills or sources it used
- any artifact paths it produced
The coordinating agent is responsible for reconciling overlaps, contradictions, and evidence gaps.
Output Contract
Return a concise answer structured around the user's question, not around the tools.
Unless the user asks for a different format, include:
- direct answer or working conclusion
- key evidence by lane
- main caveats or unresolved questions
- recommended next analyses or follow-up lookups
If the task is exploratory, explicitly distinguish:
- evidence that supports a conclusion
- evidence that is only suggestive
- evidence that is missing or contradictory
Operating Rules
- prefer concise source-backed synthesis over large raw dumps
- escalate to multi-skill workflows only when the question requires synthesis
- state important cohort, ancestry, assay, tissue, and study-design limitations
- do not overstate causality from association-only evidence
- if a downstream skill can answer the request directly, hand off to it instead of keeping the router in the foreground
1---2name: research-router-skill3description: Route broad or ambiguous life-sciences research requests to the right skills, normalize core entities, optionally parallelize independent evidence gathering with subagents when available, and synthesize a concise evidence-backed answer. Use when a user asks a general life-sciences question that could span multiple sources or analysis types.4---56## Research Router78Use this skill as the default orchestration layer for broad life-sciences research requests.910Do not use it for narrow single-source lookups when a more specific skill already matches the request cleanly.1112## Primary Responsibility1314Turn an open-ended research question into a small, defensible retrieval plan:15161. understand the research objective172. normalize the main entities183. select the minimum useful set of downstream skills194. gather evidence205. synthesize the answer for the user2122The router owns the framing and the final synthesis. It should not dump raw source payloads unless the user explicitly asks for them.2324## When To Use This Skill2526Use this skill when any of the following are true:2728- the user asks a broad question such as `what is known about ...`29- the question could require more than one evidence type30- the right source is unclear at the start31- the request mixes entities, for example gene plus disease, variant plus phenotype, protein plus ligand, or pathway plus dataset32- the user wants a synthesized answer rather than a single database lookup3334## Research Task Classification3536Start by classifying the request into one or more lanes:3738- human genetics and variant interpretation39- locus-to-gene prioritization40- expression, tissue, or cell-type context41- pathway, network, or functional biology42- protein structure and mechanism43- chemistry, ligands, and pharmacology44- clinical, translational, or cancer evidence45- literature, preprints, and public dataset discovery46- metabolomics, proteomics, or microbiome context4748Prefer 1 to 3 lanes. Only expand further if the user explicitly asks for a broad landscape review.4950## Entity Normalization5152Normalize the key entities before deep retrieval.5354Common patterns:5556- gene or protein: `ncbi-clinicaltables-skill`, `ensembl-skill`, `uniprot-skill`57- disease or phenotype: `efo-ontology-skill`, `opentargets-skill`58- variant: `clinvar-variation-skill`, `ensembl-skill`, cohort-specific PheWAS skills59- compound or metabolite: `chembl-skill`, `pubchem-pug-skill`, `chebi-skill`, `hmdb-skill`60- pathway or function: `reactome-skill`, `quickgo-skill`, `string-skill`61- accession or dataset identifier: `ncbi-datasets-skill`, `biostudies-arrayexpress-skill`, `pride-skill`, `metabolights-skill`6263Do not start broad evidence collection until the important entities are stable enough to route correctly.6465## Skill Selection Heuristics6667Choose the smallest set of skills that can answer the question well.6869Examples:7071- target or disease evidence review:72 `opentargets-skill`, `gwas-catalog-skill`, `gtex-eqtl-skill`, `human-protein-atlas-skill`73- variant interpretation:74 `clinvar-variation-skill`, `gnomad-graphql-skill`, `ensembl-skill`, one or more cohort PheWAS skills75- locus-to-gene mapping:76 `locus-to-gene-mapper-skill`, or its component genetics skills when the user wants a custom workflow77- structure and mechanism:78 `alphafold-skill`, `rcsb-pdb-skill`, `uniprot-skill`, `reactome-skill`79- chemistry and pharmacology:80 `chembl-skill`, `bindingdb-skill`, `pubchem-pug-skill`, `pharmgkb-skill`81- clinical and translational:82 `clinicaltrials-skill`, `cbioportal-skill`, `civic-skill`83- literature and dataset discovery:84 `ncbi-entrez-skill`, `ncbi-pmc-skill`, `biorxiv-skill`, `biostudies-arrayexpress-skill`, `ncbi-datasets-skill`8586Prefer direct lookups before expensive multi-step chains.8788## Subagent And Parallelization Guidance8990If Codex subagents are available, use them only when the work cleanly decomposes into independent lanes.9192Good candidates for subagents:9394- genetics, expression, structure, chemistry, and clinical evidence can be gathered independently for the same question95- multiple loci, variants, genes, compounds, or datasets need parallel comparison96- a broad landscape review requires separate evidence summaries before synthesis9798Keep these steps with the coordinating agent:99100- initial interpretation of the user request101- entity normalization and final scope decisions102- conflict resolution across evidence sources103- final synthesis and recommendation writing104105Avoid subagents when:106107- one specific skill already answers the question108- later steps depend tightly on earlier intermediate outputs109- the work is mostly identifier resolution or narrow follow-up lookup110- the extra coordination cost is likely to exceed the retrieval benefit111112When delegating, give each subagent a bounded read-only objective such as one evidence family or one comparison unit. Each subagent should return:113114- what it checked115- the key findings116- the main caveats117- which skills or sources it used118- any artifact paths it produced119120The coordinating agent is responsible for reconciling overlaps, contradictions, and evidence gaps.121122## Output Contract123124Return a concise answer structured around the user's question, not around the tools.125126Unless the user asks for a different format, include:1271281. direct answer or working conclusion1292. key evidence by lane1303. main caveats or unresolved questions1314. recommended next analyses or follow-up lookups132133If the task is exploratory, explicitly distinguish:134135- evidence that supports a conclusion136- evidence that is only suggestive137- evidence that is missing or contradictory138139## Operating Rules140141- prefer concise source-backed synthesis over large raw dumps142- escalate to multi-skill workflows only when the question requires synthesis143- state important cohort, ancestry, assay, tissue, and study-design limitations144- do not overstate causality from association-only evidence145- if a downstream skill can answer the request directly, hand off to it instead of keeping the router in the foreground