Agent skill · AI & Agents

vasp_ase

Professional skill for setting up, executing, and debugging VASP DFT calculations using the Atomic Simulation Environment (ASE).

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill vasp-ase --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/analysis/vasp-ase/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# VASP ASE Skill This skill allows the agent to interface with VASP on high-performance computing (HPC) systems like the DGX A100. It focuses on using ASE as the wrapper for clean Pythonic control. ## 🛠 Prerequisites - **Environment Variables:** `VASP_PP_PATH` must point to the directory containing `potpaw_PBE`, etc. - **Dependencies:** `ase` and `pymatgen` (optional but recommended for analysis) must be installed in the `(base)` conda environment. - **VASP Executable:** Access to `vasp_std`, `vasp_gam`, or `vasp_ncl`. ## 📜 Execution Instructions ### 1. Setup & Initialization Always initialize the VASP calculator using the `ase.calculators.vasp.Vasp` class. - **Default Check:** If the user doesn't specify, use `xc='PBE'`, `kpts=(4, 4, 4)`, and `encut=520`. - **Parallelization:** On this DGX system, use `mpirun` or `srun`. Example command: `command='mpirun -np 16 vasp_std > vasp.out'` ### 2. Geometry Optimization Template ```python from ase.io import read from ase.calculators.vasp import Vasp from ase.optimize import BFGS atoms = read('POSCAR') calc = Vasp(directory='run_dir', command='mpirun -np 16 vasp_std', xc='PBE', encut=520, ismear=0, sigma=0.05, lreal='Auto', nsw=100, ibrio

What's inside
Steps it walks through
  1. 🛠 Prerequisites
  2. 📜 Execution Instructions
  3. 1. Setup & Initialization
  4. 2. Geometry Optimization Template
  5. 3. Error Handling & Troubleshooting
  6. 🧪 Validation Step
  7. 📂 Output Management
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the vasp_ase skill do?

Professional skill for setting up, executing, and debugging VASP DFT calculations using the Atomic Simulation Environment (ASE).

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill vasp-ase --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going