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.
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.
npx skills add PharMolix/OpenBioMed --skill drug-drug-interaction-analysisgit clone --depth 1 https://github.com/PharMolix/OpenBioMedWrote 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.
[](https://agentmods.dev/skills/pharmolix/openbiomed/drug-drug-interaction-analysis)<a href="https://agentmods.dev/skills/pharmolix/openbiomed/drug-drug-interaction-analysis"><img src="https://agentmods.dev/badge/skills/pharmolix/openbiomed/drug-drug-interaction-analysis/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.
<a href="https://agentmods.dev/skills/pharmolix/openbiomed/drug-drug-interaction-analysis"><img src="https://agentmods.dev/badge/skills/pharmolix/openbiomed/drug-drug-interaction-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00078 | $0.01201 |
| Opus 5 | $0.00039 | $0.00600 |
| Sonnet 5 | $0.00016 | $0.00240 |
| Haiku 4.5 | $0.00008 | $0.00120 |
Grade A, and why
drug-drug-interaction-analysis scanned grade A with 1 finding 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 13d ago.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
response = requests.get(f"{KEGG_API}/find/drug/{drug_name}") How it starts
The opening of the file, as written. The whole thing — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Drug-Drug Interaction Analysis
Analyze potential drug-drug interactions (DDI) for medication safety assessment.
When to Use
- Checking interactions between prescribed medications
- Evaluating DDI risk for polypharmacy patients
- Understanding interaction mechanisms (CYP enzymes, shared targets)
- Clinical decision support for drug combinations
Workflow
Step 1: Resolve Drug Names to KEGG IDs
import requests
KEGG_API = "https://rest.kegg.jp"
def find_drug_id(drug_name: str) -> str:
"""Find KEGG drug ID from drug name."""
response = requests.get(f"{KEGG_API}/find/drug/{drug_name}")
if response.ok and response.text.strip():
# Parse first result: "dr:D00109\tAspirin..."
line = response.text.strip().split('\n')[0]
return line.split('\t')[0] # Returns "dr:D00109"
return None
Step 2: Query KEGG DDI API
def get_ddi(drug_ids: list) -> list:
"""Query KEGG DDI for multiple drugs."""
ids = "+".join(drug_ids)
response = requests.get(f"{KEGG_API}/ddi/{ids}")
interactions = []
for line in response.text.strip().split('\n'):
if line:
parts = line.split('\t')
interactions.append({
"drug_a": parts[0],
"drug_b": parts[1],
"severity": parts[2],
"mechanism": parts[3] if len(parts) > 3 else ""
})
return interactions
Step 3: Get Detailed Drug Information
def get_drug_info(drug_id: str) -> dict:
"""Get detailed drug information from KEGG."""
response = requests.get(f"{KEGG_API}/get/{drug_id}")
info = {"id": drug_id, "targets": [], "enzymes": []}
for line in response.text.split('\n'):
if line.startswith("NAME"):
info["name"] = line.split(maxsplit=1)[1].strip()
elif line.startswith("TARGET"):
info["targets"].append(line.split(maxsplit=1)[1])
elif line.startswith("METABOLISM"):
info["enzymes"].append(line.split(maxsplit=1)[1])
return info
What ships with it
3 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.
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.
- 13d ago First seen · 158 lines · 78 tokens per session scan A d7712d232c41
drug-drug-interaction-analysis is a skill published in the GitHub repository PharMolix/OpenBioMed (1,105 stars, last pushed 1mo ago), licensed MIT. It adds 78 tokens to every session and 1,201 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
translational-safety
Safety pharmacology assessment, CTCAE grading, organ-specific toxicity biomarkers, CYP liability analysis, structural alerts, and drug-drug interaction evaluation.
drug-repurposing
Reason about drug repurposing strategies in HCLS — choosing between target-based and phenotype-based approaches, evaluating mechanism-of-action overlap, querying drug-gene interaction databases, assessing clinical translatability, and ranking candidates by evidence strength. Use when the user asks to repurpose a drug…
drug-labels-search
Search FDA drug labels with natural language queries. Official drug information, indications, and safety data via Valyu.
drugbank-search
Search DrugBank comprehensive drug database with natural language queries. Drug mechanisms, interactions, and safety data powered by Valyu.
drug-labels-search
Search FDA drug labels with natural language queries. Official drug information, indications, and safety data via Valyu.
drugbank-search
Search DrugBank comprehensive drug database with natural language queries. Drug mechanisms, interactions, and safety data powered by Valyu.