Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

tooluniverse-kegg-disease-drugtooluniverse keg 疾病药物

Agent Skill

tooluniverse-kegg-disease-drug 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,128

周安装

47

GitHub Stars

1,286

下载量

376
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tooluniverse-kegg-disease-drug(tooluniverse keg 疾病药物)
来源仓库:https://github.com/mims-harvard/tooluniverse
仓库路径:skills/tooluniverse-kegg-disease-drug
安装命令:
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-kegg-disease-drug
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-kegg-disease-drug

简介

用于检索 KEGG 疾病与药物关联信息,支持在生物医学研究中快速获取通路、基因和化合物数据。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中执行精准的生物医学知识查询任务。
  • 通过 npx skills add 命令从 GitHub 安装,需确认仓库权限及是否涉及网络访问或外部 API 调用。
  • 建议在使用前核实数据来源更新频率,避免依赖过期或未经验证的信息。
  • 注意该技能主要用于信息检索,不直接提供分析结果,需结合上下文进行解读和应用。

SKILL.md

KEGG Disease-Drug-Variant Research

Systematic exploration of disease-drug-variant relationships using KEGG's curated databases.

Reasoning Strategy

KEGG maps diseases to pathways and drugs to targets, but the real value is in the connections — which pathways link a disease gene to a drug target? This is a network question, not a simple lookup. A gene appearing in a KEGG disease entry has been editorially reviewed as mechanistically relevant; a drug entry with a confirmed target is more reliable than one inferred from pathway co-membership. When using KEGG for drug repurposing, always ask: is the drug-target relationship direct (the drug binds the gene product) or indirect (the drug affects a pathway that contains the gene)? Direct relationships are far stronger evidence. KEGG coverage is not exhaustive — absence from KEGG does not mean absence of biological involvement; complement with Reactome, WikiPathways, or CTD for broader coverage. ID namespace differences are a frequent source of errors: KEGG uses its own gene IDs (e.g., hsa:7157 for TP53), so always convert external IDs before querying KEGG-specific tools.

LOOK UP DON'T GUESS: Do not assume KEGG disease IDs, drug IDs, or gene IDs from memory — always search first with KEGG_search_disease, KEGG_search_drug, or KEGG_convert_ids. Do not assume which pathways link a disease gene to a drug; use KEGG_link_entries and KEGG_get_network to retrieve the actual connections.

When to Use

  • "What genes are associated with [disease] in KEGG?"
  • "Find KEGG drugs targeting [gene/pathway]"
  • "What variants are linked to [disease] in KEGG?"
  • "Show the KEGG disease-gene-drug network for [condition]"
  • "Find drugs targeting BRAF variants in cancer"

Tool Inventory (12 tools)

ToolKey ParamsReturns
KEGG_search_diseasekeywordDisease entries matching keyword
KEGG_get_diseasedisease_id (e.g., "H00004")Disease details: genes, drugs, pathways
KEGG_get_disease_genesdisease_idAll genes for a disease
KEGG_search_drugkeywordDrug entries matching keyword
KEGG_get_drugdrug_id (e.g., "D00123")Drug details: targets, pathways, metabolism
KEGG_get_drug_targetsdrug_idMolecular targets for a drug
KEGG_search_networkkeywordNetwork entries (disease-gene-drug)
KEGG_get_networknetwork_idNetwork details and relationships
KEGG_search_variantkeywordVariant entries matching keyword
KEGG_get_variantvariant_idVariant details and disease associations
KEGG_convert_idssource_db, target_db, idsConvert identifiers between KEGG and external databases (e.g., NCBI Gene ↔ KEGG gene IDs, UniProt ↔ KEGG)
KEGG_link_entriestarget_db, source_db_or_idsFind cross-database relationships (e.g., all genes linked to a pathway, all drugs linked to a disease)

Workflow

Phase 1: Disease Lookup -> Phase 2: Disease Genes -> Phase 3: Drug Search
  -> Phase 4: Drug Targets -> Phase 5: Network/Variant Context -> Report

Phase 1: Disease Lookup

Search and retrieve KEGG disease entries.

# Search for cancer-related diseases
diseases = tu.tools.KEGG_search_disease(keyword="breast cancer")
# Get details for a specific disease
disease = tu.tools.KEGG_get_disease(disease_id="H00031")

Phase 2: Disease Genes

Get genes associated with a KEGG disease entry.

genes = tu.tools.KEGG_get_disease_genes(disease_id="H00031")

Phase 3: Drug Search

Find KEGG drugs by name, target, or keyword.

drugs = tu.tools.KEGG_search_drug(keyword="vemurafenib")
drug_detail = tu.tools.KEGG_get_drug(drug_id="D09996")

Phase 4: Drug Targets

Get molecular targets for a drug.

targets = tu.tools.KEGG_get_drug_targets(drug_id="D09996")

Phase 5: Network & Variant Context

Explore disease-gene-drug networks and variant annotations.

# Search networks linking disease, genes, and drugs
networks = tu.tools.KEGG_search_network(keyword="BRAF melanoma")
network = tu.tools.KEGG_get_network(network_id="N00001")

# Search and get variant details
variants = tu.tools.KEGG_search_variant(keyword="BRAF V600E")
variant = tu.tools.KEGG_get_variant(variant_id="hsa:BRAF")

Example Workflow: Find Drugs Targeting BRAF Variants in Cancer

from tooluniverse import ToolUniverse
tu = ToolUniverse()
tu.load_tools()

# 1. Find BRAF-related diseases
diseases = tu.tools.KEGG_search_disease(keyword="BRAF")

