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

tooluniverse-adverse-outcome-pathway工具宇宙不良后果途径

Agent Skill

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

总安装

1,176

周安装

50

GitHub Stars

1,314

下载量

412
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-adverse-outcome-pathway

简介

tooluniverse-adverse-outcome-pathway 用于查找、检索和筛选相关信息。

  • 适用于不良结局机制分析与通路研究的科研场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Adverse Outcome Pathway & Regulatory Risk Assessment

Distinct from drug safety (see tooluniverse-toxicology): this skill targets environmental and industrial chemicals where the focus is AOP stressor mapping, GHS classification, LD50 hazard quantification, and IARC carcinogen status — not FAERS signals or FDA drug labels.

When to Use

Apply when researcher asks about:

  • "What AOPs are associated with [pesticide/solvent/industrial chemical]?"
  • "What is the GHS hazard classification for [compound]?"
  • "What is the LD50 for [compound]?"
  • "Is [compound] a carcinogen (IARC classification)?"
  • "Which genes does [chemical] interact with (CTD)?"
  • "Regulatory risk assessment for [environmental chemical]"
  • "What diseases are associated with [chemical] exposure?"

Do NOT use for FDA-approved drugs with FAERS data — use tooluniverse-toxicology instead.

Key Tools

ToolPurposeKey Params
AOPWiki_list_aopsDiscover AOPs by keywordkeyword (organ, effect, or target name)
AOPWiki_get_aopFull AOP details: MIE, key events, stressorsaop_id (int)
PubChemTox_get_toxicity_summaryNarrative toxicity overviewcid (PubChem CID)
PubChemTox_get_ghs_classificationGHS hazard category + pictogramscid
PubChemTox_get_carcinogen_classificationIARC/NTP/EPA carcinogen statuscid
PubChemTox_get_toxicity_valuesLD50/LC50 by route and speciescid
PubChemTox_get_acute_effectsSigns and symptoms of acute exposurecid
CTD_get_chemical_gene_interactionsChemical-gene molecular interactionsinput_terms (name or MeSH ID)
CTD_get_chemical_diseasesChemical-disease associationsinput_terms
PubChem_get_CID_by_compound_nameResolve compound name to PubChem CIDname

Workflow

Phase 1: Compound Identity Resolution

Resolve chemical name to PubChem CID before all PubChemTox calls.

PubChem_get_CID_by_compound_name(name="benzo[a]pyrene")
-> cid: 9153 (use for all PubChemTox calls)

Note: CTD tools accept the chemical name directly (input_terms param) — no CID needed.

Phase 2: AOP Discovery

Find relevant AOPs by searching organ targets and mechanism keywords.

AOPWiki_list_aops(keyword="lung")          # organ-level
AOPWiki_list_aops(keyword="DNA damage")    # mechanism-level
AOPWiki_list_aops(keyword="AhR")           # receptor-level

Select 2-4 candidate AOPs from results, then retrieve full details:

AOPWiki_get_aop(aop_id=58)  # returns MIE, key events, stressors, biological plausibility

Key fields in AOPWiki_get_aop response:

  • stressors: list of chemicals that trigger this AOP (check if query compound is listed)
  • molecular_initiating_event: the first molecular perturbation
  • key_events: ordered chain of biological events
  • adverse_outcome: apical regulatory endpoint

Phase 3: Hazard Quantification (PubChemTox)

Run all four hazard queries in parallel using the resolved CID:

PubChemTox_get_ghs_classification(cid=9153)        # GHS category + pictogram
PubChemTox_get_carcinogen_classification(cid=9153)  # IARC Group 1/2A/2B/3
PubChemTox_get_toxicity_values(cid=9153)            # LD50 by route/species
PubChemTox_get_acute_effects(cid=9153)              # signs/symptoms

Note: PubChemTox_get_target_organs sometimes returns no data — treat as optional.

Phase 4: Toxicogenomics (CTD)

Map chemical to gene targets and disease associations:

CTD_get_chemical_gene_interactions(input_terms="benzo[a]pyrene")
CTD_get_chemical_diseases(input_terms="benzo[a]pyrene")

Cross-reference CTD gene targets with AOP key event genes from Phase 2.

Tool Parameter Reference

