Agent skill · Databases

repodb-query

Query the RepoDB drug repurposing database. Use whenever the user asks about drug-disease associations, drug repurposing candidates, or wants to look up any entity (drug name, indication, DrugBank ID, UMLS CUI, NCT ID) in RepoDB.

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

# RepoDB Query Skill Search RepoDB records by any entity. Auto-detects type by prefix: | Input Pattern | Detected As | Match Logic | |---|---|---| | `DB00584` | DrugBank ID | exact on `drugbank_id` | | `C0020538` | UMLS CUI | exact on `ind_id` | | `NCT00001234` | Trial ID | exact on `NCT` | | anything else | free text | substring on `drug_name` OR `ind_name` | ## API | Function | Input | Returns | |---|---|---| | `load_repodb(path)` | CSV path | DataFrame | | `search(df, entity)` | single entity string | DataFrame | | `search_batch(df, entities)` | list of entity strings | dict[str, DataFrame] | | `summarize(hits, entity)` | DataFrame + label | compact text | | `to_json(hits)` | DataFrame | list[dict] | ## Usage See `if __name__ == "__main__"` block in `repodb_query.py` for runnable examples covering: drug name, DrugBank ID, UMLS CUI, indication name, batch search, and JSON output. ## Data - **Source**: `full.csv` (comma or tab separated, auto-detected) - **Columns**: `drug_name`, `drugbank_id`, `ind_name`, `ind_id`, `NCT`, `status`, `phase`, `DetailedStatus` - **Path**: `DATA_PATH` variable in `repodb_query.py`

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

Query the RepoDB drug repurposing database. Use whenever the user asks about drug-disease associations, drug repurposing candidates, or wants to look up any entity (drug name, indication, DrugBank ID, UMLS CUI, NCT ID) in RepoDB.

How do I install it?

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