Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mims-harvard avatar

Tooluniverse Protein Therapeutic Design

  • 352 installs
  • 1.6k repo stars
  • Updated August 4, 2026
  • mims-harvard/tooluniverse

tooluniverse-protein-therapeutic-design is a ToolUniverse Claude Code skill that prototypes therapeutic protein design hypotheses by calling structure, binding, and design tools for developers evaluating candidates befor

About

tooluniverse-protein-therapeutic-design is a ToolUniverse skill for prototyping therapeutic protein design hypotheses inside Claude Code. Agents invoke ToolUniverse structure prediction, binding analysis, and protein design tools to explore candidates before committing wet-lab experiments or production bioinformatics pipelines. Developers in computational biology and biotech engineering reach for tooluniverse-protein-therapeutic-design when agent-assisted design iteration must stay inside a unified ToolUniverse tool surface instead of juggling disconnected CLI binaries.

  • Therapeutic protein design APIs
  • Structure and binding analysis
  • Candidate screening loops
  • Harvard ToolUniverse tooling
  • In-silico feasibility checks

Tooluniverse Protein Therapeutic Design by the numbers

  • 352 all-time installs (skills.sh)
  • +5 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #540 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-protein-therapeutic-design

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs352
repo stars1.6k
Last updatedAugust 4, 2026
Repositorymims-harvard/tooluniverse

How do agents prototype protein therapeutic designs?

Prototype therapeutic protein design hypotheses in Claude Code by calling ToolUniverse structure, binding, and design tools before committing wet-lab or production pipeline investments.

Who is it for?

Computational biology developers using Claude Code who need agent-driven protein therapeutic exploration via ToolUniverse APIs.

Skip if: Production wet-lab protocol authoring or general protein folding tutorials without ToolUniverse tool integration.

When should I use this skill?

An agent must explore therapeutic protein structures, binding, or design candidates before lab or pipeline investment.

What you get

Protein design hypotheses, structure predictions, binding assessments, and pre-wet-lab candidate shortlists.

  • protein design hypotheses
  • structure and binding assessments

Files

SKILL.mdMarkdownGitHub ↗

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

Related skills

How it compares

Choose tooluniverse-protein-therapeutic-design for integrated agent-driven protein exploration rather than standalone folding demos without binding or therapeutic context.

FAQ

What tools does tooluniverse-protein-therapeutic-design use?

tooluniverse-protein-therapeutic-design invokes ToolUniverse structure, binding, and protein design tools from Claude Code. The skill supports hypothesis prototyping before teams invest in wet-lab validation or production bioinformatics pipelines.

When should developers use tooluniverse-protein-therapeutic-design?

tooluniverse-protein-therapeutic-design fits early therapeutic candidate exploration inside agent workflows. Use it when computational structure and binding checks should precede expensive laboratory or pipeline commitments.

Data Science & MLpipelinesanalytics

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.