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

Volcano

ASecurity

Use when the user asks about volcano plots, catalyst screening, activity descriptors, Sabatier principle, or comparing catalyst performance across a descriptor space.

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

Works with

mcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Volcano?

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

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

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

Download Zip
Files
SKILL.md
---
name: volcano-plot
description: >
  Use when the user asks about volcano plots, catalyst screening,
  activity descriptors, Sabatier principle, or comparing catalyst
  performance across a descriptor space.
tags: [analysis, catalysis, volcano, screening, descriptor]
---

# Volcano Plot Generation

## Overview

Volcano plots visualize the Sabatier principle: plotting catalytic activity
(negative overpotential) against a binding energy descriptor to identify
optimal catalysts at the peak of the volcano. This is the standard tool
for computational catalyst screening.

Key applications:
- **OER/HER/ORR catalyst screening**: Compare overpotentials across catalyst compositions
- **Scaling relation validation**: Overlay theoretical volcano lines from Norskov scaling
- **Descriptor identification**: Find which adsorption energy best predicts activity
- **High-throughput screening**: Visualize hundreds of candidates in one plot

## MCP Tool: catgo_catalysis action="volcano"

### Generate Volcano Plot Data

Provide a list of catalyst results with descriptor values and overpotentials:

```json
{"tool": "catgo_catalysis", "arguments": {
  "action": "volcano",
  "params": {
    "catalyst_results": [
      {"name": "RuO2(110)", "dG_OH": 1.45, "overpotential": 0.37},
      {"name": "IrO2(110)", "dG_OH": 1.52, "overpotential": 0.42},
      {"name": "MnO2(110)", "dG_OH": 0.95, "overpotential": 0.68},
      {"name": "TiO2(110)", "dG_OH": 2.10, "overpotential": 1.15},
      {"name": "Fe-NiOOH", "dG_OH": 1.30, "overpotential": 0.32}
    ],
    "reaction": "OER",
    "descriptor_x": "dG_OH"
  }
}}
```

### Custom Descriptor Axes

Use any computed property as the x-axis descriptor:

```json
{"tool": "catgo_catalysis", "arguments": {
  "action": "volcano",
  "params": {
    "catalyst_results": [
      {"name": "Pt(111)", "d_band_center": -2.25, "overpotential": 0.45},
      {"name": "Pd(111)", "d_band_center": -1.83, "overpotential": 0.52},
      {"name": "Ni(111)", "d_band_center": -1.29, "overpotential": 0.75}
    ],
    "reaction": "HER",
    "descriptor_x": "d_band_center"
  }
}}
```

### Two-Descriptor Plot

Specify both x and y descriptors explicitly (instead of using
overpotential for y):

```json
{"tool": "catgo_catalysis", "arguments": {
  "action": "volcano",
  "params": {
    "catalyst_results": [
      {"name": "RuO2", "dG_OH": 1.45, "dG_O": 2.90},
      {"name": "IrO2", "dG_OH": 1.52, "dG_O": 3.10}
    ],
    "reaction": "OER",
    "descriptor_x": "dG_OH",
    "descriptor_y": "dG_O"
  }
}}
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| catalyst_results | list[dict] | -- | List of catalyst dicts with name, descriptor values, overpotential |
| reaction | string | "OER" | Reaction type: `OER`, `HER`, `CO2RR`, `NRR` |
| descriptor_x | string | "dG_OH" | Key for x-axis descriptor in result dicts |
| descriptor_y | string | null | Key for y-axis. If null, uses -overpotential |

### Catalyst Result Dict Fields

Each dict in `catalyst_results` should contain:

| Field | Required | Description |
|-------|----------|-------------|
| name | yes | Catalyst identifier (plot label) |
| (descriptor_x key) | yes | X-axis value (e.g., dG_OH, d_band_center) |
| overpotential | yes* | Overpotential in V (*unless descriptor_y is set) |

## Return Format

```json
{
  "points": [
    {"name": "RuO2(110)", "x": 1.45, "y": -0.37, "dG_OH": 1.45, "overpotential": 0.37}
  ],
  "ideal_line": {
    "x": [0.5, 0.505, ...],
    "y": [-0.23, -0.22, ...]
  },
  "descriptor_x": "dG_OH",
  "reaction": "OER"
}
```

The `ideal_line` is generated for OER using Norskov scaling relations:
- Left branch: limited by OH adsorption (step 1)
- Right branch: limited by OOH formation (step 4), using the scaling
  relation dG_OOH = 0.84 * dG_OH + 3.29

For other reactions, `ideal_line` is null (scaling relations not
hard-coded).

## Complete Workflow: OER Catalyst Screening

### 1. Compute overpotentials for each candidate

For each catalyst surface, run the full OER workflow (see OER skill) to
obtain dG_OH, dG_O, dG_OOH, and the overpotential.

### 2. Collect results

Gather the results from all candidates into a list:

```json
{"tool": "catgo_catalysis", "arguments": {
  "action": "oer",
  "params": {"dG_OH": 1.45, "dG_O": 2.90, "dG_OOH": 3.74}
}}
```

Repeat for each catalyst.

### 3. Generate volcano plot

```json
{"tool": "catgo_catalysis", "arguments": {
  "action": "volcano",
  "params": {
    "catalyst_results": [
      {"name": "RuO2", "dG_OH": 1.45, "overpotential": 0.37},
      {"name": "IrO2", "dG_OH": 1.52, "overpotential": 0.42}
    ],
    "reaction": "OER",
    "descriptor_x": "dG_OH"
  }
}}
```

## Common Pitfalls

1. All descriptor values must use consistent DFT settings (same
   functional, ENCUT, k-points). Mixing PBE and RPBE results on one
   volcano plot produces misleading comparisons.
2. The OER ideal volcano line assumes the universal OOH-OH scaling
   relation (dG_OOH = 0.84 * dG_OH + 3.29). This may not hold for
   non-oxide catalysts.
3. The y-axis convention is -overpotential (higher = better catalyst).
   A catalyst at the peak of the volcano has the lowest overpotential.
4. Catalyst results missing the descriptor_x key are silently skipped.
   Check that all result dicts have the expected keys.
5. For HER, the typical descriptor is dG_H (hydrogen binding energy).
   For CO2RR, dG_CO or dG_COOH is commonly used.

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 →