TO

tooluniverse-protein-therapeutic-design

Supports AI-guided de novo protein design using RFdiffusion and ProteinMPNN. Includes structure validation for therapeutic development.

Install

mkdir -p .claude/skills/tooluniverse-protein-therapeutic-design && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/5531" && unzip -o skill.zip -d .claude/skills/tooluniverse-protein-therapeutic-design && rm skill.zip

Installs to .claude/skills/tooluniverse-protein-therapeutic-design

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

AI-guided de novo protein design — RFdiffusion backbone generation, ProteinMPNN sequence design, structure validation (pLDDT, pTM, MPNN scores). Use for designing therapeutic protein binders, novel scaffolds, enzyme variants, and miniprotein/protein-interface design before experimental validation.
298 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Advanced

Key capabilities

  • Generate protein backbones via RFdiffusion
  • Design sequences with ProteinMPNN
  • Predict structures with AlphaFold2
  • Grade design stability

How it works

It chains together specific computational biology models to iteratively generate, refine, and validate protein geometries for stability and binding potential.

Inputs & outputs

You give it
Target binding site and design constraints
You get back
Optimized protein sequences and structural predictions

When to use tooluniverse-protein-therapeutic-design

  • Designing protein binders
  • Creating novel protein scaffolds
  • Optimizing enzyme variants
  • Validating structural predictions

About this skill

Therapeutic Protein Designer

AI-guided de novo protein design using RFdiffusion backbone generation, ProteinMPNN sequence optimization, and structure validation for therapeutic protein development.

KEY PRINCIPLES:

  1. Structure-first - Generate backbone geometry before sequence
  2. Target-guided - Design binders with target structure in mind
  3. Iterative validation - Predict structure to validate designs
  4. Developability-aware - Consider aggregation, immunogenicity, expression
  5. Evidence-graded - Grade designs by confidence metrics
  6. Actionable output - Provide sequences ready for experimental testing
  7. English-first queries - Always use English terms in tool calls

Therapeutic protein design starts with the target interaction. What binding surface do you need to cover? A small pocket = nanobody or peptide. A large flat surface = designed protein. Stability, immunogenicity, and manufacturability constrain the design space.

LOOK UP, DON'T GUESS

When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.


COMPUTE, DON'T DESCRIBE

When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.

When to Use

Apply when user asks to:

  • Design a protein binder, therapeutic protein, or scaffold
  • Optimize a protein sequence for function
  • Design a de novo enzyme
  • Generate protein variants for target binding

Workflow Overview

Phase 1: Target Characterization
  Get structure (PDB, EMDB cryo-EM, AlphaFold), identify binding epitope

Phase 2: Backbone Generation (RFdiffusion)
  Define constraints, generate >= 5 backbones, filter by geometry

Phase 3: Sequence Design (ProteinMPNN)
  Design >= 8 sequences per backbone, sample with temperature control

Phase 4: Structure Validation (ESMFold/AlphaFold2)
  Predict structure, compare to backbone, assess pLDDT/pTM

Phase 5: Developability Assessment
  Aggregation, pI, expression prediction

Phase 6: Report Synthesis
  Ranked candidates, FASTA, experimental recommendations

Critical Requirements

Report-First Approach (MANDATORY)

  1. Create [TARGET]_protein_design_report.md first with section headers
  2. Progressively update as designs are generated
  3. Output [TARGET]_designed_sequences.fasta and [TARGET]_top_candidates.csv

Design Documentation (MANDATORY)

Every design MUST include: Sequence, Length, Target, Method, and Quality Metrics (pLDDT, pTM, MPNN score, binding prediction).


NVIDIA NIM Tools

ToolPurposeKey Parameter
NvidiaNIM_rfdiffusion (requires NVIDIA_API_KEY env var; free key at build.nvidia.com)Backbone generationdiffusion_steps (NOT num_steps)
NvidiaNIM_proteinmpnn (requires NVIDIA_API_KEY env var; free key at build.nvidia.com)Sequence designpdb_string (NOT pdb)
ESMFold_predict_structureFast validationsequence (NOT seq)
NvidiaNIM_alphafold2 (requires NVIDIA_API_KEY env var; free key at build.nvidia.com)High-accuracy structure inference from sequencesequence, algorithm
NvidiaNIM_esm2_650m (requires NVIDIA_API_KEY env var; free key at build.nvidia.com)Sequence embeddingssequences, format

Common Parameter Mistakes

ToolWrongCorrect
NvidiaNIM_rfdiffusion (requires NVIDIA_API_KEY)num_steps=50diffusion_steps=50
NvidiaNIM_proteinmpnn (requires NVIDIA_API_KEY)pdb=contentpdb_string=content
ESMFold_predict_structureseq="MVLS..."sequence="MVLS..."
NvidiaNIM_alphafold2 (requires NVIDIA_API_KEY)seq="MVLS..."sequence="MVLS..."

NVIDIA NIM Requirements

  • API Key: NVIDIA_API_KEY environment variable required
  • Rate limits: 40 RPM (1.5 second minimum between calls)
  • AlphaFold2 may return 202 (polling required); RFdiffusion and ESMFold are synchronous

Supporting Tools

ToolPurposeKey Parameters
PDBe_get_uniprot_mappingsFind PDB structuresuniprot_id
RCSBData_get_entryDownload PDB filepdb_id
alphafold_get_predictionGet AlphaFold DB structureaccession
EMDB_search_structuresSearch cryo-EM mapsquery
EMDB_get_structureGet entry detailsentry_id
UniProt_get_entry_by_accessionGet target sequenceaccession
InterPro_get_protein_domainsGet domainsaccession

Evidence Grading

