Agent skill

tooluniverse-immunotherapy-response-prediction

Predict patient response to immune checkpoint inhibitors (ICIs) using multi-biomarker integration. Given a cancer type, somatic mutations, and optional biomarkers (TMB, PD-L1, MSI status), performs systematic analysis across 11 phases covering TMB classification, neoantigen burden estimation, MSI/MMR assessment, PD-L1 evaluation, immune microenvironment profiling, mutation-based resistance/sensitivity prediction, clinical evidence retrieval, and multi-biomarker score integration. Generates a quantitative ICI Response Score (0-100), response likelihood tier, specific ICI drug recommendations wi

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

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

Facts
Files in the skill folder: 5
SKILL.md size: 32 KB
Bundled scripts: yes
Path: skills/openclaw/tooluniverse-immunotherapy-response-prediction/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.

Review
written from the skill's own SKILL.md · Aug 5, 2026

What it does

Predict patient response to immune checkpoint inhibitors (ICIs) using multi-biomarker integration. Transforms a patient tumor profile (cancer type + mutations + biomarkers) into a quantitative ICI Response Score with drug-specific recommendations, resistance risk assessment, and monitoring plan.

KEY PRINCIPLES:

  1. Report-first approach - Create report file FIRST, then populate progressively
  2. Evidence-graded - Every finding has an evidence tier (T1-T4)
  3. Quantitative output - ICI Response Score (0-100) with transparent component breakdown
  4. Cancer-specific - All thresholds and predictions are cancer-type adjusted
  5. Multi-biomarker - Integrate TMB + MSI + PD-L1 + neoantigen + mutations
  6. Resistance-aware - Always check for known resistance mutations (STK11, PTEN, JAK1/2, B2M)
  7. Drug-specific - Recommend specific ICI agents with evidence
  8. Source-referenced - Every statement cites the tool/database source
  9. English-first queries - Always use English terms in tool calls

How it works

The agent is instructed to process input cancer type, mutations, and optional biomarkers to generate a structured, evidence-graded report across 11 phases. It starts by standardizing inputs (cancer context, mutations, gene IDs), then conducts phase-specific analyses (TMB classification, neoantigen burden, MSI/MMR status, PD-L1 evaluation, immune microenvironment, mutation-based predictors, clinical evidence, and multi-biomarker score integration). It computes an ICI Response Score and provides drug-specific recommendations with evidence, resistance risk factors, and a monitoring plan. The workflow includes phase-specific steps such as resolving cancer type to an EFO ID, parsing mutations, identifying driver and resistance mutations, estimating neoantigen load, and retrieving FDA-approved ICIs and clinical evidence. The system uses the verified tool parameter reference before tool calls and relies on cancer-type-adjusted thresholds and FDA contexts for decisions.

Concrete steps include:

  • Resolve cancer type to EFO ID and fetch cancer-specific ICI context.
  • Parse and normalize mutations (gene, variant, type).
  • Map genes to IDs using gene-query tools.
  • Classify TMB if provided, or estimate from mutation list, then apply cancer-specific thresholds.
  • Estimate neoantigen load from mutation counts with defined conversion rules.
  • Assess MSI/MMR status, check MMR genes in mutations, and consult FDA MSI-H approvals.
  • Classify PD-L1 expression with cancer-specific thresholds and FDA cutoffs.
  • Profile immune microenvironment and assess immune escape indicators.
  • Identify resistance/sensitivity mutations (e.g., STK11, PTEN, JAK1/2, B2M; POLE).
  • Retrieve FDA-approved ICIs and clinical evidence for the cancer type.
  • Integrate multi-biomarker data into a single ICI Response Score (0-100) with component breakdown.
  • Provide clinical recommendations for ICI drugs with a monitoring plan and alternative strategies.

When to use it

Apply when user asks:

  • a question about likely response to immunotherapy, selecting an ICI, or biomarker-guided ICI decisions across cancer types.
  • scenarios involving combinations or cancer-type–specific ICI choices with biomarker considerations.