ToolRequiredOptionalNotes
AOPWiki_list_aopskeywordUse organ ("liver"), effect ("apoptosis"), or receptor ("PPARalpha")
AOPWiki_get_aopaop_idInteger ID from list_aops output
PubChemTox_get_toxicity_summarycidPubChem CID integer
PubChemTox_get_ghs_classificationcidReturns pictogram_labels e.g. "Health Hazard"
PubChemTox_get_carcinogen_classificationcidIARC Group in classifications[].classification
PubChemTox_get_toxicity_valuescidValues like "LD50 Rat oral 2400 mg/kg"
PubChemTox_get_acute_effectscidSometimes sparse; not all compounds have data
CTD_get_chemical_gene_interactionsinput_termsAccepts name or MeSH ID (e.g., "D001564")
CTD_get_chemical_diseasesinput_termsFilter DirectEvidence = "marker/mechanism" for curated
PubChem_get_CID_by_compound_namenameReturns CID + SMILES; required before PubChemTox calls

Common Patterns

# Pattern: Confirm compound is a stressor in a specific AOP
aop = AOPWiki_get_aop(aop_id=58)
stressors = [s["name"] for s in aop["data"]["stressors"]]
# Check if query chemical appears in stressors list

# Pattern: Extract curated CTD disease associations only
diseases = CTD_get_chemical_diseases(input_terms="rotenone")
curated = [d for d in diseases["data"] if d.get("DirectEvidence")]

# Pattern: GHS carcinogen check
carcinogen = PubChemTox_get_carcinogen_classification(cid=9153)
iarc = [c for c in carcinogen["data"]["classifications"] if "IARC" in c.get("source", "")]

Reasoning Framework for Result Interpretation

Evidence Grading

GradeCriteriaExample
StrongAOP in OECD-endorsed status, compound listed as stressor, CTD + AOPWiki concordantAOP 58 (AhR → liver tumor) endorsed, benzo[a]pyrene confirmed stressor
ModerateAOP under review or well-documented, compound class match but not individually listedAOP links PPARalpha activation to liver effects; query compound is a fibrate analog
WeakAOP in development, compound not listed but shares MIE target via CTD gene overlapCTD shows gene target overlap with AOP key event genes, but no direct stressor listing
InsufficientNo AOP found, no CTD gene-disease link, hazard data sparseNovel compound with no toxicological database entries

Interpretation Guidance

  • AOP weight-of-evidence assessment: OECD-endorsed AOPs have undergone expert review and represent the highest confidence mechanistic pathways. AOPs "under development" in AOPWiki may have incomplete key event relationships. Evaluate each AOP by: (1) biological plausibility of key event relationships, (2) empirical support (dose-response concordance), (3) essentiality of key events (blocking KE prevents AO).
  • Key event relationship (KER) strength: Strong KERs have dose-response and temporal concordance between upstream and downstream key events. Moderate KERs have correlative evidence. Weak KERs are based on plausibility alone. The weakest KER in the chain determines the overall AOP confidence for that pathway.
  • Stressor potency interpretation: LD50 values indicate acute toxicity (lower = more toxic). GHS categories: Cat 1 (LD50 <= 5 mg/kg, fatal), Cat 2 (5-50, fatal), Cat 3 (50-300, toxic), Cat 4 (300-2000, harmful), Cat 5 (2000-5000, may be harmful). IARC Group 1 = confirmed carcinogen, 2A = probable, 2B = possible, 3 = not classifiable. Always report route of exposure and species for LD50 values.
  • CTD integration: CTD "direct evidence" (curated marker/mechanism) is stronger than "inferred" associations. When CTD gene targets overlap with AOP key event genes, this supports the mechanistic link between the compound and the adverse outcome.
  • Regulatory context: For risk assessment, combine hazard identification (IARC, GHS) with exposure assessment. A potent carcinogen at negligible exposure may pose lower risk than a moderate toxicant at high exposure.

Synthesis Questions

  1. Is the query compound explicitly listed as a stressor in the identified AOP, or is the link inferred from shared molecular targets (CTD gene overlap)?
  2. Do the key event relationships in the AOP chain have sufficient empirical support (dose-response concordance, temporal sequence), or are there weak links that reduce confidence?
  3. Are the hazard data (LD50, GHS, IARC) consistent across sources, and do they support the severity implied by the AOP adverse outcome?
  4. Does the CTD gene-disease evidence corroborate the AOP's predicted adverse outcome, or are there discrepancies suggesting alternative pathways?
  5. For regulatory decision-making, is the combined weight of evidence (AOP mechanism + hazard quantification + exposure context) sufficient to support a risk classification?

Fallback Chains

PrimaryFallbackWhen
AOPWiki_list_aops with specific keywordBroader organ termNo results
PubChemTox_get_target_organsPubChemTox_get_toxicity_summaryReturns empty
CTD_get_chemical_diseasesCTD_get_gene_diseases + gene from CTD interactionsCompound name not recognized

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.86%
按下载量换算152

Claude

30.56%
按下载量换算126

Cursor

16.5%
按下载量换算68

Gemini CLI

8.34%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills