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

Neb Ts

ASecurity

ORCA NEB-TS transition state search. Requires reactant and product structures. Handles NEB parameters, image count, and CI-NEB settings.

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

Works with

climcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Neb Ts?

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

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

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

Download Zip
Files
SKILL.md
---
name: neb_ts
description: ORCA NEB-TS transition state search. Requires reactant and product structures. Handles NEB parameters, image count, and CI-NEB settings.
---

# ORCA NEB-TS Transition State Skill

## When to Use

Use this skill when the user wants to:
- Find a transition state between two structures
- Calculate a reaction barrier
- Map a minimum energy path (MEP) between reactant and product

Requirements: the user MUST provide both a reactant and a product structure.
If only one structure is available, ask for the other before proceeding.

## How NEB-TS Works

1. ORCA interpolates images between reactant and product geometries
2. NEB optimization finds the minimum energy path
3. Climbing-image NEB (CI-NEB) refines the highest-energy image
4. The TS is characterized by exactly one imaginary frequency

## MCP Tool Examples

### Step 1: Load reactant structure

```json
catgo_fetch(action: "molecule", query: "reactant_name")
```

Or if the user provides a file:

```json
catgo_structure(action: "load_file", file_content: "<xyz content>", file_format: "xyz")
```

Save the reactant -- get its structure from the viewer:

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

### Step 2: Create NEB-TS workflow

```json
catgo_workflow_engine(action: "create", params: {
  name: "SN2 reaction TS search"
})
```

### Step 3: Add NEB-TS task

The `orca_neb_ts` node type requires both reactant and product structures
provided as inputs. In the v2 engine, these come from upstream structure_input
tasks:

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

### Using the v1 workflow with explicit structures

In the graph-based workflow (v1), use the `catgo_workflow` tool:

```json
catgo_workflow(action: "create", name: "NEB-TS Cl- + CH3Br")
```

```json
catgo_workflow(action: "batch", workflow_id: "<wf_id>", operations: [
  {"op": "add_node", "node_type": "structure_input", "label": "reactant"},
  {"op": "add_node", "node_type": "structure_input", "label": "product"},
  {"op": "add_node", "node_type": "orca_neb_ts", "label": "neb",
   "params": {
     "orca_method": "B3LYP",
     "orca_basis": "def2-SVP",
     "charge": -1,
     "multiplicity": 1,
     "neb_images": 8
   }},
  {"op": "connect", "from_id": "reactant", "to_id": "neb",
   "from_handle": "structure", "to_handle": "reactant"},
  {"op": "connect", "from_id": "product", "to_id": "neb",
   "from_handle": "structure", "to_handle": "product"}
])
```

### Step 4: Submit and monitor

```json
catgo_workflow_engine(action: "submit", params: { workflow_id: "<wf_id>" })
```

```json
catgo_workflow_engine(action: "status", params: { workflow_id: "<wf_id>" })
```

### Step 5: Verify the TS

After NEB-TS completes, run a frequency calculation on the TS geometry
to confirm exactly one imaginary frequency:

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

A valid TS has exactly one imaginary frequency (negative value). If there are
zero or more than one, the TS search failed.

## NEB Parameters

| Parameter | Default | Description |
|---|---|---|
| `neb_images` | 8 | Number of interpolated images |
| `neb_convergence` | "normal" | Convergence: "loose", "normal", "tight" |
| `orca_extra_keywords` | "" | Additional keywords (e.g., "D3BJ") |

### Image count guidelines

| System size | Recommended images |
|---|---|
| Small molecule (<15 atoms) | 6-8 |
| Medium molecule (15-50 atoms) | 8-12 |
| Large molecule (>50 atoms) | 12-16 |

More images = smoother path but higher cost (each image is a full DFT calc).

## Common Reaction Types

### SN2 reaction
- Charge: -1 (incoming nucleophile)
- Check that leaving group bond elongates along path

### Bond dissociation / formation
- Usually neutral, singlet
- Consider if radical pathway needs multiplicity: 3 (triplet)

### Proton transfer
- Include dispersion: `orca_extra_keywords: "D3BJ"`
- Consider solvent: `orca_extra_keywords: "D3BJ CPCM(Water)"`

## Troubleshooting

### NEB does not converge
- Increase `neb_images` (more interpolation points)
- Use a better starting path (optimize reactant and product first)
- Try `neb_convergence: "loose"` for initial run, then tighten

### Wrong TS found
- Check the imaginary frequency mode -- does it correspond to the expected
  bond breaking/forming?
- Try different initial interpolation (reorder atoms so they correspond)

### Too expensive
- Screen with `HF-3c` or `orca_method: "PBE", orca_basis: "def2-SVP"` first
- Refine with better method only on the TS geometry (single-point)

## Important Notes

- Reactant and product MUST have the same atoms in the same order
- Both structures should be pre-optimized at the same level of theory
- ORCA NEB-TS automatically switches to CI-NEB after initial convergence
- The barrier height is the energy difference between the TS and the reactant

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 →