What it can touch

It uses tools to obtain disease descriptions, drug descriptions, associated drugs, drug mechanisms, and gene information such as:

  • OpenTargets_get_disease_id_description_by_name
  • OpenTargets_get_drug_id_description_by_name
  • OpenTargets_get_associated_drugs_by_disease_efoId
  • OpenTargets_get_drug_mechanisms_of_action_by_chemblId
  • OpenTargets_get_approved_indications_by_drug_chemblId
  • OpenTargets_get_drug_description_by_chemblId
  • OpenTargets_get_associated_targets_by_drug_chemblId
  • MyGene_query_genes
  • EnsemblVEP_annotate_rsid (for variant impact)
  • civic and IEDB related epitopes data
  • UniProt_get_function_by_accession

Caveats

  • The approach relies on cancer-type–specific thresholds and FDA contexts; results are evidence-graded with tiers (T1-T4) and should be interpreted in clinical context.
  • It flags known resistance mutations (STK11, PTEN, JAK1/2, B2M) and considers mutation-based resistance/sensitivity signals; actual clinical decisions depend on full patient data and clinical judgment.
  • No outcomes are promised beyond the explicit scoring, thresholds, and recommendations described in the workflow.
From the SKILL.md

# Immunotherapy Response Prediction Predict patient response to immune checkpoint inhibitors (ICIs) using multi-biomarker integration. Transforms a patient tumor profile (cancer type + mutations + biomarkers) into a quantitative ICI Response Score with drug-specific recommendations, resistance risk assessment, and monitoring plan. **KEY PRINCIPLES**: 1. **Report-first approach** - Create report file FIRST, then populate progressively 2. **Evidence-graded** - Every finding has an evidence tier (T1-T4) 3. **Quantitative output** - ICI Response Score (0-100) with transparent component breakdown 4. **Cancer-specific** - All thresholds and predictions are cancer-type adjusted 5. **Multi-biomarker** - Integrate TMB + MSI + PD-L1 + neoantigen + mutations 6. **Resistance-aware** - Always check for known resistance mutations (STK11, PTEN, JAK1/2, B2M) 7. **Drug-specific** - Recommend specific ICI agents with evidence 8. **Source-referenced** - Every statement cites the tool/database source 9. **English-first queries** - Always use English terms in tool calls --- ## When to Use Apply when user asks: - "Will this patient respond to immunotherapy?" - "Should I give pembrolizumab to this melano

What's inside
Steps it walks through
  1. When to Use
  2. Input Parsing
  3. Accepted Input Formats
  4. Cancer Type Normalization
  5. Gene Symbol Normalization
  6. Phase 0: Tool Parameter Reference (CRITICAL)
  7. Verified Tool Parameters
  8. Workflow Overview
  9. Phase 1: Input Standardization & Cancer Context
  10. Step 1.1: Resolve Cancer Type
  11. Step 1.2: Parse Mutations
  12. Step 1.3: Resolve Gene IDs
  13. Phase 2: TMB Analysis
  14. Step 2.1: TMB Classification
Ships with 4 files
  • EXAMPLES.md
  • QUICK_START.md
  • TOOLS_REFERENCE.md
  • test_skill.py
More from awesome-bio-agent-skills
All skills →
About this skill
What does the tooluniverse-immunotherapy-response-prediction skill do?

Predict patient response to immune checkpoint inhibitors (ICIs) using multi-biomarker integration. Given a cancer type, somatic mutations, and optional biomarkers (TMB, PD-L1, MSI status), performs systematic analysis across 11 phases covering TMB classification, neoantigen burden estimation, MSI/MMR assessment, PD-L1 evaluation, immune microenvironment profiling, mutation-based resistance/sensitivity prediction, clinical evidence retrieval, and multi-biomarker score integration. Generates a quantitative ICI Response Score (0-100), response likelihood tier, specific ICI drug recommendations wi

How do I install it?

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