Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Antechamber

ASecurity

Use AmberTools antechamber for molecular force field parameterization. Generates GAFF/GAFF2 parameters and AM1-BCC or RESP charges for use in AMBER or LAMMPS classical MD simulations.

199 stars
0 votes
0 copies
0 views
Added 9/20/2026
toolsgoshellbash

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add Hello-QM/catgo-LRG --skill antechamber --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Antechamber?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Antechamber
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/hello-qm-antechamber-catgo-lrg/badge)](https://www.skillsdirectory.com/skills/hello-qm-antechamber-catgo-lrg)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: antechamber
description: >
  Use AmberTools antechamber for molecular force field parameterization.
  Generates GAFF/GAFF2 parameters and AM1-BCC or RESP charges for use in
  AMBER or LAMMPS classical MD simulations.
compatibility: >
  Requires AmberTools installed (conda install -c conda-forge ambertools).
  antechamber, parmchk2, and tleap must be in PATH.
catalog-hidden: true
---

# Antechamber — Force Field Parameterization

## When to Use

- User needs GAFF/GAFF2 atom types and parameters for a small molecule
- User wants AM1-BCC or RESP partial atomic charges
- User is preparing a molecule for classical MD with AMBER or LAMMPS
- User needs to generate topology (prmtop) and coordinate (inpcrd) files

## Prerequisites

1. AmberTools installed (`antechamber --help`)
2. Input molecule structure (mol2, pdb, or Gaussian output for RESP)
3. For RESP charges: Gaussian output with `pop=mk iop(6/33=2)` ESP data

## Workflow Steps

### 1. Generate GAFF parameters with AM1-BCC charges

```
catgo_workflow_engine(action="add_task", params={
  "workflow_id": "wf_xxx",
  "task_type": "shell",
  "name": "antechamber_param",
  "command": "bash parameterize.sh",
  "input_files": {
    "parameterize.sh": "<script content>",
    "molecule.pdb": "<molecule structure>"
  },
  "system_name": "ligand_param"
})
```

## Parameterization Script — AM1-BCC Charges

```bash
#!/bin/bash
set -e

# Step 1: Assign GAFF2 atom types and AM1-BCC charges
antechamber -i molecule.pdb -fi pdb \
            -o molecule.mol2 -fo mol2 \
            -c bcc -at gaff2 \
            -nc 0 -m 1 \
            -rn LIG

# Step 2: Check for missing parameters
parmchk2 -i molecule.mol2 -f mol2 \
         -o molecule.frcmod -a Y

# Step 3: Build topology with tleap
cat > tleap.in << 'EOF'
source leaprc.gaff2
LIG = loadmol2 molecule.mol2
loadamberparams molecule.frcmod
check LIG
saveamberparm LIG molecule.prmtop molecule.inpcrd
savemol2 LIG molecule_leap.mol2 1
quit
EOF

tleap -f tleap.in > tleap.log 2>&1
echo "Generated: molecule.prmtop molecule.inpcrd"
```

## Parameterization Script — RESP Charges

For higher-quality charges, use RESP from Gaussian ESP:

```bash
#!/bin/bash
set -e

# Step 1: Generate Gaussian input for ESP
antechamber -i molecule.pdb -fi pdb \
            -o molecule.gjf -fo gcrt \
            -gm "%mem=4GB" -gn "%nproc=8" \
            -ge "molecule.gesp" \
            -gk "#HF/6-31G* opt pop=mk iop(6/33=2)"

# Step 2: Run Gaussian (separate task)
# g16 molecule.gjf

# Step 3: Extract RESP charges from Gaussian output
antechamber -i molecule.log -fi gout \
            -o molecule.mol2 -fo mol2 \
            -c resp -at gaff2 \
            -nc 0 -m 1 -rn LIG

# Step 4: Check and build topology (same as AM1-BCC)
parmchk2 -i molecule.mol2 -f mol2 -o molecule.frcmod -a Y

cat > tleap.in << 'EOF'
source leaprc.gaff2
LIG = loadmol2 molecule.mol2
loadamberparams molecule.frcmod
check LIG
saveamberparm LIG molecule.prmtop molecule.inpcrd
quit
EOF

tleap -f tleap.in > tleap.log 2>&1
```

## Solvation with tleap

After parameterization, solvate the molecule:

```
source leaprc.water.tip3p
LIG = loadmol2 molecule.mol2
loadamberparams molecule.frcmod
solvateBox LIG TIP3PBOX 12.0
addIonsRand LIG Na+ 0 Cl- 0   # Neutralize
saveamberparm LIG solvated.prmtop solvated.inpcrd
quit
```

## Parameter Guidance

| Flag | Purpose |
|---|---|
| `-c bcc` | AM1-BCC charges (fast, good for most organic molecules) |
| `-c resp` | RESP charges (requires Gaussian ESP, higher quality) |
| `-at gaff2` | GAFF2 atom types (preferred over gaff) |
| `-nc 0` | Net charge of molecule |
| `-m 1` | Spin multiplicity |
| `-rn LIG` | Residue name (3 chars max) |
| `-fi / -fo` | Input/output format (pdb, mol2, gout, gcrt) |

## Common Pitfalls

1. **Wrong net charge** — `-nc` must match the actual molecular charge. Wrong charge gives wrong AM1-BCC charges.
2. **Missing parameters** — `parmchk2` with `-a Y` fills gaps by analogy but warns. Check `molecule.frcmod` for `ATTN` lines.
3. **Atom name conflicts** — tleap requires unique atom names within a residue. antechamber usually handles this.
4. **RESP without ESP** — RESP charges require a Gaussian calculation with `pop=mk iop(6/33=2)`. AM1-BCC does not.
5. **GAFF vs GAFF2** — use GAFF2 (`-at gaff2`, `leaprc.gaff2`) for improved parameters. Do not mix GAFF and GAFF2.
6. **Radical species** — antechamber struggles with radicals and metals. Consider manual parameterization.
7. **Large molecules** — AM1 optimization in antechamber can be slow for >100 atoms. Pre-optimize geometry.

Attribution

Hello-QMHello-QM
View sourceMore from Hello-QM →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Instantly Rdsthomas Mission Control

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

761 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1023330 votes
View all in tools →