# 2. Get disease genes for melanoma
genes = tu.tools.KEGG_get_disease_genes(disease_id="H00038")

# 3. Search for BRAF-targeting drugs
drugs = tu.tools.KEGG_search_drug(keyword="BRAF inhibitor")

# 4. Get targets for vemurafenib
targets = tu.tools.KEGG_get_drug_targets(drug_id="D09996")

# 5. Get BRAF variant info
variants = tu.tools.KEGG_search_variant(keyword="BRAF V600E")

# 6. Explore disease-gene-drug network
networks = tu.tools.KEGG_search_network(keyword="BRAF melanoma")

ID Conversion & Cross-Linking

Use KEGG_convert_ids to map between KEGG identifiers and external databases before or after lookups:

# Convert NCBI Gene IDs to KEGG gene IDs for human (hsa)
result = tu.tools.KEGG_convert_ids(source_db="ncbi-geneid", target_db="hsa", ids=["672", "675"])

# Convert UniProt accessions to KEGG entries
result = tu.tools.KEGG_convert_ids(source_db="up", target_db="hsa", ids=["P38398"])

Use KEGG_link_entries to retrieve relationships between KEGG databases:

# Find all KEGG pathway IDs that contain a given gene
result = tu.tools.KEGG_link_entries(target_db="pathway", source_db_or_ids="hsa:7157")

# Find all genes linked to a specific pathway
result = tu.tools.KEGG_link_entries(target_db="hsa", source_db_or_ids="path:hsa05210")

These tools are especially useful when you have external IDs (Entrez Gene, UniProt, ChEMBL) and need to bridge into KEGG's namespace, or when you want a complete gene-pathway or drug-disease adjacency list.

Integration with Other Skills

  • Pathway details: Use tooluniverse-systems-biology for Reactome/WikiPathways cross-ref
  • Drug mechanisms: Use tooluniverse-drug-mechanism-research for ChEMBL/DailyMed MOA
  • Clinical variants: Use tooluniverse-cancer-variant-interpretation for CIViC/ClinVar
  • Drug safety: Use tooluniverse-adverse-event-detection for FAERS data

Reasoning Framework for Result Interpretation

Evidence Grading

GradeCriteriaExample
StrongKEGG disease entry with curated gene list, drug with confirmed target, pathway mechanistically linkedH00031 (breast cancer) with BRCA1/BRCA2 genes, D09996 (vemurafenib) targeting BRAF
ModerateDisease-gene link in KEGG but no drug-target validation, or network entry without variant dataKEGG disease entry lists gene, but drug targets are inferred from pathway membership
WeakKeyword search hit only, no curated disease-gene-drug relationship in KEGGDrug found by name search but not linked to the disease in KEGG network
InsufficientNo KEGG entries found, or only cross-database ID conversion availableRare disease not curated in KEGG Disease

Interpretation Guidance

  • KEGG pathway significance: KEGG pathways are manually curated maps of molecular interactions. A gene appearing in a KEGG disease pathway has been editorially reviewed as relevant to that disease mechanism. However, KEGG coverage is not exhaustive -- absence from KEGG does not mean absence of involvement. Cross-reference with Reactome or WikiPathways for broader coverage.
  • Disease-drug network interpretation: KEGG Network entries (N-codes) link diseases, genes, and drugs in mechanistic triangles. A drug targeting a gene in a disease network has a curated rationale for therapeutic relevance. The network structure distinguishes direct targets (drug binds gene product) from pathway-level connections (drug affects pathway containing the gene). Prioritize direct target relationships for drug repurposing hypotheses.
  • Variant impact assessment: KEGG Variant entries are curated for clinical significance (often cancer driver mutations). A variant listed in KEGG with a linked drug entry indicates an established pharmacogenomic or precision oncology relationship (e.g., BRAF V600E linked to vemurafenib). Variants not in KEGG may still be clinically relevant -- cross-reference with ClinVar and CIViC.
  • ID conversion caveat: KEGG uses its own gene ID namespace (e.g., hsa:7157 for TP53). Always use KEGG_convert_ids to map from external IDs (NCBI Gene, UniProt) before querying KEGG-specific tools. Failed conversions may indicate the gene is not in KEGG's curated set.
  • Drug entry completeness: KEGG Drug entries vary in detail. Approved drugs typically have full target, pathway, and metabolism information. Investigational compounds may have partial entries. Check the drug's "Target" and "Pathway" fields for completeness before drawing conclusions.

Synthesis Questions

  1. Does the KEGG disease entry list the gene of interest with a direct mechanistic role, or is the gene only peripherally connected through a shared pathway?
  2. For drug-target relationships, is the target confirmed by KEGG Network (direct link), or inferred from pathway co-membership?
  3. Are there KEGG variant entries linking specific mutations to drug response, supporting precision medicine applications?
  4. Does the KEGG disease-gene-drug network for the condition align with evidence from other curated sources (CIViC, OncoKB, DrugBank)?
  5. If KEGG has limited entries for the query, which complementary databases (Reactome, WikiPathways, CTD) should be consulted to fill gaps?

Output

Markdown report with:

  1. Disease summary (KEGG ID, name, associated genes/pathways)
  2. Gene list with KEGG gene IDs and symbols
  3. Drug candidates with targets and mechanisms
  4. Network relationships (disease-gene-drug triangles)
  5. Variant annotations if available

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.63%
按下载量换算134

Claude

27.4%
按下载量换算103

Cursor

19.22%
按下载量换算72

Gemini CLI

9.75%
按下载量换算37

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills