Agent skill · Design & Presentation

boltzgen

All-atom protein design using BoltzGen diffusion model. Use this skill when: (1) Need side-chain aware design from the start, (2) Designing around small molecules or ligands, (3) Want all-atom diffusion (not just backbone), (4) Require precise binding geometries, (5) Using YAML-based configuration. For backbone-only generation, use rfdiffusion. For sequence-only design, use proteinmpnn. For structure validation, use boltz.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill boltzgen --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/boltzgen/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# BoltzGen All-Atom Design ## Prerequisites | Requirement | Minimum | Recommended | |-------------|---------|-------------| | Python | 3.10+ | 3.11 | | CUDA | 12.0+ | 12.1+ | | GPU VRAM | 24GB | 48GB (L40S) | | RAM | 32GB | 64GB | ## How to run > **First time?** See [Installation Guide](../../docs/installation.md) to set up Modal and biomodals. ### Option 1: Modal (recommended) ```bash # Clone biomodals git clone https://github.com/hgbrian/biomodals && cd biomodals # Run BoltzGen (requires YAML config file) modal run modal_boltzgen.py \ --input-yaml binder_config.yaml \ --protocol protein-anything \ --num-designs 50 # With custom GPU GPU=L40S modal run modal_boltzgen.py \ --input-yaml binder_config.yaml \ --protocol protein-anything \ --num-designs 100 ``` **GPU**: L40S (48GB) recommended | **Timeout**: 120min default **Available protocols**: `protein-anything`, `peptide-anything`, `protein-small_molecule`, `nanobody-anything`, `antibody-anything` ### Option 2: Local installation ```bash git clone https://github.com/HannesStark/boltzgen.git cd boltzgen pip install -e . python sample.py config=config.yaml ``` ### Option 3: Python API ```python from boltzgen import BoltzGen model = B

What's inside
Steps it walks through
  1. Prerequisites
  2. How to run
  3. Option 1: Modal (recommended)
  4. Option 2: Local installation
  5. Option 3: Python API
  6. Key parameters (CLI)
  7. YAML configuration
  8. Basic Binder Config
  9. Binder with Specific Binding Site
  10. Peptide Design (Cyclic)
  11. Design protocols
  12. Output format
  13. Sample output
  14. Successful run
Ships with 1 file
  • references/yaml-spec.md
Commands it runs
Clone biomodals
git clone https://github.com/hgbrian/biomodals && cd biomodals
Run BoltzGen (requires YAML config file)
modal run modal_boltzgen.py \
With custom GPU
git clone https://github.com/HannesStark/boltzgen.git
cd boltzgen
pip install -e .
python sample.py config=config.yaml
find output -name "*.cif" | wc -l  # Should match num_samples
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the boltzgen skill do?

All-atom protein design using BoltzGen diffusion model. Use this skill when: (1) Need side-chain aware design from the start, (2) Designing around small molecules or ligands, (3) Want all-atom diffusion (not just backbone), (4) Require precise binding geometries, (5) Using YAML-based configuration. For backbone-only generation, use rfdiffusion. For sequence-only design, use proteinmpnn. For structure validation, use boltz.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill boltzgen --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 FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 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