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

tooluniverse-drug-repurposing工具宇宙药物再利用

Agent Skill

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

总安装

5,067

周安装

207

GitHub Stars

1,309

下载量

1,639
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

tooluniverse-drug-repurposing 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词、任务场景或来源线索进行信息匹配与过滤,适用于药物再利用类研究检索。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 了解具体调用方式。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 可配合宿主环境中的其他工具链使用,提升信息获取效率与准确性。

SKILL.md

Drug Repurposing with ToolUniverse

Systematically identify and evaluate drug repurposing candidates using multiple computational strategies.

IMPORTANT: Always use English terms in tool calls. Respond in the user's language.


Reasoning Before Searching

Start by asking: WHY might this drug work for a new disease? Three strategies:

  • (a) Same target: The drug's primary target is also involved in the new disease. This is the strongest hypothesis — use OpenTargets to check if the target has genetic evidence in both diseases before any other search.
  • (b) Off-target activity: The drug has secondary targets or off-target effects that are relevant to the new disease. Check ChEMBL bioactivity data for all known targets of the drug, not just its primary one.
  • (c) Shared pathways: The original indication and new disease share molecular pathways, even if the target itself is not genetically linked. Use Reactome and STRING to compare pathway overlap between diseases.

Each strategy uses different tools and has different evidentiary weight. Identify which strategy applies FIRST, then choose the corresponding workflow below. Do not run all three strategies blindly — reason about which is most plausible given the drug's mechanism.

LOOK UP DON'T GUESS: Never assume a drug hits a target, never assume a target is disease-relevant, never assume pathway overlap. Verify each link with tool calls.

Core Strategies

  1. Target-Based: Disease targets -> Find drugs that modulate those targets
  2. Compound-Based: Approved drugs -> Find new disease indications
  3. Disease-Driven: Disease -> Targets -> Match to existing drugs

Workflow Overview

Phase 1: Disease & Target Analysis
  Get disease info (OpenTargets), find associated targets, get target details

Phase 2: Drug Discovery
  Search DrugBank, DGIdb, ChEMBL for drugs targeting disease-associated genes
  Get drug details, indications, pharmacology

Phase 3: Safety & Feasibility Assessment
  FDA warnings, FAERS adverse events, drug interactions, ADMET predictions

Phase 4: Literature Evidence
  PubMed, Europe PMC, clinical trials for existing evidence

Phase 5: Scoring & Ranking
  Composite score: target association + safety + literature + drug properties

See: PROCEDURES.md for detailed step-by-step procedures and code patterns.


Quick Start

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

# Step 1: Get disease targets
disease_info = tu.tools.OpenTargets_get_disease_id_description_by_name(diseaseName="rheumatoid arthritis")
# Response nests ID at data.search.hits[0].id
disease_id = disease_info['data']['search']['hits'][0]['id']
targets = tu.tools.OpenTargets_get_associated_targets_by_disease_efoId(efoId=disease_id, limit=10)

# Step 2: Find drugs for each target
# Response nests targets at data.disease.associatedTargets.rows
rows = targets['data']['disease']['associatedTargets']['rows']
for target in rows[:5]:
    gene = target['target']['approvedSymbol']
    drugs = tu.tools.DGIdb_get_drug_gene_interactions(genes=[gene])

Key ToolUniverse Tools

Disease & Target:

  • OpenTargets_get_disease_id_description_by_name - Disease lookup
  • OpenTargets_get_associated_targets_by_disease_efoId - Disease targets
  • UniProt_get_entry_by_accession - Protein details

Drug Discovery:

  • drugbank_get_drug_name_and_description_by_target_name - Drugs by target. Param: query= (NOT target_name=)
  • drugbank_get_drug_name_and_description_by_indication - Drugs by indication. Param: query= (NOT indication=)
  • DGIdb_get_drug_gene_interactions - Drug-gene interactions. Response path: data.data.genes.nodes[0].interactions
  • ChEMBL_search_drugs / ChEMBL_get_drug_mechanisms - Drug search and MOA

Drug Information (ALL DrugBank tools use query= as the search parameter, plus case_sensitive=False, exact_match=False, limit=N):

  • drugbank_get_drug_basic_info_by_drug_name_or_id - Basic info. Param: query="drug_name"
  • drugbank_get_indications_by_drug_name_or_drugbank_id - Approved indications. Param: query="drug_name"
  • drugbank_get_pharmacology_by_drug_name_or_drugbank_id - Pharmacology. Param: query="drug_name"
  • drugbank_get_targets_by_drug_name_or_drugbank_id - Drug targets. Param: query="drug_name"

Safety:

  • FDA_get_warnings_and_cautions_by_drug_name - FDA warnings
  • FAERS_search_reports_by_drug_and_reaction - Adverse events. Param: medicinalproduct= (NOT drug_name=)
  • FAERS_count_death_related_by_drug - Serious outcomes. Param: medicinalproduct= (NOT drug_name=)
  • drugbank_get_drug_interactions_by_drug_name_or_id - Interactions

Property Prediction:

  • ADMETAI_predict_physicochemical_properties / ADMETAI_predict_toxicity - ADMET and toxicity

Pathway & Network Analysis:

  • ReactomeAnalysis_pathway_enrichment - Pathway enrichment. Param: identifiers="SOD1\nTARDBP\nFUS" (newline-separated string, NOT array)
  • STRING_get_network - Protein interaction networks. Param: identifiers="SOD1\rTARDBP\rFUS" (CR-separated string), species=9606
  • CTD_get_gene_diseases - Curated gene-disease associations. Param: input_terms="gene_symbol" (NOT gene_symbol=)

Literature & Clinical Trials:

  • PubMed_search_articles / EuropePMC_search_articles - Literature search
  • search_clinical_trials - ClinicalTrials.gov search. Use condition for disease name. The intervention filter is strict and may miss trials — use query_term for broader drug-name matching as fallback.
CNS diseases note: For neurological indications (ALS, Alzheimer's, Parkinson's), prioritize BBB-penetrant candidates. Use ChEMBL molecular properties (MW < 500, PSA < 90) as BBB proxy since ADMETAI_predict_BBB_penetrance may require the tooluniverse[ml] extra. Consider route of administration (oral preferred for patients with swallowing difficulty) and sex-specific effects from preclinical models.

Scoring & Decision Framework

Repurposing Viability Score (0-100)

CategoryPointsHow to Score
Target Association0-4040: Target has genetic evidence in disease (GWAS, rare variants); 25: Target is in a disease-associated pathway (Reactome, KEGG); 15: Target is differentially expressed in disease tissue; 5: Target shares a GO term with disease genes
Safety Profile0-3030: FDA-approved drug, no black box warning, established safety record; 20: FDA-approved with manageable warnings; 10: Phase II+ data, acceptable safety; 0: Preclinical only or serious safety signals
Literature Evidence0-2020: Phase II+ trial for the new indication exists; 15: Case reports or retrospective studies show efficacy; 10: Preclinical in-vivo evidence (animal models); 5: In-vitro evidence only; 0: No prior evidence
Drug Properties0-1010: Oral, good bioavailability, IP available; 5: Injectable or narrow therapeutic window; 0: Poor PK or formulation challenges

Classification:

  • 80-100: Strong candidate — proceed to clinical evaluation
  • 60-79: Promising — worth preclinical validation or retrospective study
  • 40-59: Speculative — needs significant additional evidence
  • <40: Weak — likely not worth pursuing without new mechanistic insight

Evidence Grading for Repurposing

GradeDefinitionAction
E1 (Clinical)Existing clinical trial for new indication (any phase)High priority — check trial results
E2 (Epidemiological)Retrospective/observational data showing benefitModerate priority — design prospective study
E3 (Preclinical)Animal model evidence for new indicationStandard priority — validate mechanism
E4 (Computational)Target overlap, network proximity, or molecular similarity onlyLow priority — needs experimental validation

How to Interpret and Combine Results

