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

Structure Intercalation

ASecurity

Use when the user asks to intercalate atoms or ions between layers, insert lithium into a cathode, or place species in interlayer gaps of a layered material.

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

Works with

mcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

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

Installs into .claude/skills of the current project.

Are you the author of Structure Intercalation?

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

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

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

Download Zip
Files
SKILL.md
---
name: intercalation
description: >
  Use when the user asks to intercalate atoms or ions between layers,
  insert lithium into a cathode, or place species in interlayer gaps
  of a layered material.
---

# Intercalation

## Overview

Intercalation inserts guest atoms or ions into the interlayer spaces of
a layered host material. This is fundamental to battery electrode design,
where ions shuttle between electrodes during charge/discharge cycles.

Common applications:

- **Li-ion batteries**: Li intercalation in LiCoO2, LiFePO4, graphite
- **Na-ion batteries**: Na intercalation in layered oxides, MXenes
- **Supercapacitors**: ion insertion in MXenes, layered hydroxides
- **Catalysis**: intercalated species modifying interlayer chemistry
- **2D materials**: ion intercalation in MoS2, graphite for exfoliation

## MCP Tool: catgo_intercalation

```json
{"tool": "catgo_intercalation", "arguments": {
  "structure": "<current structure dict>",
  "species": "Li",
  "position": "auto",
  "n_intercalants": 1
}}
```

| Parameter | Description | Default |
|-----------|-------------|---------|
| `structure` | Layered host structure dict | (required) |
| `species` | Intercalant element symbol | (required) |
| `position` | Placement strategy | "auto" |
| `n_intercalants` | Number of intercalant atoms to insert | 1 |

### Position Modes

| Mode | Description |
|------|-------------|
| `auto` | Finds the largest gap in z-fractional coordinates and inserts at the midpoint. Best default for layered materials. |
| `tetrahedral` | Places at approximate tetrahedral interstitial sites (frac coords ~0.25). |
| `octahedral` | Places at approximate octahedral interstitial sites (frac coords ~0.5). |
| `custom` | For manual positioning (specify coordinates separately). |

### Router: `/build/intercalation` (POST)

## Complete Workflow: Li Intercalation in LiCoO2

### Step 1: Fetch the host structure

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

Or fetch the fully lithiated phase:

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

### Step 2: Create a supercell for dilute intercalation

```json
{"tool": "catgo_structure", "arguments": {
  "action": "supercell",
  "scaling": [2, 2, 1]
}}
```

### Step 3: Intercalate Li

```json
{"tool": "catgo_intercalation", "arguments": {
  "species": "Li",
  "position": "auto",
  "n_intercalants": 1
}}
```

For higher concentrations, increase `n_intercalants`. Multiple
intercalants are distributed across the interlayer plane.

### Step 4: Verify

```json
{"tool": "catgo_view", "arguments": {"action": "get_state"}}
```

Check: Li atom is between layers, not overlapping with host atoms,
reasonable interlayer distance preserved.

### Step 5: Relax and compute intercalation voltage

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "create", "params": {"name": "Li-CoO2 intercalation"}
}}
```

```json
{"tool": "catgo_workflow_engine", "arguments": {
  "action": "add_task", "params": {
    "workflow_id": "<wf_id>",
    "task_type": "geo_opt",
    "params": {"software": "vasp", "ENCUT": 520,
               "LDAU": true, "LDAUU": {"Co": 3.32},
               "system_name": "LixCoO2 relax"}
  }
}}
```

## Intercalation Voltage Calculation

The average intercalation voltage is:

```
V = -(E[Li_x2 Host] - E[Li_x1 Host] - (x2 - x1) * E[Li_metal]) / ((x2 - x1) * F)
```

where F is the Faraday constant. In practice:

1. Relax the empty host (x = 0)
2. Relax the fully intercalated structure (x = 1)
3. Optionally relax intermediate compositions
4. Compute V from the energy difference

## Common Intercalant Species

| Species | Application | Typical Hosts |
|---------|-------------|--------------|
| Li | Li-ion batteries | CoO2, FePO4, MnO2, graphite, TiS2 |
| Na | Na-ion batteries | MnO2, V2O5, Prussian blue analogues |
| K | K-ion batteries | Graphite, MoS2 |
| Mg | Mg batteries | V2O5, MoS2, TiS2 |
| H | Proton intercalation | MnO2, WO3 (electrochromics) |

## DFT Considerations

- **DFT+U**: Required for transition metal oxides (Co, Mn, Fe, Ni).
  Common U values: Co (3.32 eV), Mn (3.9 eV), Fe (5.3 eV), Ni (6.2 eV).
- **Van der Waals**: DFT-D3 corrections important for layered materials
  where interlayer bonding is weak.
- **Spin polarization**: Always use ISPIN=2 for transition metal oxides.
- **K-points**: Sufficient sampling in the layer plane; fewer points
  needed perpendicular to layers.

## Common Pitfalls

1. The `auto` position mode finds the largest z-gap. For materials with
   multiple interlayer gaps of similar size, verify the intercalant
   ended up in the correct gap.
2. Always relax after intercalation. The host lattice expands to
   accommodate the guest species.
3. For concentrated intercalation (multiple atoms), ensure intercalants
   are not placed too close together. Check with `catgo_view` after
   insertion.
4. The host structure should be a bulk layered material, not a slab.
   Slabs have vacuum that will confuse the auto-positioning algorithm.
5. Transition metal oxidation states change upon intercalation (e.g.,
   Co4+ to Co3+ when Li is inserted). This affects magnetic moments
   and DFT+U parameters.
6. For accurate voltage predictions, use the same ENCUT, k-points, and
   DFT+U parameters for all compositions in the voltage calculation.

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 →