TierCriteria
T1 (best)pLDDT >85, pTM >0.8, low aggregation, neutral pI
T2pLDDT >75, pTM >0.7, acceptable developability
T3pLDDT >70, pTM >0.65, developability concerns
T4Failed validation or major developability issues

Completeness Checklist

  • Target structure obtained (PDB or predicted)
  • Binding epitope identified
  • >= 5 backbones generated, top 3-5 selected
  • >= 8 sequences per backbone, MPNN scores reported
  • All sequences validated (ESMFold), pLDDT/pTM reported, >= 3 passing
  • Developability assessed (aggregation, pI, expression)
  • Ranked candidate list, FASTA file, experimental recommendations

Reference Files

  • DESIGN_PROCEDURES.md - Phase-by-phase code examples, sampling parameters, fallback chains
  • TOOLS_REFERENCE.md - Complete tool documentation with code examples
  • EXAMPLES.md - Sample design workflows and outputs
  • CHECKLIST.md - Detailed phase checklists and quality metrics
  • design_templates.md - Report templates and output format examples

When not to use it

  • Designing non-protein therapeutic agents
  • General protein structure visualization

Prerequisites

RFdiffusionProteinMPNNAlphaFold2

Limitations

  • High computational resource demand
  • Validation requires experimental testing

How it compares

It automates the full structural design pipeline instead of relying on manual modeling software.

Compared to similar skills

tooluniverse-protein-therapeutic-design side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
tooluniverse-protein-therapeutic-design (this skill)12moNo flagsAdvanced
esm37moReviewAdvanced
hugging-face-paper-publisher66moReviewIntermediate
torchdrug37moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

More by mims-harvard

View all by mims-harvard

tooluniverse-drug-research

mims-harvard

Generates comprehensive drug research reports with compound disambiguation, evidence grading, and mandatory completeness sections. Covers identity, chemistry, pharmacology, targets, clinical trials, safety, pharmacogenomics, and ADMET properties. Use when users ask about drugs, medications, therapeutics, or need drug profiling, safety assessment, or clinical development research.

323

tooluniverse-pharmacovigilance

mims-harvard

Analyze drug safety signals from FDA adverse event reports, label warnings, and pharmacogenomic data. Calculates disproportionality measures (PRR, ROR), identifies serious adverse events, assesses pharmacogenomic risk variants. Use when asked about drug safety, adverse events, post-market surveillance, or risk-benefit assessment.

323

tooluniverse-precision-oncology

mims-harvard

Provide actionable treatment recommendations for cancer patients based on molecular profile. Interprets tumor mutations, identifies FDA-approved therapies, finds resistance mechanisms, matches clinical trials. Use when oncologist asks about treatment options for specific mutations (EGFR, KRAS, BRAF, etc.), therapy resistance, or clinical trial eligibility.

321

tooluniverse-expression-data-retrieval

mims-harvard

Retrieves gene expression and omics datasets from ArrayExpress and BioStudies with gene disambiguation, experiment quality assessment, and structured reports. Creates comprehensive dataset profiles with metadata, sample information, and download links. Use when users need expression data, omics datasets, or mention ArrayExpress (E-MTAB, E-GEOD) or BioStudies (S-BSST) accessions.

217

tooluniverse-literature-deep-research

mims-harvard

Conduct comprehensive literature research with target disambiguation, evidence grading, and structured theme extraction. Creates a detailed report with mandatory completeness checklist, biological model synthesis, and testable hypotheses. For biological targets, resolves official IDs (Ensembl/UniProt), synonyms, naming collisions, and gathers expression/pathway context before literature search. Default deliverable is a report file; for single factoid questions, uses a fast verification mode and may include an inline answer. Use when users need thorough literature reviews, target profiles, or to verify specific claims from the literature.

213

tooluniverse-target-research

mims-harvard

Gather comprehensive biological target intelligence from 9 parallel research paths covering protein info, structure, interactions, pathways, expression, variants, drug interactions, and literature. Features collision-aware searches, evidence grading (T1-T4), explicit Open Targets coverage, and mandatory completeness auditing. Use when users ask about drug targets, proteins, genes, or need target validation, druggability assessment, or comprehensive target profiling.

25

You might also like

esm

davila7

Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel proteins; generating protein embeddings; performing inverse folding; or conducting protein engineering tasks. Supports both local model usage and cloud-based Forge API for scalable inference.

353

hugging-face-paper-publisher

patchy631

Publish and manage research papers on Hugging Face Hub. Supports creating paper pages, linking papers to models/datasets, claiming authorship, and generating professional markdown-based research articles.

634

torchdrug

davila7

Graph-based drug discovery toolkit. Molecular property prediction (ADMET), protein modeling, knowledge graph reasoning, molecular generation, retrosynthesis, GNNs (GIN, GAT, SchNet), 40+ datasets, for PyTorch-based ML on molecules, proteins, and biomedical graphs.

326

string-database

davila7

Query STRING API for protein-protein interactions (59M proteins, 20B interactions). Network analysis, GO/KEGG enrichment, interaction discovery, 5000+ species, for systems biology.

217

transformer-lens-interpretability

davila7

Provides guidance for mechanistic interpretability research using TransformerLens to inspect and manipulate transformer internals via HookPoints and activation caching. Use when reverse-engineering model algorithms, studying attention patterns, or performing activation patching experiments.

215

denario

davila7

Multiagent AI system for scientific research assistance that automates research workflows from data analysis to publication. This skill should be used when generating research ideas from datasets, developing research methodologies, executing computational experiments, performing literature searches, or generating publication-ready papers in LaTeX format. Supports end-to-end research pipelines with customizable agent orchestration.

213

Search skills

Search the agent skills registry