Agent skill · Backend & API

faers-query

Query the FDA Adverse Event Reporting System (FAERS) via openFDA API. Use whenever the user asks about adverse drug reactions, side effects, drug safety signals, or wants to look up reported adverse events for one or more drug names.

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

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

Facts
Files in the skill folder: 6
SKILL.md size: 1 KB
Bundled scripts: yes
Path: skills/drugclaw/faers/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

# FAERS Query Skill Query adverse event reports from FDA's FAERS database. No API key required. ## API | Function | Input | Returns | |---|---|---| | `get_metadata()` | — | `{total, last_updated}` | | `count_reactions(drug, top_n)` | single drug name | `[{term, count}, ...]` | | `count_reactions_batch(drugs, top_n)` | list of drug names | `{drug: [{term, count}, ...]}` | | `search_adverse_events(drug, limit)` | single drug name | raw openFDA response dict | | `summarize_reactions(reactions, drug)` | reaction list + label | compact one-line text | ## Usage See `if __name__ == "__main__"` block in `faers_query.py` for runnable examples covering: single drug query, batch query, metadata retrieval, raw report inspection, and LLM-friendly summary output. ## Notes - Drug names should be uppercase (auto-converted internally). - Input accepts a single string or a list of strings for batch queries. - `summarize_reactions` produces compact `DRUG: reaction(count), ...` format suitable for LLM context. - Source: openFDA Drug Adverse Events endpoint (`https://api.fda.gov/drug/event.json`).

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

Query the FDA Adverse Event Reporting System (FAERS) via openFDA API. Use whenever the user asks about adverse drug reactions, side effects, drug safety signals, or wants to look up reported adverse events for one or more drug names.

How do I install it?

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