vasp-input-generator
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to be a simple local VASP input-file generator, with the main caveat that it can write or overwrite files in the chosen output folder.
This looks safe for its stated purpose. Before installing or using it, make sure you are comfortable with it writing VASP input files in your project directory, and review the generated INCAR, KPOINTS, and POSCAR.template files before running expensive calculations.
Findings (1)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If run in a directory that already contains VASP inputs, existing files with the same names may be replaced.
The script creates the selected output directory and writes fixed VASP input filenames there. This matches the skill purpose, but it can overwrite existing INCAR or KPOINTS files.
output_dir.mkdir(parents=True, exist_ok=True) ... with open(incar_path, "w", encoding="utf-8") as f: ... with open(kpoints_path, "w", encoding="utf-8") as f:
Run it in a new or intended calculation directory, keep backups of existing input files, and review the generated files before using them for VASP calculations.
