Agent skill · Backend & API

rxnorm-query

Query the RxNorm drug naming and normalization API. Use whenever the user asks to look up an RxCUI, normalize a drug name, find drug interactions, retrieve brand/trade names, or resolve any clinical drug name via RxNorm. Supports single drug or batch queries. Trigger on mentions of RxNorm, RxCUI, drug normalization, drug interaction lookup, or brand-name resolution.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill rxnorm --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/rxnorm/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

# RxNorm Query Skill Look up clinical drug information via the RxNorm REST API (no API key required). ## Capabilities | Function | Input | Returns | |---|---|---| | `find_rxcui(name)` | drug name string | RxCUI string or None | | `get_drug_info(rxcui)` | RxCUI string | full info dict | | `get_drug_interactions(rxcui)` | RxCUI string | list of interaction dicts | | `get_related_drugs(rxcui, tty)` | RxCUI + term type | list of related drug dicts | | `normalize_drug_name(name)` | approximate drug string | normalized name string | | `query(entity)` | **str or list[str]** | dict keyed by drug name | | `summarize(results)` | output of `query()` | compact text summary | ## Quick Start ```python from 08_RxNorm import query, summarize # Single drug results = query("aspirin") print(summarize(results)) # Batch drugs results = query(["tylenol", "metformin", "ibuprofen"]) print(summarize(results)) ``` ## `query()` Output Schema ``` { "<drug_name>": { "rxcui": "1191" | None, "normalized_name": "aspirin", "interactions": [ {"description": "...", "severity": "...", "drugs": ["...", "..."]} ], "related": [ {"rxcui": "...", "name": "...", "tty": "..."} ] } } ``` ## Notes - **API**: RxNorm REST — `ht

What's inside
Steps it walks through
  1. Capabilities
  2. Quick Start
  3. query() Output Schema
  4. Notes
Ships with 5 files
  • README.md
  • __init__.py
  • example.py
  • retrieve.py
  • rxnorm_skill.py
More from awesome-bio-agent-skills
All skills →
About this skill
What does the rxnorm-query skill do?

Query the RxNorm drug naming and normalization API. Use whenever the user asks to look up an RxCUI, normalize a drug name, find drug interactions, retrieve brand/trade names, or resolve any clinical drug name via RxNorm. Supports single drug or batch queries. Trigger on mentions of RxNorm, RxCUI, drug normalization, drug interaction lookup, or brand-name resolution.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill rxnorm --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