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

Her

ASecurity

Use when the user asks about HER (hydrogen evolution reaction), hydrogen adsorption free energy, or volcano plot descriptor for HER catalysts.

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

Works with

apimcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Her?

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

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

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

Download Zip
Files
SKILL.md
---
name: her-overpotential
description: >
  Use when the user asks about HER (hydrogen evolution reaction), hydrogen
  adsorption free energy, or volcano plot descriptor for HER catalysts.
---

# HER Overpotential Calculation

## Theory

The hydrogen evolution reaction has a single key intermediate:

```
* + H+ + e- --> *H    (Volmer step)
*H + H+ + e- --> H2   (Heyrovsky step)
   or
2 *H --> H2            (Tafel step)
```

### Sabatier Criterion

The optimal HER catalyst has:

```
dG_H* = G(*H) - G(*) - 0.5 * G(H2) ~ 0 eV
```

- dG_H* < 0: H binds too strongly (poisoned surface)
- dG_H* > 0: H binds too weakly (low coverage, slow Volmer)
- dG_H* ~ 0: optimal (top of volcano plot)

### pH Correction

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

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

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

### Overpotential

```
eta_HER = |dG_H*| / e
```

A perfect catalyst has eta_HER = 0 V. Pt(111) gives dG_H* ~ -0.09 eV.

**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 eV.

## Discussion Checkpoints

๐Ÿ”ด **Must discuss with user:**
- **Surface choice** โ€” Miller index and termination determine H binding site and dG_H*; e.g., Pt(111) fcc hollow vs MoS2 S-edge give very different results
- **Functional** โ€” must be consistent between *H slab, clean slab, and gas-phase H2; PBE vs SCAN can shift dG_H* by 0.1-0.3 eV
- **Competing reactions** โ€” on surfaces active for OER/ORR, H adsorption may compete; always check if HER or OER dominates at the operating potential

๐ŸŸก **Recommend confirming:**
- Coverage effects โ€” at high H coverage, lateral interactions shift dG_H*; consider testing 1/4 ML vs 1/2 ML vs 1 ML
- Zero-point energy correction โ€” ZPE contributes ~0.04 eV to dG_H*; always include freq + gibbs_energy chain rather than using raw DFT energies
- Adsorption site โ€” test ontop, bridge, and hollow; report the most stable site (lowest |dG_H*|)

๐ŸŸข **Safe defaults:**
- Single intermediate (*H)
- dG_H* = G(*H) - G(*) - 0.5*G(H2)
- eta_HER = |dG_H*| / e

## MCP Workflow

### 1. Create workflow

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "create", "name": "HER on Pt(111)"
}}
```

### 2. Build structures

Fetch bulk, cut slab, place H adsorbate:

```json
{"tool": "catgo_fetch", "arguments": {
  "action": "crystal", "formula": "Pt", "source": "mp"
}}
```

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

```json
{"tool": "catgo_structure", "arguments": {
  "action": "add_atom", "element": "H",
  "position": [2.77, 1.60, 14.2]
}}
```

### 3. Clean slab branch

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

### 4. *H branch: geo_opt --> freq --> gibbs

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

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

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "workflow_id": "wf_her",
  "task_type": "gibbs_energy",
  "depends_on": ["task_h_opt", "task_h_freq"],
  "params": {"phase": "adsorbed", "system_name": "*H"}
}}
```

### 5. Gas-phase H2 reference

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "workflow_id": "wf_her",
  "task_type": "gibbs_energy",
  "depends_on": ["task_h2_opt", "task_h2_freq"],
  "params": {"phase": "gas", "system_name": "H2(g)"}
}}
```

### 6. Submit

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

## Python API

```python
from catgo.workflow import Workflow

wf = Workflow("HER on Pt(111)")

# 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)

# *H on slab
h_inp = wf.add_task("structure_input", structure=slab_h_json)
h_opt = wf.add_task("geo_opt", structure=h_inp.output.structure,
                     software="vasp", ENCUT=520)
h_frq = wf.add_task("freq", structure=h_opt.output.structure,
                     software="vasp", freeze_mode="layers", freeze_layers=4)
h_gib = wf.add_task("gibbs_energy", energy=h_opt.output.energy,
                     frequencies=h_frq.output.frequencies, phase="adsorbed")

# Gas-phase H2
h2_inp = wf.add_task("structure_input", structure=h2_json)
h2_opt = wf.add_task("geo_opt", structure=h2_inp.output.structure,
                      software="vasp")
h2_frq = wf.add_task("freq", structure=h2_opt.output.structure,
                      software="vasp")
h2_gib = wf.add_task("gibbs_energy", energy=h2_opt.output.energy,
                      frequencies=h2_frq.output.frequencies, phase="gas")

wf.submit()
```

## DAG Structure

```
clean_slab --> geo_opt
*H   --> geo_opt --> freq --> gibbs_energy (adsorbed)
H2   --> geo_opt --> freq --> gibbs_energy (gas)
```

Three independent branches, 7 total tasks.

## Interpreting Results

| dG_H* (eV) | Interpretation | Action |
|-------------|---------------|--------|
| -0.5 to -0.1 | Strong binding, decent catalyst | May need surface modification |
| -0.1 to +0.1 | Near optimal (volcano peak) | Excellent HER catalyst |
| +0.1 to +0.5 | Weak binding, moderate activity | Consider alloying or doping |
| > +0.5 | Too weak, poor HER catalyst | Different material needed |

## Adsorption Sites for H

| Surface Type | Preferred H Site | Typical dG_H* |
|-------------|-----------------|----------------|
| Pt(111) | fcc hollow | -0.09 eV |
| MoS2 edge | S-edge top | +0.08 eV |
| Graphene + N-doped | C adjacent to N | varies |

## Common Pitfalls

1. H is small -- use tight EDIFFG (-0.01 eV/A) to ensure proper relaxation.
2. Only freeze bottom slab layers in freq, not the H atom itself.
3. For alloy surfaces, test multiple adsorption sites (top, bridge, hollow)
   and report the most stable one (lowest dG_H*).
4. Always verify H does not migrate subsurface during geo_opt -- check the
   final structure with `catgo_view`.
5. For MoS2 and 2D materials, the "slab" is the monolayer itself with vacuum.
   Set `freeze_layers=0` and use `freeze_mode="none"` in freq.

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