disease-drug-intelligence

disease-drug-intelligence is a skill for Codex from PharMolix/OpenBioMed. It costs 120 tokens per session (2,372 once invoked), scanned A, original, MIT.

A research workflow for combining information about diseases and experimental or approved drugs from several biomedical databases.

In plain words
What is it for?
Use it to investigate which innovative drugs may matter for a disease, using data from sources such as ChEMBL and ClinicalTrials.gov.
Why use it?
It replaces a simple list of drug names with a structured report that considers evidence, drug novelty, and matching disease entities.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to investigate which innovative drugs may matter for a disease, using data from sources such as ChEMBL and ClinicalTrials.gov.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pharmolix/openbiomed/disease-drug-intelligence
About the project

OpenBioMed is an agent platform and toolkit collection for biomedical research and drug discovery, covering areas such as molecular design, protein analysis, and single-cell data analysis. It is intended for researchers and provides the biomedical skills listed in the catalogue as workflows for Claude Code.

PharMolix/OpenBioMed · 1,106 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PharMolix/OpenBioMed --skill disease-drug-intelligence
Clone the repo
git clone --depth 1 https://github.com/PharMolix/OpenBioMed

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for disease-drug-intelligence

README.md
[![agentmods](https://agentmods.dev/badge/skills/pharmolix/openbiomed/disease-drug-intelligence/github.svg)](https://agentmods.dev/skills/pharmolix/openbiomed/disease-drug-intelligence)
Your own site
<a href="https://agentmods.dev/skills/pharmolix/openbiomed/disease-drug-intelligence"><img src="https://agentmods.dev/badge/skills/pharmolix/openbiomed/disease-drug-intelligence/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for disease-drug-intelligence

Your own site · 80×15
<a href="https://agentmods.dev/skills/pharmolix/openbiomed/disease-drug-intelligence"><img src="https://agentmods.dev/badge/skills/pharmolix/openbiomed/disease-drug-intelligence.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,372 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00120 $0.02372
Opus 5 $0.00060 $0.01186
Sonnet 5 $0.00024 $0.00474
Haiku 4.5 $0.00012 $0.00237

Measured 12d ago against content hash ec14992bb6f2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

disease-drug-intelligence scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (local_tools/__init__.py, local_tools/chembl_api.py, local_tools/clinicaltrials_api.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/disease-drug-intelligence/SKILL.md · 169 lines

How it starts

The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.

疾病创新药情报整合

概述

将自然语言问题(如“阿尔茨海默病最近有哪些值得关注的新药?”)转换为可执行的多库查询计划。
生成面向决策的中文综合报告,而非仅返回药名列表。

快速开始

  1. 识别是否属于 disease_to_drug 场景。
  2. 标准化疾病实体并拆解“创新药”意图。
  3. 优先调用本地 local_tools/ 代码执行数据库查询。
  4. 做实体归一、证据整合、创新性筛选与分层输出。
  5. 生成中文报告并标注证据边界。

详细的数据结构、路由表、评分规则、报告模板见 disease_to_drug_playbook.md

本地执行约定

本技能不再依赖 BioDB MCP HTTP 服务。
涉及 ChEMBLClinicalTrialsSearch 的调用时,只允许直接使用当前技能目录下的本地 Python 代码:

  • local_tools/chembl_api.py
  • local_tools/clinicaltrials_api.py
  • local_tools/search_api.py
  • local_tools/run_tool.sh

推荐调用方式:

bash local_tools/run_tool.sh chembl_api.py search_target EGFR
bash local_tools/run_tool.sh chembl_api.py search_molecule osimertinib
bash local_tools/run_tool.sh chembl_api.py get_drug_by_id CHEMBL3545063
bash local_tools/run_tool.sh clinicaltrials_api.py get_studies --query-cond "lung cancer" --fields NCTId BriefTitle OverallStatus
bash local_tools/run_tool.sh search_api.py "latest EGFR inhibitor approval"

执行约束:

  • 优先 import 本地 local_tools/ 模块,或通过 bash local_tools/run_tool.sh ... 执行,不再假设 http://127.0.0.1:8086 一类 MCP 服务存在。
  • 不要直接依赖裸 python 命令;统一通过 run_tool.sh 解析可用解释器。run_tool.sh 会优先使用 python3,仅在缺失时才回退到 python
  • Search 需要运行,必须确认已安装 langchain_tavily 且环境变量 TAVILY_API_KEY 已设置。
  • 当前数据库查询能力仅包含 ChEMBLClinicalTrialsSearch。与本技能当前实现无关的其他数据库说明应忽略,不参与执行。
  • Search 的执行只允许通过 bash local_tools/run_tool.sh search_api.py ...SearchAPI.run(query) 完成;不得绕过本地工具直接调用外部网页搜索。
  • 只有在用户明确要求使用外部网页搜索,且同时说明本地 Search 工具不可用或结果不足时,才允许把外部网页搜索作为最终兜底;否则一律禁止。

触发与判定

当用户问题同时包含以下信息时,触发本技能:

  • 疾病实体:如糖尿病、肺癌、阿尔茨海默病、肥胖症、NASH、RA。
  • 药物创新意图:如创新药、新机制药、在研药、前沿药、值得关注的新药。

若只提“癌症创新药”等过宽问题,先建议缩小病种;若用户不愿缩小,默认给 Top 癌种与 Top 机制概览。

工作流(固定骨架)

Step 0 问题结构化

构造任务对象(示例):

{
  "task_type": "disease_to_drug",
  "focus": "innovative_drugs",
  "disease_raw": "糖尿病",
  "time_constraint": null,
  "region_constraint": null,
  "stage_constraint": null
}

Step 1 疾病标准化

输出 canonical_diseasesubtypesaliasespreferred_query_terms
若用户未指定亚型,先做总疾病分析,再强调研发更活跃亚型(例如 diabetes 下优先覆盖 T2DM)。

Read the full file on GitHub · 169 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 169 lines · 120 tokens per session scan A ec14992bb6f2

Subscribe to this mod's changes

disease-drug-intelligence is a skill published in the GitHub repository PharMolix/OpenBioMed (1,106 stars, last pushed 1mo ago), licensed MIT. It adds 120 tokens to every session and 2,372 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

phylogenetics

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

K-Dense-AI/scientific-agent-skills · 68 tokens

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

mapping-to-snomed

Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…

maziyarpanahi/openmed · 205 tokens