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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- API
- Usage
- Quick Examples
- Data Source
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.
