> A versatile CLI tool for converting molecular file formats, generating 3D atomic coordinates from SMILES, rendering 2D chemical structure images, and preparing or extracting structures for computational workflows. USE WHEN you need to convert between chemical file formats (e.g., xyz, pdb, mol, smi, gjf), generate 3D structures from SMILES using `--gen3d`, render molecule images (PNG/SVG), or extract geometries from simulation logs to build new inputs.
npx skills add https://github.com/jinzhezenggroup/computational-chemistry-agent-skills --skill openbabel
This skill provides practical Open Babel command patterns for common chemistry data tasks.
Check installation through uvx:
uvx --from openbabel obabel -V
Typical conversion syntax:
uvx --from openbabel obabel input.ext -i<input_format> -o<output_format> -O output.ext
Convert XYZ to PDB:
uvx --from openbabel obabel C.xyz -ixyz -opdb -O C.pdb
Open Babel supports a large set of chemistry formats (e.g., xyz, mol, mol2, pdb, smi, Gaussian gjf/log/fchk, etc.).
Generate methane (3D coordinates required):
uvx --from openbabel obabel -:C --gen3d -omol -O C.mol
Generate a single carbon atom:
uvx --from openbabel obabel -:[C] --gen3d -omol -O C.mol
Generate methyl radical:
uvx --from openbabel obabel -:[CH3] --gen3d -omol -O CH3.mol
> Important: quote SMILES when they contain brackets or special characters.
Equivalent explicit form:
uvx --from openbabel obabel -:"[C]([H])([H])[H]" --gen3d -omol -O CH3.mol
uvx --from openbabel obabel C.mol C.mol2 C.pdb C.xyz --osmi -O C.smi
Generate PNG:
uvx --from openbabel obabel -:"C([C@@H](C(=O)O)N)S" -opng -O cys.png
Generate SVG:
uvx --from openbabel obabel -:"C([C@@H](C(=O)O)N)S" -osvg -O cys.svg
Convert Gaussian log directly to image:
uvx --from openbabel obabel phosphate.log -ilog -opng -O phosphate.png
Generate Gaussian input from SMILES, then patch header with sed:
uvx --from openbabel obabel -:CC --gen3d -ogjf | sed "1c %nproc=28\n#opt b3lyp/6-31g(d,p)" > CC.gjf
Generate next-step input from a previous Gaussian log:
uvx --from openbabel obabel CC.log -ilog -ogjf | sed "1c %nproc=28\n#freq b3lyp/6-31g(d,p)" > CC2.gjf
When using this skill for users:
-i and -o format flags for reproducibility.--gen3d when converting SMILES to coordinate-bearing structures.%nproc, method/basis) after generation.uvx --from openbabel obabel ... consistently to minimize local dependency setup.Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts.
Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.
Lightweight WSI tile extraction and preprocessing. Use for basic slide processing tissue detection, tile extraction, stain normalization for H&E images. Best for simple pipelines, dataset preparation, quick tile-based analysis. For advanced spatial proteomics, multiplexed imaging, or deep learning pipelines use pathml.
Microscopy data management platform. Access images via Python, retrieve datasets, analyze pixels, manage ROIs/annotations, batch processing, for high-content screening and microscopy workflows.
Python library for working with DICOM (Digital Imaging and Communications in Medicine) files. Use this skill when reading, writing, or modifying medical imaging data in DICOM format, extracting pixel data from medical images (CT, MRI, X-ray, ultrasound), anonymizing DICOM files, working with DICOM metadata and tags, converting DICOM images to other formats, handling compressed DICOM data, or processing medical imaging datasets. Applies to tasks involving medical image analysis, PACS systems, radiology workflows, and healthcare imaging applications.
This skill should be used when working with pre-trained transformer models for natural language processing, computer vision, audio, or multimodal tasks. Use for text generation, classification, question answering, translation, summarization, image classification, object detection, speech recognition, and fine-tuning models on custom datasets.
Take jinzhezenggroup/openbabel from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference uvx.
Without those the skill loads but fails at the first command.