Agent skill · Design & Presentation

end-to-end-protein-design-workflow

End-to-end protein design pipeline guide across preparation, generation, validation, and filtering. Use this skill when: (1) Starting a new protein design project, (2) Need step-by-step workflow guidance, (3) Understanding the full design pipeline, (4) Planning compute resources and timelines, (5) Integrating multiple design tools. For tool selection, use binder-design-tool-selection. For QC thresholds, use protein-design-qc.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill end-to-end-protein-design-workflow --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/bioclaw_hub/end-to-end-protein-design-workflow/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.

From the SKILL.md

# End-to-End Protein Design Workflow **Plain-language role**: Use this skill when you want the full pipeline, from target preparation through final QC. ## Standard binder design pipeline ### Overview ``` Target Preparation --> Backbone Generation --> Sequence Design | | | v v v (pdb skill) (rfdiffusion) (proteinmpnn) | | v v Structure Validation --> Filtering | | v v (alphafold2-multimer/chai1-structure-prediction) (protein-design-qc) ``` ## Phase 1: Target preparation ### 1.1 Obtain target structure ```bash # Download from PDB curl -o target.pdb "https://files.rcsb.org/download/XXXX.pdb" ``` ### 1.2 Clean and prepare ```python # Extract target chain # Remove waters, ligands if needed # Trim to binding region + 10A buffer ``` ### 1.3 Select hotspots - Choose 3-6 exposed residues - Prefer charged/aromatic (K, R, E, D, W, Y, F) - Check surface accessibility - Verify residue numbering **Output**: `target_prepared.pdb`, hotspot list ## Phase 2: Backbone generation ### Option A: RFdiffusion (diverse exploration) ```bash modal run modal_rfdiffusion.py \ --pdb target_prepared.pdb \ --contigs "A1-150/0 70-100" \ --hotspot "A45,A67,A89" \ --num-designs 500 ``` ### Option B: BindCraft (end-t

What's inside
Steps it walks through
  1. Standard binder design pipeline
  2. Overview
  3. Phase 1: Target preparation
  4. 1.1 Obtain target structure
  5. 1.2 Clean and prepare
  6. 1.3 Select hotspots
  7. Phase 2: Backbone generation
  8. Option A: RFdiffusion (diverse exploration)
  9. Option B: BindCraft (end-to-end)
  10. Phase 3: Sequence design
  11. For RFdiffusion backbones
  12. Phase 4: Structure validation
  13. Predict complexes
  14. Phase 5: Filtering and selection
Ships with 3 files
  • README.md
  • references/qc-checklist.md
  • references/standard-pipeline.md
Commands it runs
Download from PDB
curl -o target.pdb "https://files.rcsb.org/download/XXXX.pdb"
modal run modal_rfdiffusion.py \
modal run modal_bindcraft.py \
for backbone in backbones/*.pdb; do
modal run modal_proteinmpnn.py \
done
Prepare FASTA with binder + target
modal run modal_colabfold.py \
More from awesome-bio-agent-skills
All skills →
About this skill
What does the end-to-end-protein-design-workflow skill do?

End-to-end protein design pipeline guide across preparation, generation, validation, and filtering. Use this skill when: (1) Starting a new protein design project, (2) Need step-by-step workflow guidance, (3) Understanding the full design pipeline, (4) Planning compute resources and timelines, (5) Integrating multiple design tools. For tool selection, use binder-design-tool-selection. For QC thresholds, use protein-design-qc.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill end-to-end-protein-design-workflow --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