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

Oer

ASecurity

Use when the user asks about OER (oxygen evolution reaction) overpotential, water oxidation catalysis, or the 4-electron water splitting pathway on a surface catalyst.

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

Works with

apimcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Oer?

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

Security grade badge for Oer
[![Security: A โ€” Skills Directory](https://www.skillsdirectory.com/api/skills/hello-qm-oer/badge)](https://www.skillsdirectory.com/skills/hello-qm-oer)

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

Download Zip
Files
SKILL.md
---
name: oer-overpotential
description: >
  Use when the user asks about OER (oxygen evolution reaction) overpotential,
  water oxidation catalysis, or the 4-electron water splitting pathway on a
  surface catalyst.
---

# OER Overpotential Calculation

## Theory: 4-Electron Pathway

```
* + H2O --> *OH  + H+ + e-    (step 1)
*OH      --> *O   + H+ + e-    (step 2)
*O + H2O --> *OOH + H+ + e-   (step 3)
*OOH     --> * + O2 + H+ + e- (step 4)
```

### Free Energy Steps

```
dG1 = G(*OH)  - G(*)  - G(H2O) + 0.5*G(H2)
dG2 = G(*O)   - G(*OH) + 0.5*G(H2)
dG3 = G(*OOH) - G(*O)  - G(H2O) + 0.5*G(H2)
dG4 = 4.92    - dG1 - dG2 - dG3
```

Where 4.92 eV = 2 * G(H2O) - 2 * G(H2) (thermodynamic water splitting).

### pH Correction

At non-zero pH, each proton-transfer step is corrected by:

```
dG_i(pH) = dG_i - 0.059 * pH   (eV, at 298 K)
```

This shifts the free energy of every (H+ + e-) transfer by -0.059 eV per pH unit
(Nernst relation). At pH 0, no correction is needed. At pH 14 (alkaline OER),
each step shifts by -0.83 eV.

### Overpotential

```
eta_OER = max(dG1, dG2, dG3, dG4) / e - 1.23 V
```

The potential-determining step (PDS) is whichever step has the largest dG.

**Important:** All G values must be **Gibbs free energies** (from geo_opt + freq +
gibbs_energy chain), NOT raw DFT electronic energies. Using E_DFT instead of G
omits ZPE and entropy, leading to errors of 0.2-0.5 eV per step.

## Discussion Checkpoints

๐Ÿ”ด **Must discuss with user:**
- **Surface choice** โ€” Miller index and termination determine active sites; e.g., RuO2(110) vs (100) have different CUS site geometries and overpotentials
- **Functional** โ€” PBE vs SCAN vs PBE+U; must be consistent across ALL intermediates (*OH, *O, *OOH) and the clean slab; mixing functionals invalidates dG values
- **ISPIN** โ€” must be 2 for magnetic oxide catalysts (Co3O4, NiFe2O4, etc.); non-spin-polarized calculations give qualitatively wrong adsorption energies

๐ŸŸก **Recommend confirming:**
- Solvation correction โ€” implicit solvation (VASPsol) or explicit water stabilizes *OH and *OOH by ~0.1-0.3 eV; important for quantitative accuracy
- Dipole correction (LDIPOL=.TRUE., IDIPOL=3) โ€” corrects spurious electrostatic interactions for asymmetric slabs with polar adsorbates
- pH value (default: 0) โ€” each step shifts by -0.059*pH eV; alkaline OER (pH 14) shifts each step by -0.83 eV

๐ŸŸข **Safe defaults:**
- 4-electron mechanism (*OH, *O, *OOH intermediates)
- dG4 = 4.92 - dG1 - dG2 - dG3 (thermodynamic constraint)
- CHE reference: G(H+ + e-) = 0.5 * G(H2) at U=0V

## Reference Energies

| Species | How to Obtain |
|---------|---------------|
| G(H2) | Gas-phase H2: geo_opt + freq with `phase="gas"` |
| G(H2O) | Gas-phase H2O: geo_opt + freq with `phase="gas"` |
| G(*) | Clean slab: geo_opt only (no freq needed if slab is rigid reference) |

Using the computational hydrogen electrode (CHE): G(H+ + e-) = 0.5 * G(H2) at U=0V.

## Complete MCP Workflow

### 1. Create workflow

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "create", "name": "OER on RuO2(110)"
}}
```

### 2. Build slab + adsorbate structures

For each intermediate (*OH, *O, *OOH), build the structure:

```json
{"tool": "catgo_structure", "arguments": {
  "action": "slab", "miller_index": [1,1,0], "min_slab_size": 12.0,
  "min_vacuum_size": 15.0
}}
```

```json
{"tool": "catgo_structure", "arguments": {
  "action": "add_atom", "element": "O", "position": [4.2, 3.1, 14.5]
}}
```

### 3. For each intermediate, add: geo_opt --> freq --> gibbs_energy

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "workflow_id": "wf_oer",
  "task_type": "geo_opt",
  "params": {"software": "vasp", "ENCUT": 520, "system_name": "*OH"}
}}
```

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "workflow_id": "wf_oer",
  "task_type": "freq", "depends_on": "task_oh_opt",
  "params": {"software": "vasp", "freeze_mode": "layers", "freeze_layers": 4,
             "system_name": "*OH"}
}}
```

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "workflow_id": "wf_oer",
  "task_type": "gibbs_energy", "depends_on": ["task_oh_opt", "task_oh_freq"],
  "params": {"phase": "adsorbed", "system_name": "*OH"}
}}
```

