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

Gaussian

ASecurity

Generate and manage Gaussian calculations. Use when the user requests Gaussian, G16, GJF files, or needs hybrid functionals (B3LYP), MP2, CCSD(T), or molecular quantum chemistry with Gaussian basis sets.

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

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Gaussian?

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

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

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

Download Zip
Files
SKILL.md
---
name: gaussian
description: >
  Generate and manage Gaussian calculations. Use when the user requests Gaussian,
  G16, GJF files, or needs hybrid functionals (B3LYP), MP2, CCSD(T), or molecular
  quantum chemistry with Gaussian basis sets.
compatibility: >
  Requires a valid Gaussian license and installation on the HPC target.
  Gaussian is commercial software — never distribute binaries or bypass license checks.
---

# Gaussian

## When to Use

- User explicitly requests Gaussian, G16, G09
- User needs molecular quantum chemistry (not periodic solids — use VASP/QE for that)
- User wants hybrid functionals (B3LYP, PBE0, M06-2X) for molecules
- User needs post-HF methods: MP2, CCSD(T), CBS extrapolation
- User wants transition state search with QST2/QST3
- User requests GJF/COM input file generation

## Prerequisites

1. Gaussian (g16/g09) accessible on HPC with valid license
2. Sufficient memory and scratch space (Gaussian is memory-intensive)
3. Structure loaded in viewer — verify with `catgo_view(action="get_state")`

## Workflow Steps

### 1. Verify structure

```
catgo_view(action="get_state")
```

### 2. Create workflow

```
catgo_workflow_engine(action="create", params={"name": "Gaussian B3LYP opt+freq"})
```

### 3. Add Gaussian task via shell

CatGo does not yet have a native Gaussian engine. Use `task_type: "shell"`.

```
catgo_workflow_engine(action="add_task", params={
  "workflow_id": "wf_xxx",
  "task_type": "shell",
  "name": "g16_opt",
  "command": "g16 < input.gjf > output.log 2>&1",
  "input_files": {
    "input.gjf": "<GJF content>"
  },
  "system_name": "caffeine_opt"
})
```

When a `@register_engine("gaussian")` is added, use `task_type: "geo_opt"` with `software: "gaussian"`.

## Input File Template — Optimization + Frequencies

```
%nproc=16
%mem=32GB
%chk=checkpoint.chk
# opt freq b3lyp/6-311+g(d,p) empiricaldispersion=gd3bj
  scf=tight int=ultrafine

Title: Geometry optimization with frequency analysis

0 1
C    0.000000    0.000000    0.000000
H    0.000000    0.000000    1.089000
H    1.026719    0.000000   -0.363000
H   -0.513360   -0.889165   -0.363000
H   -0.513360    0.889165   -0.363000

```

**Important:** The blank line after coordinates is mandatory. A second blank line terminates the input.

## Input File Structure

```
%nproc=<cores>                    # Link 0 commands (resources)
%mem=<memory>
%chk=<checkpoint_file>
# <method>/<basis> <keywords>     # Route section

<title>                           # Title (free text)

<charge> <multiplicity>           # Charge and spin
<element> <x> <y> <z>            # Cartesian coordinates
                                  # Blank line = end of molecule
```

## Parameter Guidance

| Parameter | Typical value | Notes |
|---|---|---|
| Method | B3LYP, PBE0, M06-2X, wB97XD | Hybrid DFT for molecules |
| Basis | 6-31G(d), 6-311+G(d,p), def2-TZVP | Pople or Karlsruhe basis sets |
| %mem | 4-64 GB | Gaussian stores integrals in memory |
| %nproc | 8-32 | Shared-memory parallel |
| Dispersion | EmpiricalDispersion=GD3BJ | Add for non-covalent interactions |
| int | UltraFine | Integration grid; always use for DFT |
| scf | Tight | SCF convergence; XTight for frequencies |

## Common Calculation Types

| Keyword | Purpose |
|---|---|
| `opt` | Geometry optimization |
| `freq` | Vibrational frequencies (must be at a stationary point) |
| `opt freq` | Optimize then frequencies in one job |
| `opt=(ts,calcfc,noeigen)` | Transition state search |
| `opt=(qst2)` | TS search from reactant+product geometries |
| `irc=(calcfc,maxpoints=50)` | Intrinsic reaction coordinate |
| `td=(nstates=10)` | TD-DFT excited states |
| `nmr` | NMR chemical shifts |
| `pop=nbo` | Natural bond orbital analysis |

## Solvent Effects

Add implicit solvation:
```
# opt freq b3lyp/6-311+g(d,p) scrf=(smd,solvent=water)
```

## Common Pitfalls

1. **Missing blank lines** — Gaussian input requires blank lines between sections and after coordinates. Missing them causes cryptic errors.
2. **Wrong multiplicity** — open-shell systems need correct spin (2S+1). Doublet radicals: multiplicity=2.
3. **%mem too low** — Gaussian crashes with "galloc: could not allocate memory". Set %mem to ~80% of available RAM.
4. **Basis set not available** — not all basis sets cover all elements. Heavy elements need ECP (e.g., LANL2DZ).
5. **Frequencies at non-stationary point** — `freq` requires a fully optimized geometry. Run `opt freq` together.
6. **License restrictions** — never share Gaussian binaries. Ensure the HPC has a valid site license.
7. **Checkpoint file not saved** — always use `%chk` for restart capability and property extraction
8. **Forgetting dispersion** — B3LYP without GD3/GD3BJ underestimates non-covalent interactions

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

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →