Agent skill · Design & Presentation

campaign-manager

Goal-oriented binder design campaign planning and health assessment. Use this skill when: (1) Planning a complete binder design campaign, (2) Converting high-level goals into runnable pipelines, (3) Assessing campaign health and pass rates, (4) Diagnosing why designs are failing QC, (5) Estimating time, cost, and expected yields, (6) Selecting between design tools for a specific target. This skill orchestrates the other protein design tools. For individual tool parameters, use the specific tool skills.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill campaign-manager --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/adaptyv/campaign-manager/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

# Campaign Manager ## Goal-oriented design ### From goal to pipeline When user says: "I need 10 good binders for EGFR" **Campaign Planning:** ``` Goal: 10 high-quality binders for EGFR ├── Achievable: Yes (standard target) ├── Recommended pipeline: rfdiffusion → proteinmpnn → colabfold → protein-qc ├── Estimated designs needed: 500 backbones (to get ~50 passing QC) ├── Estimated time: 8-12 hours total ├── Estimated cost: ~$60 (Modal GPU compute) └── Expected yield: ├── After backbone (500): 500 structures ├── After sequence (×8): 4,000 sequences ├── After validation: 4,000 predictions ├── After QC (~10-15%): 400-600 candidates └── After clustering: 10-20 diverse final designs ``` --- ## Complete pipeline generator ### Standard miniprotein binder campaign ```bash # Step 1: Fetch and prepare target (5 min) curl -o target.pdb "https://files.rcsb.org/download/{PDB_ID}.pdb" # Trim to binding region if needed # Step 2: Generate backbones (2-3h, ~$15) modal run modal_rfdiffusion.py \ --pdb target.pdb \ --contigs "A1-150/0 70-100" \ --hotspot "A45,A67,A89" \ --num-designs 500 # Checkpoint: ls output/*.pdb | wc -l # Should be 500 # Step 3: Design sequences (1-2h, ~$10) for f in output/*.pdb

What's inside
Steps it walks through
  1. Goal-oriented design
  2. From goal to pipeline
  3. Complete pipeline generator
  4. Standard miniprotein binder campaign
  5. Campaign size recommendations
  6. Tool selection guide
  7. When to use each tool
  8. Target difficulty assessment
  9. Campaign health assessment
  10. Quick metrics check
  11. Interpreting results
  12. Cost estimation
  13. Per-tool costs (Modal)
  14. Campaign cost estimates
Commands it runs
Step 1: Fetch and prepare target (5 min)
curl -o target.pdb "https://files.rcsb.org/download/{PDB_ID}.pdb"
Trim to binding region if needed
Step 2: Generate backbones (2-3h, ~$15)
modal run modal_rfdiffusion.py \
Step 3: Design sequences (1-2h, ~$10)
for f in output/*.pdb; do
modal run modal_proteinmpnn.py \
done
Step 4: Quick ESM2 filter (30 min, ~$5, optional)
More from awesome-bio-agent-skills
All skills →
About this skill
What does the campaign-manager skill do?

Goal-oriented binder design campaign planning and health assessment. Use this skill when: (1) Planning a complete binder design campaign, (2) Converting high-level goals into runnable pipelines, (3) Assessing campaign health and pass rates, (4) Diagnosing why designs are failing QC, (5) Estimating time, cost, and expected yields, (6) Selecting between design tools for a specific target. This skill orchestrates the other protein design tools. For individual tool parameters, use the specific tool skills.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill campaign-manager --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