After running Phases 1-4, synthesize by answering:

  1. Is the target validated for this disease? Check OpenTargets association score (>0.5 = strong). Cross-reference with genetic evidence (GWAS hits, rare variant studies). If target association is only pathway-level, the repurposing hypothesis is speculative.
  2. Does the drug actually hit the target at achievable doses? Check ChEMBL IC50/Ki values. If the drug's affinity for the new target is >10x weaker than for its original target, clinical efficacy is unlikely at safe doses.
  3. What's the safety margin? Compare the dose needed for the new indication to the approved dose. If higher doses are needed, safety data from the original indication may not apply.
  4. Is there prior clinical evidence? A Phase II trial for the new indication (even failed) is more informative than 100 computational predictions. Check search_clinical_trials first.
  5. What's the competitive landscape? If better drugs already exist for the disease, repurposing offers little value. Check DrugBank indications for approved therapies.

Best Practices

  1. Check clinical trials FIRST: search_clinical_trials(condition="[disease]", intervention="[drug]") — if a trial already exists, start there
  2. Validate targets with genetics: Genetic evidence (GWAS, rare variants) is the strongest predictor of successful drug development
  3. Safety first: Prioritize approved drugs with known safety profiles
  4. Dose matters: A drug that hits a disease target at 100x its approved dose is not a repurposing candidate
  5. Mechanism over correlation: Network proximity alone is insufficient — explain WHY the drug should work
  6. Consider IP and formulation: Generic drugs are easier to repurpose but harder to fund trials for

Computational Procedure: Drug-Target Dose Feasibility Check

A drug that hits a new target only at 100x its approved dose is NOT a viable repurposing candidate. Use this procedure after identifying drug-target pairs:

# Drug-target dose feasibility analysis
# Uses ChEMBL bioactivity data from ToolUniverse
from tooluniverse import ToolUniverse

tu = ToolUniverse()
tu.load_tools()

def check_dose_feasibility(drug_name, original_target, new_target):
    """
    Compare drug's potency at original vs new target.
    If new_target IC50 > 10x original_target IC50, flag as unlikely feasible.
    """
    # Get bioactivity for original target
    orig = tu.run_one_function({
        'name': 'ChEMBL_get_bioactivities',
        'arguments': {
            'molecule_chembl_id': drug_name,  # or search first
            'target_chembl_id': original_target,
            'limit': 10
        }
    })

    # Get bioactivity for new target
    new = tu.run_one_function({
        'name': 'ChEMBL_get_bioactivities',
        'arguments': {
            'molecule_chembl_id': drug_name,
            'target_chembl_id': new_target,
            'limit': 10
        }
    })

    # Extract IC50/Ki values and compare
    # If new target requires >10x concentration → NOT FEASIBLE at safe doses
    # If new target is within 3x → PROMISING
    # If new target is within 1x → STRONG candidate
    pass  # Parse actual values from results

# Alternative: Quick Cmax check
# If published Cmax at approved dose < IC50 for new target → NOT FEASIBLE
# Cmax data can be found in:
#   - DrugBank pharmacology section
#   - DailyMed clinical pharmacology section
#   - PubMed PK studies

Key principle: The most common reason repurposing fails is insufficient drug exposure at the new target. Always check whether the drug's concentration at approved doses reaches the IC50 for the new target.


Troubleshooting

ProblemSolution
Disease not foundTry synonyms or EFO ID lookup
No drugs for targetCheck HUGO nomenclature, expand to pathway-level, try similar targets
Insufficient literatureSearch drug class instead, check preclinical/animal studies
Safety data unavailableDrug may not be US-approved, check EMA or clinical trial safety

Reference Files

  • REFERENCE.md - Detailed reference documentation
  • EXAMPLES.md - Sample repurposing analyses
  • PROCEDURES.md - Step-by-step procedures with code
  • REPORT_TEMPLATE.md - Output report template
  • Related skills: disease-intelligence-gatherer, chemical-compound-retrieval, tooluniverse-sdk

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.91%
按下载量换算556

Claude

31.03%
按下载量换算509

Cursor

21.71%
按下载量换算356

Gemini CLI

10.12%
按下载量换算166

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills