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

Orca

ASecurity

Routes ORCA calculation requests to opt, neb_ts, or freq sub-skills. Enforces ORCA-specific policies for method, basis set, charge, and multiplicity.

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

Works with

mcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Orca?

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

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

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

Download Zip
Files
SKILL.md
---
name: orca-router
description: Routes ORCA calculation requests to opt, neb_ts, or freq sub-skills. Enforces ORCA-specific policies for method, basis set, charge, and multiplicity.
---

# ORCA Router Skill

## When to Use

Use this skill when the user requests any ORCA-based calculation. Route to the
appropriate sub-skill based on what the user needs:

| User intent | Route to |
|---|---|
| Geometry optimization, energy minimization | `orca/opt` |
| Transition state, NEB, reaction barrier | `orca/neb_ts` |
| Vibrational frequencies, IR spectrum, thermochemistry | `orca/freq` |

## ORCA-Specific Policies

### Method and Basis Set Defaults

Always set `software: "orca"` in workflow node params. Default method/basis
combinations by use case:

| Use case | Method | Basis | Notes |
|---|---|---|---|
| General organic | B3LYP | def2-SVP | Good balance of cost/accuracy |
| Production organic | B3LYP | def2-TZVP | Publication quality |
| Transition metals | PBE0 | def2-SVP | Better for d-electrons |
| Weak interactions | B3LYP-D3BJ | def2-TZVP | Dispersion-corrected |
| Quick screening | HF-3c | (built-in) | Composite, very fast |
| Accurate energies | DLPNO-CCSD(T) | cc-pVTZ | Gold standard, expensive |

### Charge and Multiplicity

ORCA requires explicit charge and multiplicity for every calculation. Always ask
the user or infer from the structure:

- Neutral closed-shell: `charge: 0, multiplicity: 1`
- Radical (one unpaired e-): `charge: 0, multiplicity: 2`
- Anion: `charge: -1, multiplicity: 1` (or 2 if radical anion)
- Cation: `charge: 1, multiplicity: 1` (or 2 if radical cation)
- Transition metal complexes: determine from d-electron count and ligand field

If unsure, ask the user. Never guess multiplicity for open-shell systems.

### Solvent Models

ORCA supports implicit solvation via CPCM:

```
orca_extra_keywords: "CPCM(Water)"
```

Common solvents: `Water`, `Acetonitrile`, `DMSO`, `THF`, `Toluene`, `DCM`.

## MCP Tool Examples

### Check what the user has loaded

```json
catgo_view(action: "get_state")
```

Always check the viewer state first to confirm a molecular structure is loaded
(not a periodic crystal -- ORCA is for molecular calculations).

### Create an ORCA optimization workflow

```json
catgo_workflow_engine(action: "create", params: {
  name: "Ethanol B3LYP optimization"
})
```

Then add an ORCA geo_opt task (see `orca/opt` skill for full details):

```json
catgo_workflow_engine(action: "add_task", params: {
  workflow_id: "<wf_id>",
  task_type: "geo_opt",
  params: {
    software: "orca",
    orca_method: "B3LYP",
    orca_basis: "def2-SVP",
    charge: 0,
    multiplicity: 1
  }
})
```

### Create an ORCA frequency workflow

```json
catgo_workflow_engine(action: "add_task", params: {
  workflow_id: "<wf_id>",
  task_type: "freq",
  params: {
    software: "orca",
    orca_method: "B3LYP",
    orca_basis: "def2-SVP",
    charge: 0,
    multiplicity: 1
  }
})
```

### Opt + Freq chain (common pattern)

After creating the workflow, add both tasks and connect them:

```json
catgo_workflow_engine(action: "add_task", params: {
  workflow_id: "<wf_id>",
  task_type: "geo_opt",
  task_id: "opt1",
  params: { software: "orca", orca_method: "B3LYP", orca_basis: "def2-SVP",
            charge: 0, multiplicity: 1 }
})
```

```json
catgo_workflow_engine(action: "add_task", params: {
  workflow_id: "<wf_id>",
  task_type: "freq",
  depends_on: ["opt1"],
  params: { software: "orca", orca_method: "B3LYP", orca_basis: "def2-SVP",
            charge: 0, multiplicity: 1 }
})
```

## Routing Decision Tree

1. Does the user want to find a transition state or reaction barrier?
   - YES -> route to `orca/neb_ts`
2. Does the user want vibrational frequencies, IR spectrum, or thermochemistry?
   - YES -> route to `orca/freq`
3. Does the user want to optimize a geometry or get an energy?
   - YES -> route to `orca/opt`
4. Unsure? Ask the user what property they need.

## Common Mistakes

- Using ORCA for periodic systems (ORCA is molecular only -- use VASP or CP2K)
- Forgetting charge/multiplicity (ORCA will fail or give wrong results)
- Using too large a basis for initial screening (start with def2-SVP)
- Not including dispersion for systems with 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 →