Agent skill

dailymed-query

Query DailyMed for FDA drug label / package insert information. Use whenever the user asks about drug labeling, SPL documents, prescribing information, NDC codes, or needs to look up current FDA-approved drug details by name or NDC. Supports single entity or batch queries.

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

# DailyMed Query Skill Search DailyMed SPL labels by drug name or NDC code. No API key required. | Input Type | Function | Returns | |---|---|---| | drug name (str) | `search_drug_labels(name, limit)` | list of label summaries | | SPL set ID | `get_label_detail(set_id)` | dict (parsed from XML) | | NDC code | `get_ndc_info(ndc, limit)` | list of label summaries (JSON) | | str or list[str] | `query(entities, limit)` | concise text summary | | list[str] | `search_batch(entities, limit)` | dict[entity → results] | ## API | Function | Input | Returns | |---|---|---| | `search_drug_labels(drug_name, limit=5)` | drug name string | `list[dict]` with `title`, `setid` | | `get_label_detail(set_id)` | SPL set ID | `dict` (XML→dict, keys vary by label) | | `get_ndc_info(ndc, limit=5)` | NDC string | `list[dict]` with `title`, `setid` | | `search_batch(entities, limit=3)` | list of drug names | `dict[str, list[dict]]` | | `summarize(results, entity)` | results list + label | compact text | | `query(entities, limit=3)` | single str or list[str] | LLM-readable text block | ## Usage See `if __name__ == "__main__"` block in `06_DailyMed.py` for runnable examples covering: single drug search, batch

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

Query DailyMed for FDA drug label / package insert information. Use whenever the user asks about drug labeling, SPL documents, prescribing information, NDC codes, or needs to look up current FDA-approved drug details by name or NDC. Supports single entity or batch queries.

How do I install it?

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