research-router-skill

作者: openai

將廣泛或模糊的生命科學研究請求導向正確的技能,標準化核心實體,並可選擇平行處理獨立的證據收集…

npx skills add https://github.com/openai/plugins --skill research-router-skill

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:

  1. understand the research objective
  2. normalize the main entities
  3. select the minimum useful set of downstream skills
  4. gather evidence
  5. 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:

  1. direct answer or working conclusion
  2. key evidence by lane
  3. main caveats or unresolved questions
  4. 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

來自 openai 的更多技能

user-context
openai
載入或管理資料分析插件的持久性來源路由偏好設定、入門邏輯、設定進度以及語義層註冊表。
official
notion-research-documentation
openai
研究Notion內容,並將其整合為結構化的簡報、報告或附有引用的比較分析。透過精準查詢搜尋並擷取Notion頁面,然後按主題組織發現,並附上內文來源引用及參考文獻章節。根據範圍與使用者目標,從四種輸出格式(快速簡報、研究摘要、比較分析、綜合報告)中選擇。使用內建範本建立與更新Notion頁面;直接連結來源,並在新資訊到來時追蹤變更。
official
rcsb-pdb-skill
openai
提交精簡的RCSB PDB請求以獲取核心元數據、Search API查詢及FASTA下載。當用戶需要簡潔的RCSB摘要時使用;保存原始JSON或…
official
pdf
openai
PDF 讀取、建立與驗證,支援視覺化渲染與程式化生成。使用 Poppler(pdftoppm)將 PDF 頁面渲染為 PNG,以便在交付前檢查版面、間距與排版。透過 reportlab 程式化生成 PDF,確保格式可靠;使用 pdfplumber 或 pypdf 提取文字與元資料。執行品質標準:無文字裁切、元素重疊、表格破損或渲染瑕疵;僅使用 ASCII 連字號,引用格式需具可讀性。使用...
official
test-coverage-improver
openai
Improve test coverage in the OpenAI Agents JS monorepo: run `pnpm test:coverage`, inspect coverage artifacts, identify low-coverage files and branches, propose…
official
playwright
openai
終端驅動的瀏覽器自動化,具備元素快照與互動式UI工作流程。透過playwright-cli包裝腳本運作(需npx),支援無頭模式與有頭模式以進行視覺化除錯。核心流程:開啟頁面、擷取快照以取得穩定元素參照、使用參照進行互動、在導航或DOM變更後重新擷取快照。包含表單填寫、點擊、輸入、多分頁管理、螢幕截圖/PDF擷取,以及流程除錯的軌跡記錄。元素參照(例如e3、e15)...
official
ukb-topmed-phewas-skill
openai
接受rsID、GRCh37或GRCh38輸入,解析為所需的GRCh38查詢,以獲取單一變異的簡潔UKB-TOPMed PheWAS摘要。當需要…時使用。
official
code-review-context
openai
模型可見上下文
official