Agent skill · Databases

DDInter

Query the DDInter drug-drug interaction database. Use whenever the user asks about drug-drug interactions, DDI severity levels, or wants to look up interactions for a drug name or DDInter ID.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill ddinter --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 6
SKILL.md size: 2 KB
Bundled scripts: yes
Path: skills/drugclaw/ddinter/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# DDInter Query Skill Search DDInter interaction records by drug name or DDInter ID. Auto-detects input type: | Input Pattern | Detected As | Match Logic | |---|---|---| | `DDInter582` | DDInter ID | exact on `DDInterID_A` or `DDInterID_B` | | anything else | drug name | exact then substring on `Drug_A` / `Drug_B` | ## API | Function | Input | Returns | |---|---|---| | `search(entity)` | drug name or DDInter ID | `list[dict]` | | `search_batch(entities)` | list of entity strings | `dict[str, list[dict]]` | | `get_interactions_between(drug_a, drug_b)` | two drug names | `list[dict]` | | `summarize(hits, entity)` | hit list + label | compact text | | `to_json(hits)` | hit list | `list[dict]` | | `list_drugs()` | — | sorted unique drug names | ## Usage See `if __name__ == "__main__"` block in `20_DDInter.py` for runnable examples covering: single drug search, DDInter ID lookup, pairwise interaction check, batch search, and JSON output. ## Key Fields Each interaction row contains: `DDInterID_A`, `Drug_A`, `DDInterID_B`, `Drug_B`, `Level` (Major / Moderate / Minor). ## Data - **Source**: 8 CSV files partitioned by ATC code (`ddinter_downloads_code_{A,B,D,H,L,P,R,V}.csv`) - **Path**: `re

What's inside
Steps it walks through
  1. API
  2. Usage
  3. Key Fields
  4. Data
Ships with 5 files
  • README.md
  • __init__.py
  • ddinter_skill.py
  • example.py
  • retrieve.py
More from awesome-bio-agent-skills
All skills →
About this skill
What does the DDInter skill do?

Query the DDInter drug-drug interaction database. Use whenever the user asks about drug-drug interactions, DDI severity levels, or wants to look up interactions for a drug name or DDInter ID.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill ddinter --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going