Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/learningmatter-mit/atomisticskills/chem-docking-voidnpx skills add learningmatter-mit/AtomisticSkills --skill chem-docking-voidgit clone --depth 1 https://github.com/learningmatter-mit/AtomisticSkillsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00042 | $0.00894 |
| Opus 5 | $0.00021 | $0.00447 |
| Sonnet 5 | $0.00008 | $0.00179 |
| Haiku 4.5 | $0.00004 | $0.00089 |
Grade A, and why
chem-docking-void scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.
chem-docking-void
Goal
To perform molecular docking of a small-molecule ligand into a porous material structure (CIF format) using the VOID library. This skill aims to automatically generate a robust sampling of guest conformers using RDKit, optimize them, and then distribute them throughout the host framework using Voronoi-based cluster sampling and physics-informed collision filtering.
This will output:
- Ranked docked complexes saved individually as standard CIF files.
- A metadata summary (
docking_results.json) capturing the generation parameters, associated RDKit conformer energies, and matched pose IDs.
Instructions
1. Identify Inputs
You will need:
- The SMILES string of your guest molecule.
- The CIF file path to your porous material (e.g. Zeolites, MOFs).
2. Basic Docking Run
A standard run accepts the chemical inputs and saves outputs to a designated folder.
# Env: atomistic-agent
python .agents/skills/chem-docking-void/scripts/run_docking.py \
--smiles "CC12C3C4C5C6C1C7C2C3C4C5C67" \
--host_cif /path/to/host/material.cif \
--output_dir output/docked_poses \
--num_conformers 5
(The SMILES here represents Adamantane or similar structures for testing.)
3. Tuning Hyperparameters
The clustering map and acceptance rates are highly sensitive to VOID's search parameters. Use the advanced arguments for dense loading or strict spatial tolerances:
python .agents/skills/chem-docking-void/scripts/run_docking.py \
--smiles "CC(=O)Oc1ccccc1C(=O)O" \
--host_cif /path/to/host/MOF.cif \
--output_dir output/docked_poses \
--num_conformers 10 \
--threshold 1.8 \
--attempts 2000 \
--structs_per_loading 5 \
--num_clusters 150 \
--max_loading 1 \
--max_subdock 200 \
--remove_species "H2O" "Na"
Meaning of Key Hyperparameters:
--num_conformers: (RDKit) How many of the lowest-energy 3D geometries to test.--threshold: The acceptable minimum distance (Å) between the host atoms and guest atoms. A lower value allows tighter squeezes but risks atomic clashes.--attempts: How many random translation/rotation insertion guesses theSubdockermakes perBatchDockerqueue limit.--structs_per_loading: Maximum number of successful geometries to export out of all validated matches, per conformer tested.--num_clusters&--min_radius: Settings for theVoronoiClusteringsampler that determine the density and minimum pore volume of chosen docking nodes within the material.--remove_species: Pre-cleans the CIF file of specified elements (like free solvent) before docking.
What ships with it
11 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/CHA.cif 1.8 KB
- examples/example_output/docking_results.json 1.7 KB
- examples/example_output/pose_1_loading_1_conf_1.cif 9.5 KB
- examples/example_output/pose_2_loading_1_conf_1.cif 9.5 KB
- examples/example_output/pose_3_loading_2_conf_1.cif 12 KB
- examples/example_output/pose_4_loading_2_conf_1.cif 12 KB
- examples/example_output/pose_5_loading_3_conf_1.cif 14 KB
- examples/example_output/pose_6_loading_3_conf_1.cif 14 KB
- examples/README.md 801 B
- examples/run_example.sh 1.0 KB runs code
- scripts/run_docking.py 7.4 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 79 lines · 42 tokens per session scan A a7a2fe88c7c3
chem-docking-void is a skill published in the GitHub repository learningmatter-mit/AtomisticSkills (154 stars, last pushed 7d ago), licensed MIT. It adds 42 tokens to every session and 894 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
hypogenic
Automated LLM-driven hypothesis generation and testing on tabular datasets. Use when you want to systematically explore hypotheses about patterns in empirical data (e.g., deception detection, content analysis). Combines literature insights with data-driven hypothesis testing. For manual hypothesis formulation use…
datamol
Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…
deepchem
Molecular ML with diverse featurizers and pre-built datasets. Use for property prediction (ADMET, toxicity) with traditional ML or GNNs when you want extensive featurization options and MoleculeNet benchmarks. Best for quick experiments with pre-trained models, diverse molecular representations. For graph-first…
binding-affinity
Hybrid ML + physics binding affinity prediction. Empirical scoring, MM/GBSA rescoring, multi-method consensus, and batch virtual screening for protein-ligand complexes.
drug-design
End-to-end drug discovery pipeline orchestration. Deterministic Python script that auto-chains structure prediction, pocket detection, de novo design, docking, scoring, and ADMET filtering into reproducible workflows.
medchem
Medicinal chemistry filters. Apply drug-likeness rules (Lipinski, Veber), PAINS filters, structural alerts, complexity metrics, for compound prioritization and library filtering.