OpenClaw-Medical-Skills protac-design-agent

<!--

install
source · Clone the upstream repo
git clone https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/protac-design-agent" ~/.claude/skills/freedomintelligence-openclaw-medical-skills-protac-design-agent && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/protac-design-agent" ~/.openclaw/skills/freedomintelligence-openclaw-medical-skills-protac-design-agent && rm -rf "$T"
manifest: skills/protac-design-agent/SKILL.md
source content
<!-- # COPYRIGHT NOTICE # This file is part of the "Universal Biomedical Skills" project. # Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu> # All Rights Reserved. # # This code is proprietary and confidential. # Unauthorized copying of this file, via any medium is strictly prohibited. # # Provenance: Authenticated by MD BABU MIA -->

name: 'protac-design-agent' description: 'AI-powered PROTAC (Proteolysis Targeting Chimera) design for targeted protein degradation, integrating ternary complex prediction, linker optimization, and ADMET modeling.' measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools:

  • read_file
  • run_shell_command

PROTAC Design Agent

The PROTAC Design Agent provides AI-assisted design of Proteolysis Targeting Chimeras (PROTACs) for targeted protein degradation. It integrates machine learning for ternary complex prediction, linker design, E3 ligase selection, and ADMET optimization to accelerate degrader drug discovery for oncology and other therapeutic areas.

When to Use This Skill

  • When designing PROTAC degraders for a target protein.
  • For optimizing linker chemistry and length.
  • To predict ternary complex formation and degradation efficiency.
  • When selecting optimal E3 ligase (CRBN, VHL) for the target.
  • For optimizing ADMET properties of degrader molecules.

Core Capabilities

  1. Warhead Selection: Identify optimal target protein ligands.

  2. E3 Ligase Selection: Choose CRBN, VHL, or other E3 recruiters.

  3. Linker Design: Optimize linker length, chemistry, and rigidity.

  4. Ternary Complex Prediction: Model POI-PROTAC-E3 formation.

  5. Degradation Efficiency Modeling: Predict DC50 and Dmax.

  6. ADMET Optimization: Balance potency with drug-like properties.

PROTAC Components

ComponentFunctionOptimization Target
WarheadBinds target protein (POI)Affinity, selectivity
E3 LigandRecruits E3 ubiquitin ligaseCRBN/VHL binding
LinkerConnects warhead to E3 ligandLength, flexibility, solubility

E3 Ligase Options

E3 LigaseLigandTissue ExpressionAdvantages
CRBNThalidomide analogsUbiquitousWell-characterized
VHLVHL ligandsUbiquitousHigh selectivity
MDM2Nutlin analogsVariablep53-independent
IAPSMAC mimeticsHigh in cancerDual mechanism
DCAF15IndisulamVariableNovel chemistry

Workflow

  1. Input: Target protein structure/sequence, known ligands (optional).

  2. Warhead Design: Generate/optimize POI binding moiety.

  3. E3 Selection: Choose optimal E3 ligase for target/tissue.

  4. Linker Library: Generate diverse linker options.

  5. Ternary Complex Modeling: Predict complex formation.

  6. Ranking: Score by predicted degradation and ADMET.

  7. Output: Ranked PROTAC designs with synthesis routes.

Example Usage

User: "Design a PROTAC to degrade BRD4 using CRBN as the E3 ligase, optimizing for oral bioavailability."

Agent Action:

python3 Skills/Drug_Discovery/PROTAC_Design_Agent/design_protac.py \
    --target BRD4 \
    --target_structure pdb:3MXF \
    --warhead_smiles "JQ1_core_smiles" \
    --e3_ligase CRBN \
    --linker_library peg,alkyl,piperdine \
    --linker_length_range 4,12 \
    --optimize_oral true \
    --output protac_designs/

Linker Design Parameters

ParameterOptionsConsideration
Length2-20 atomsTernary complex geometry
ChemistryPEG, alkyl, piperazine, triazoleSolubility, stability
RigidityFlexible vs constrainedEntropic penalty
AttachmentConnectivity pointsExit vector matching
MW ContributionVariesTotal MW impact

Output Components

OutputDescriptionFormat
PROTAC StructuresDesigned molecules.sdf, SMILES
Ternary ModelsPOI-PROTAC-E3 complexes.pdb
Predicted DC50Degradation potency.csv
Predicted DmaxMaximum degradation.csv
ADMET PredictionsSolubility, permeability, etc..csv
Synthesis RoutesRetrosynthetic analysis.json
RankingPrioritized designs.csv

Degradation Efficiency Metrics

MetricDefinitionTarget
DC50Concentration for 50% degradation<100 nM
DmaxMaximum degradation achieved>90%
KineticsTime to half-degradation<4 hours
SelectivityOff-target degradationMinimal
Hook EffectHigh-dose attenuationMinimal

AI/ML Components

Ternary Complex Prediction:

  • AlphaFold-Multimer adaptation
  • Geometric deep learning
  • Molecular dynamics validation

Degradation Modeling:

  • Quantitative degradation prediction
  • Transfer learning from degrader databases
  • Multi-task learning (DC50, Dmax, kinetics)

Linker Optimization:

  • Generative models (VAE, diffusion)
  • Reinforcement learning
  • Multi-objective Bayesian optimization

ADMET Prediction:

  • Property prediction models
  • Chameleonicity assessment
  • Oral bioavailability scoring

Clinical Pipeline Status (2026)

PROTACTargetPhaseE3 Ligase
ARV-471ERPhase 3, NDA filedCRBN
ARV-110ARPhase 2CRBN
BGB-16673BTKPhase 3CRBN
NX-2127BTKPhase 2CRBN
KT-474IRAK4Phase 2CRBN

Design Considerations

FactorPROTAC ChallengeSolution
High MWPoor permeabilityChameleonicity
Low SolubilityLimited exposureSolubilizing groups
Hook EffectReduced efficacy at high dosesOptimize binding balance
E3 SaturationCompetition with other PROTACsTarget expression

Prerequisites

  • Python 3.10+
  • RDKit, Open Babel
  • AlphaFold2/3
  • Molecular dynamics (GROMACS/OpenMM)
  • PyTorch for ML models

Related Skills

  • Molecular_Glue_Discovery_Agent - Glue degraders
  • TPD_Ternary_Complex_Agent - Complex prediction
  • Molecular_Docking_Agent - Docking analysis
  • ADMET_Prediction_Agent - Property prediction

ADMET Optimization Strategies

PropertyChallengeApproach
PermeabilityHigh MW limitsIntramolecular H-bonds
SolubilityLipophilicityPolar linker groups
Metabolic StabilityLinker metabolismStable chemistries
ClearanceHigh metabolismOptimize logD

Special Considerations

  1. Target Suitability: Not all proteins are degradable
  2. E3 Expression: Check tissue-specific E3 levels
  3. Ubiquitination Sites: Surface lysines needed
  4. Resistance: Target mutations, E3 downregulation
  5. Selectivity: Validate off-target degradation

Quality Control Metrics

QC CheckThresholdRationale
Ternary Complex Score>0.7Productive complex
Linker Strain<5 kcal/molFavorable geometry
ADMET Score>0.5Drug-like properties
Synthetic Accessibility<5Feasible synthesis

Author

AI Group - Biomedical AI Platform

<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->