ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

clinical-trial-search

Search clinical trial databases similar to ClinicalTrials.gov. Use this skill whenever the user asks about clinical trials, drug trials, indications, targets, drug names, trial phases, NCT IDs, enrollment, or recruitment. Automatically parses natural language questions into structured query parameters and calls the backend API to return matching trial records. Trigger words include: clinical trial, NCT, drug development, indication, target, phase, enrollment, recruitment, sponsor, cohort, arm, endpoint, efficacy, safety data.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bombert/clinical-trail
Or

Clinical Trial Search Skill

This skill converts natural language questions into structured API queries against a clinical trial database, then presents the results in a readable format.

Workflow

  1. Parse user intent — Extract key entities from the user's question
  2. Build query parameters — Map entities to the query schema below
  3. Execute the query — Run scripts/search.py
  4. Present results — Format and display trials to the user

Step 1: Extract Keywords

Identify the following entity types from the user's question:

FieldTypeDescriptionExample
nctidList[str]NCT identifier(s)["NCT04280783"]
acronymList[str]Trial acronym(s)["KEYNOTE-590"]
companyList[str]Sponsor company name(s)["Pfizer", "Roche"]
indicationList[str]Disease / indication["lung cancer", "NSCLC"]
phaseList[str]Trial phase(s)["Preclinical", "I", "II", "III", "IV", "Others"]
targetdictBiological target(s){"logic": "or", "data": ["PD-1", "VEGF"]}
drug_namedictDrug name(s){"logic": "or", "data": ["pembrolizumab"]}
drug_modalitydictDrug modality / type{"logic": "or", "data": ["antibody", "small molecule"]}
drug_featuredictDrug feature(s){"logic": "or", "data": ["bispecific"]}
locationdictTrial location(s){"logic": "or", "data": ["China", "United States", "Japan"]}
route_of_administrationdictRoute of administration{"logic": "or", "data": ["IV", "oral"]}
has_result_summaryboolOnly trials with result summariestrue
official_databoolOnly official data sourcesfalse
page_numintPage index (0-based)0
page_sizeintResults per page (1–200)10

Dict field format:

{"logic": "or", "data": ["value1", "value2"]}

Metadata

Author@bombert
Stars4190
Views0
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bombert-clinical-trail": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.