Strategic clinical trial design feasibility assessment using ToolUniverse. Evaluates patient population sizing, biomarker prevalence, endpoint selection, comparator analysis, safety monitoring, and regulatory pathways. Creates comprehensive feasibility reports with evidence gr...
64
76%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Protocol Design/tooluniverse-clinical-trial-design/SKILL.mdSystematically assess clinical trial feasibility by analyzing 6 research dimensions. Produces comprehensive feasibility reports with quantitative enrollment projections, endpoint recommendations, and regulatory pathway analysis.
IMPORTANT: Always use English terms in tool calls (drug names, disease names, biomarker names), even if the user writes in another language. Only try original-language terms as a fallback if English returns no results. Respond in the user's language.
DO NOT show tool outputs to user. Instead:
[INDICATION]_trial_feasibility_report.md FIRST| Grade | Symbol | Criteria | Examples |
|---|---|---|---|
| A | ★★★ | Regulatory acceptance, multiple precedents | FDA-approved endpoint in same indication |
| B | ★★☆ | Clinical validation, single precedent | Phase 3 trial in related indication |
| C | ★☆☆ | Preclinical or exploratory | Phase 1 use, biomarker validation ongoing |
| D | ☆☆☆ | Proposed, no validation | Novel endpoint, no precedent |
Weighted composite score:
Interpretation: ≥75 = HIGH (proceed) | 50-74 = MODERATE (validate) | <50 = LOW (de-risk)
→ Detailed scoring rules: references/scoring_and_endpoints.md
Apply when users:
Trigger phrases: "clinical trial design", "trial feasibility", "enrollment projections", "endpoint selection", "trial planning", "Phase 1/2 design", "basket trial", "biomarker trial"
NOT for:
tooluniverse-clinical-trial-matchingtooluniverse-adverse-event-detectionfrom tooluniverse import ToolUniverse
tu = ToolUniverse(use_cache=True)
tu.load_tools()
# Example: EGFR+ NSCLC trial feasibility
indication = "EGFR-mutant non-small cell lung cancer"
biomarker = "EGFR L858R"
# Step 1: Get disease prevalence
disease_info = tu.tools.OpenTargets_get_disease_id_description_by_name(
diseaseName="non-small cell lung cancer"
)
# Step 2: Estimate biomarker prevalence
variants = tu.tools.ClinVar_search_variants(gene="EGFR", significance="pathogenic")
# Step 3: Find precedent trials
trials = tu.tools.search_clinical_trials(
condition="EGFR positive non-small cell lung cancer",
status="completed", phase="2"
)
# Step 4: Identify standard of care comparator
soc_drugs = tu.tools.FDA_OrangeBook_search_drugs(ingredient="osimertinib")
# Compile into feasibility report...Execute 6 parallel research dimensions:
Trial Design Query (e.g., "EGFR+ NSCLC trial, Phase 2, ORR endpoint")
│
├─ PATH 1: Patient Population Sizing
│ Disease prevalence → Biomarker prevalence → Eligibility funnel → Enrollment projection
│
├─ PATH 2: Biomarker Prevalence & Testing
│ Mutation frequency → CDx availability → Turnaround time → Alternative biomarkers
│
├─ PATH 3: Comparator Selection
│ Standard of care → Approved comparators → Historical controls → Placebo appropriateness
│
├─ PATH 4: Endpoint Selection
│ Primary endpoint precedents → FDA acceptance → Measurement feasibility → Surrogate vs clinical
│
├─ PATH 5: Safety Endpoints & Monitoring
│ Mechanism-based toxicity → Class effects → Organ monitoring → SMC plan
│
└─ PATH 6: Regulatory Pathway
Regulatory precedents → Breakthrough potential → Orphan designation → FDA guidance→ Detailed execution instructions & tool calls: references/research_paths_detail.md
Create [INDICATION]_trial_feasibility_report.md with:
# Clinical Trial Feasibility Report: [INDICATION]
**Date**: [YYYY-MM-DD] | **Trial Type**: [Phase 1/2] | **Primary Endpoint**: [ORR]
**Feasibility Score**: [0-100] - [LOW/MODERATE/HIGH]
## Key Findings
- **Patient Availability**: [Est. enrollable patients/year]
- **Enrollment Timeline**: [Months to target N]
- **Endpoint Precedent**: [Grade A/B/C/D]
- **Regulatory Pathway**: [505(b)(1), breakthrough, orphan]
- **Critical Risks**: [Top 3]
## Go/No-Go Recommendation
[RECOMMEND PROCEED / ADDITIONAL VALIDATION / DO NOT RECOMMEND]→ Detailed section templates: references/research_paths_detail.md
| Dimension | Weight | Score (0-10) | Weighted | Grade |
|-----------|--------|--------------|----------|-------|
| Patient Availability | 30% | [X] | [0.30×X] | [★★☆] |
| Endpoint Precedent | 25% | [X] | [0.25×X] | [★★★] |
| Regulatory Clarity | 20% | [X] | [0.20×X] | [★★☆] |
| Comparator Feasibility | 15% | [X] | [0.15×X] | [★★★] |
| Safety Monitoring | 10% | [X] | [0.10×X] | [★★☆] |
| **TOTAL** | **100%** | - | **[XX/100]** | - |→ Full scoring algorithm & dimension guides: references/scoring_and_endpoints.md
[INDICATION]_trial_feasibility_report.mdEGFR_L858R_NSCLC_trial_feasibility_report.mdAll 14 sections MUST be present (listed above).
Sections 1, 4, 5, 6, 7, 10, 13 — all key claims must carry evidence grades (★★★/★★☆/★☆☆/☆☆☆).
Show calculation with raw scores, weights, and evidence sources.
| Path | Primary Tools |
|---|---|
| PATH 1 | OpenTargets_get_disease_id_description_by_name, OpenTargets_get_diseases_phenotypes, ClinVar_search_variants, gnomAD_search_gene_variants |
| PATH 2 | ClinVar_get_variant_details, COSMIC_search_mutations, gnomAD_get_variant_details |
| PATH 3 | drugbank_get_drug_basic_info_by_drug_name_or_id, FDA_OrangeBook_search_drugs, FDA_get_drug_approval_history |
| PATH 4 | search_clinical_trials, PubMed_search_articles, FDA_get_drug_approval_history |
| PATH 5 | drugbank_get_pharmacology_by_drug_name_or_drugbank_id, FAERS_search_reports_by_drug_and_reaction, FAERS_count_reactions_by_drug_event |
| PATH 6 | FDA_get_drug_approval_history, PubMed_search_articles, search_clinical_trials |
All tools accessed via tu.tools.<tool_name>(<params>). Use English for all query parameters.
This skill accepts requests that match the documented purpose of tooluniverse-clinical-trial-design and include enough context to complete the workflow safely.
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
tooluniverse-clinical-trial-designonly handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
| File | Content |
|---|---|
| references/research_paths_detail.md | 6 Research Path detailed execution instructions, step-by-step code, report templates, tool references |
| references/scoring_and_endpoints.md | Feasibility Score complete algorithm, dimension scoring criteria, endpoint selection decision tree, success criteria definitions |
| references/examples_and_troubleshooting.md | Complete EGFR L858R example, 5 use cases, common pitfalls, best practices, integration guide |
63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.