agentsclimarketplace

Chemgraph agent guide

Skill brycewang-stanford/Auto-Empirical-Research-Skills/skills/43-wentorai-research-plugins/skills/domains/chemistry/chemgraph-agent-guide

🔬 A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | 精选 23,000+ AI Agent 技能库,覆盖8大社会科学学科的实证研究。CoPaper.AI 20分钟完成一篇可复现的规范实证论文,并支持用户上传 Skills。-- Maintained by CoPaper.AI from Stanford REAP.

Install
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill chemgraph-agent-guide

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Automate molecular simulations with the ChemGraph agentic framework

SKILL.md

3.5 KB, as published. Nobody here has run it

ChemGraph Agent Guide

Overview

ChemGraph is an agentic framework from Argonne National Lab that automates molecular simulation workflows using LLMs. Built on LangGraph and ASE (Atomic Simulation Environment), it enables natural language control of computational chemistry tasks — structure generation, geometry optimization, thermochemistry, and more. Supports DFT (NWChem, ORCA), semi-empirical (xTB), and ML potentials (MACE).

Installation

pip install chemgraph

# Or via Docker
docker pull ghcr.io/argonne-lcf/chemgraph:latest

Core Capabilities

Natural Language Chemistry

from chemgraph import ChemGraphAgent

agent = ChemGraphAgent(
    llm_provider="anthropic",
    calculator="xtb",  # fast semi-empirical
)

# Natural language molecular tasks
result = agent.run("Optimize the geometry of caffeine and calculate its vibrational frequencies")
print(result.energy)
print(result.frequencies)

# Thermochemistry
result = agent.run("Calculate the enthalpy of formation of ethanol at 298K")
print(f"ΔHf = {result.enthalpy:.2f} kJ/mol")

Supported Calculators

CalculatorTypeSpeedAccuracy
xTB (TBLite)Semi-empiricalFastModerate
MACEML potentialFastGood
NWChemAb initio DFTSlowHigh
ORCAAb initio/DFTSlowHigh
UMAUniversal MLFastGood

Workflow Automation

# Multi-step workflow
workflow = agent.create_workflow([
    "Generate 3D structure of aspirin from SMILES",
    "Optimize geometry with DFT/B3LYP/6-31G*",
    "Calculate IR spectrum",
    "Identify key functional group vibrations",
])
results = workflow.execute()

# Reaction pathway
pathway = agent.run(
    "Find the transition state for the Diels-Alder reaction "
    "between butadiene and ethylene"
)

Integration with ASE

from ase.io import read
from chemgraph.calculators import get_calculator

# Use ChemGraph's calculator with ASE directly
atoms = read("molecule.xyz")
calc = get_calculator("xtb")
atoms.calc = calc

energy = atoms.get_potential_energy()
forces = atoms.get_forces()

Agent Architecture

ChemGraph uses LangGraph's state machine to orchestrate:

  1. Parser Agent — Interprets natural language into chemistry tasks
  2. Structure Agent — Generates/retrieves molecular structures (SMILES, PDB, CIF)
  3. Calculator Agent — Selects and runs appropriate simulation backend
  4. Analysis Agent — Processes results and generates reports

Use Cases

  1. High-throughput screening: Automated property calculation for molecular libraries
  2. Reaction discovery: Transition state finding and reaction pathway analysis
  3. Materials design: Optimize structures for target properties
  4. Education: Natural language interface for learning computational chemistry

Requirements

  • Python 3.10+
  • At least one calculator backend (xTB recommended for getting started)
  • LLM API key (Anthropic, OpenAI, or local)

References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.