Repeat for *O and *OOH intermediates.

### 4. Add gas-phase references (H2, H2O)

```json
{"tool": "catgo_fetch", "arguments": {
  "action": "molecule", "name": "water"
}}
```

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "workflow_id": "wf_oer",
  "task_type": "gibbs_energy", "depends_on": ["task_h2o_opt", "task_h2o_freq"],
  "params": {"phase": "gas", "system_name": "H2O(g)"}
}}
```

### 5. Submit

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "submit", "workflow_id": "wf_oer"
}}
```

## Python API

```python
from catgo.workflow import Workflow

wf = Workflow("OER on RuO2(110)")

# Clean slab
slab_inp = wf.add_task("structure_input", structure=clean_slab_json)
slab_opt = wf.add_task("geo_opt", structure=slab_inp.output.structure,
                        software="vasp", ENCUT=520)

# Each intermediate: OH, O, OOH
for ads in ["OH", "O", "OOH"]:
    inp = wf.add_task("structure_input", structure=adsorbate_slabs[ads])
    opt = wf.add_task("geo_opt", structure=inp.output.structure,
                      software="vasp", ENCUT=520, system_name=f"*{ads}")
    frq = wf.add_task("freq", structure=opt.output.structure,
                      software="vasp", freeze_mode="layers", freeze_layers=4,
                      system_name=f"*{ads}")
    gib = wf.add_task("gibbs_energy", energy=opt.output.energy,
                      frequencies=frq.output.frequencies,
                      phase="adsorbed", system_name=f"*{ads}")

# Gas-phase references
for mol, name in [("H2", "H2(g)"), ("H2O", "H2O(g)")]:
    inp = wf.add_task("structure_input", structure=gas_molecules[mol])
    opt = wf.add_task("geo_opt", structure=inp.output.structure,
                      software="vasp", system_name=name)
    frq = wf.add_task("freq", structure=opt.output.structure,
                      software="vasp", system_name=name)
    gib = wf.add_task("gibbs_energy", energy=opt.output.energy,
                      frequencies=frq.output.frequencies,
                      phase="gas", system_name=name)

wf.submit()
```

## DAG Structure

```
clean_slab --> geo_opt
*OH  --> geo_opt --> freq --> gibbs
*O   --> geo_opt --> freq --> gibbs
*OOH --> geo_opt --> freq --> gibbs
H2   --> geo_opt --> freq --> gibbs (gas)
H2O  --> geo_opt --> freq --> gibbs (gas)
```

Total: ~15 tasks. The 5 branches are independent and run in parallel.

## Common Pitfalls

1. Always use the same ENCUT, EDIFF, k-points for ALL intermediates and the
   clean slab. Inconsistent settings cause systematic errors in dG.
2. OOH is weakly bound -- use tight EDIFFG (-0.02 eV/A) and check it does
   not desorb during optimization.
3. Gas-phase molecules must use `phase="gas"` in gibbs_energy.
4. The clean slab reference does not need freq if you treat it as a rigid reference.
   But including freq improves accuracy for flexible substrates.
5. For oxides (RuO2, IrO2), the slab itself already contains O atoms --
   ensure adsorbate placement does not overlap with lattice oxygen.

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 โ†’