一键导入
molecular-dynamics
Molecular dynamics simulations using OpenMM with MDAgent-style automation and free energy calculations via MM-PBSA
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Molecular dynamics simulations using OpenMM with MDAgent-style automation and free energy calculations via MM-PBSA
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search and select enzyme sequence homologs from a database. Use when users provide a query sequence and want to discover sequence homologs of the query sequence in a database.
Scientific reasoning via Jnana CoScientist — hypothesis generation, evaluation, and parameter bounding
Convert scientific papers into executable computational workflows and MCP tools
Protein language model embeddings, diversity sampling, and mutation prediction using ESM or GenSLM
Protein structure prediction using Chai-1 or AlphaFold with confidence scoring, quality assessment, and critic evaluation
Analysis of molecular dynamics trajectories (RMSD, RMSF, contacts, hotspot analysis)
| name | molecular-dynamics |
| description | Molecular dynamics simulations using OpenMM with MDAgent-style automation and free energy calculations via MM-PBSA |
| metadata | {"openclaw":{"requires":{"env":["OPENAI_API_KEY"],"bins":["python3"],"anyBins":["gmx","cpptraj"]},"primaryEnv":"OPENAI_API_KEY"}} |
Run molecular dynamics simulations on protein structures using OpenMM and calculate binding free energies via MM-PBSA.
scripts/run_md.py — MD simulation launcherWraps the MDAgent/OpenMM simulation pipeline. Accepts a PDB input, builds the system (implicit or explicit solvent), runs equilibration and production MD, and records artifacts to the Artifact DAG for provenance tracking.
python skills/molecular-dynamics/scripts/run_md.py \
--input-pdb structure.pdb \
--output-dir results/ \
--forcefield amber14-all \
--water-model tip3p \
--temperature 300 \
--pressure 1.0 \
--equil-steps 10000 \
--prod-steps 500000 \
--solvent explicit \
--platform CUDA
scripts/run_free_energy.py — MM-PBSA free energy calculationRuns MM-PBSA binding free energy calculations on completed MD trajectories. Requires AmberTools (cpptraj) and a production trajectory with topology.
python skills/molecular-dynamics/scripts/run_free_energy.py \
--sim-dir trajectory_dir/ \
--output-dir fe_results/ \
--n-cpus 4 \
--amberhome /path/to/amber
input_pdb: Path to input PDB structureforcefield: Force field to use (default: "amber14-all")water_model: Water model (default: "tip3p")temperature_k: Simulation temperature in Kelvin (default: 300)pressure_atm: Pressure in atm for NPT (default: 1.0)equil_steps: Equilibration steps (default: 10000)prod_steps: Production MD steps (default: 500000)timestep_fs: Integration timestep in femtoseconds (default: 2.0)solvent: Solvent model — "explicit" or "implicit" (default: "explicit")platform: OpenMM platform — "CUDA", "OpenCL", or "CPU" (default: "CUDA")sim_dir: Directory containing production trajectory (prod.dcd + system.prmtop)n_cpus: Number of CPUs for parallel MM-PBSA (default: 4)amberhome: Path to AmberTools installationopenmm): MD simulation engineMDAnalysis): Trajectory I/O and atom selectioncpptraj): MM-PBSA free energy calculations