Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Molecular Dynamics

Run OpenMM molecular dynamics simulations and analyze the resulting trajectories with MDAnalysis.

Data & AnalyticsAdvanced33,0303,248AI score 8/10Last updated: Aug 9, 2026

What it does

Guides Claude through a full MD pipeline with ready-to-run Python code:

  • System prep: load PDB, repair with PDBFixer, add hydrogens, solvate with a 10 Å water box at 150 mM NaCl
  • Force fields: selection table for AMBER14, CHARMM36m, ff19SB, plus OpenFF/GAFF2 ligand parameterization
  • Simulation: energy minimization → NVT equilibration → NPT equilibration/production, automatic CUDA/OpenCL/CPU platform fallback, checkpoint reporters
  • Analysis: MDAnalysis RMSD, per-residue RMSF, protein–ligand contact tracking, matplotlib plots
  • Best practices: 2 fs timestep with HBonds constraints, PME electrostatics, discarding the equilibration portion

Who it's for

  • Structural biologists, computational chemists, and graduate students
  • Drug discovery teams validating ligand binding modes and residence time
  • Researchers quantifying how mutations change protein flexibility
  • Anyone preferring a Python workflow over GROMACS/NAMD scripting

Examples

  1. "Build a script that solvates 1UBQ and runs 1 ns of NPT production MD" → full pipeline from PDBFixer cleanup to production reporters
  2. "Plot backbone RMSD and per-residue RMSF from npt_traj.dcd" → aligned trajectory analysis with saved PNG figures
  3. "Parameterize this SMILES ligand with OpenFF and list contact residues within 4.5 Å per frame" → ligand parameterization plus contact-map analysis code

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/molecular-dynamics folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/molecular-dynamics/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/molecular-dynamics ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Clone the repository: git clone https://github.com/K-Dense-AI/scientific-agent-skills.git
  4. Copy this skill: cp -r scientific-agent-skills/skills/molecular-dynamics ~/.claude/skills/
  5. Install the scientific stack: conda install -c conda-forge openmm mdanalysis pdbfixer nglview (verify CUDA drivers if you plan to use a GPU).
  6. Restart Claude Code and ask something like "set up a molecular dynamics simulation" to trigger the skill.
  7. Test with a short run (e.g., 100 ps) before launching long production simulations.