Agent skill

Drug-Repurposing-Hub

Query the Broad Institute Drug Repurposing Hub (~6,800 compounds). Look up drugs by name, gene target, MOA, disease area, Broad ID, or InChIKey. Returns clinical phase, mechanism of action, targets, disease area, indication, and chemical identifiers.

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

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

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

# Drug Repurposing Hub Query Skill Search the Broad Institute Drug Repurposing Hub by any entity. Auto-detects input type by pattern: | Input Pattern | Detected As | Match Logic | |---|---|---| | `BRD-A12345678` | Broad compound ID | prefix on `broad_id` | | `ABCDEFGHIJKLMN-OPQRSTUVWX-Y` | InChIKey | exact on `InChIKey` | | `EGFR`, `BRAF`, `TOP1` | Gene / target | exact token in `target` (pipe-separated) | | anything else | free text | substring on `pert_iname`, `moa`, `indication`, `disease_area` | ## API | Function | Input | Returns | |---|---|---| | `load_drugs(path)` | drug TSV path | list[dict] | | `load_samples(path)` | sample TSV path | list[dict] | | `load_merged()` | — | list[dict] (drugs + chemical IDs from samples) | | `search(entity)` | single entity string | list[dict] | | `search_batch(entities)` | list of entity strings | dict[str, list[dict]] | | `summarize(hits, entity)` | hits + label | compact LLM-readable text | | `to_json(hits)` | list[dict] | list[dict] (JSON-serialisable) | ## Usage See `if __name__ == "__main__"` block in `29_Drug_Repurposing_Hub.py` for runnable examples covering: drug name, gene target, MOA keyword, disease area, batch search, and JSON out

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

Query the Broad Institute Drug Repurposing Hub (~6,800 compounds). Look up drugs by name, gene target, MOA, disease area, Broad ID, or InChIKey. Returns clinical phase, mechanism of action, targets, disease area, indication, and chemical identifiers.

How do I install it?

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