skills/43-wentorai-research-plugins/skills/domains/pharma/madd-drug-discovery-guide/SKILL.md
Multi-agent system for automated drug discovery pipelines
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research madd-drug-discovery-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
MADD (Multi-Agent Drug Discovery) is a multi-agent system that automates key stages of the drug discovery pipeline — target identification, molecule generation, property prediction (ADMET), docking simulation, and lead optimization. Specialized agents collaborate to propose, evaluate, and refine drug candidates, reducing the manual effort in early-stage drug discovery research.
Target Protein
↓
Target Analysis Agent (binding site, druggability)
↓
Molecule Generation Agent (de novo design)
↓
Property Prediction Agent (ADMET screening)
↓
Docking Agent (binding affinity estimation)
↓
Optimization Agent (lead optimization cycle)
↓
Report Agent (candidate ranking + rationale)
from madd import DrugDiscoveryPipeline
pipeline = DrugDiscoveryPipeline(
llm_provider="anthropic",
tools=["rdkit", "autodock_vina", "admet_predictor"],
)
# Run discovery pipeline
results = pipeline.discover(
target_protein="6LU7", # PDB ID (SARS-CoV-2 Mpro)
target_site="active_site",
constraints={
"molecular_weight": (200, 500), # Lipinski
"logP": (-0.4, 5.6),
"hbd": (0, 5),
"hba": (0, 10),
"tpsa": (0, 140),
},
num_candidates=100,
optimization_rounds=3,
)
# Top candidates
for i, mol in enumerate(results.top_candidates[:5]):
print(f"\nCandidate {i+1}: {mol.smiles}")
print(f" Docking score: {mol.docking_score:.2f} kcal/mol")
print(f" QED: {mol.qed:.3f}")
print(f" Synthetic accessibility: {mol.sa_score:.2f}")
print(f" ADMET: {mol.admet_summary}")
from madd.agents import ADMETAgent
admet = ADMETAgent()
# Predict ADMET properties for a molecule
props = admet.predict("CC(=O)Oc1ccccc1C(=O)O") # Aspirin
print(f"Absorption: {props.absorption}")
print(f"Distribution: {props.distribution}")
print(f"Metabolism: {props.metabolism}")
print(f"Excretion: {props.excretion}")
print(f"Toxicity: {props.toxicity}")
print(f"BBB penetration: {props.bbb_penetration}")
print(f"CYP inhibition: {props.cyp_inhibition}")
print(f"hERG liability: {props.herg_risk}")
from madd.agents import MolGenAgent
gen = MolGenAgent(method="reinforcement_learning")
# Generate molecules targeting a binding site
molecules = gen.generate(
target_pdb="6LU7",
binding_site="active_site",
num_molecules=500,
diversity_threshold=0.5, # Tanimoto diversity
constraints={
"drug_likeness": True, # Lipinski + Veber
"novelty": True, # Not in ChEMBL
},
)
print(f"Generated: {len(molecules)}")
print(f"Drug-like: {sum(1 for m in molecules if m.is_drug_like)}")
print(f"Novel: {sum(1 for m in molecules if m.is_novel)}")
from madd.agents import OptimizationAgent
optimizer = OptimizationAgent()
# Optimize a lead compound
optimized = optimizer.optimize(
lead_smiles="c1ccc(-c2ncc(F)c(N)n2)cc1",
objectives=[
("docking_score", "minimize"),
("qed", "maximize"),
("sa_score", "minimize"),
("solubility", "maximize"),
],
num_iterations=50,
keep_scaffold=True, # Maintain core structure
)
for mol in optimized.pareto_front[:5]:
print(f"SMILES: {mol.smiles}")
print(f" Docking: {mol.docking_score:.2f}")
print(f" QED: {mol.qed:.3f}")
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.