Route VASP DFT requests to task-specific subskills based on user intent. Use when the user asks for VASP workflows and you must decide between static SCF, relaxation, DOS, or band-structure task preparation. This orchestration skill does not own detailed input generation logic; it dispatches to the correct VASP subskill and enforces consistent handoff to submission skills.
v0.2.0Requires a user-provided structure and valid VASP pseudopotential resources/license in the target environment.repositorysource
Please install the OpenClaw skill "dft-vasp" on the OpenClaw host.
Steps:
- Download: https://skills.computchem.cn/skill-zips/dft-vasp.zip
- Unzip it to get dft-vasp/
- Copy dft-vasp/ into the workspace skills directory (<workspace>/skills/)
- Start a NEW OpenClaw session so the skill is loaded
Then verify:
openclaw skills list --eligible
openclaw skills info dft-vasp
Prerequisites: Requires a user-provided structure and valid VASP pseudopotential resources/license in the target environment.
If you have shell access on the OpenClaw host, run the commands below.
·Direct download
# Download
wget -O dft-vasp.zip https://skills.computchem.cn/skill-zips/dft-vasp.zip
# Unzip. You will get a folder like:
# dft-vasp/
unzip dft-vasp.zip
# Copy into a loaded skills root:
# <workspace>/skills/dft-vasp/SKILL.md
mkdir -p <workspace>/skills
cp -r dft-vasp <workspace>/skills/
# Start a NEW OpenClaw session so the skill is loaded
# Verify:
openclaw skills list --eligible
openclaw skills info dft-vasp
Prerequisites: Requires a user-provided structure and valid VASP pseudopotential resources/license in the target environment.
VASP Task Router
Use this skill as the top-level VASP orchestration layer.
Purpose
This skill routes the request to one task-specific VASP subskill path:
dft-vasp/static
dft-vasp/relax
dft-vasp/dos
dft-vasp/band
Scope
This router skill should:
require a user-provided structure or prerequisite run artifacts
classify user intent into one VASP task type
collect only minimal shared context before dispatch
delegate detailed parameter handling to the selected subskill
enforce consistent output/handoff policy across subskills
This router skill should not:
own full INCAR/KPOINTS templates for all tasks
execute or submit calculations
bypass task-specific guardrails
Hard requirement
The user must provide enough starting context:
structure input for static / relax
prerequisite SCF artifacts for dos / band when required
If prerequisites are missing, stop and ask for them.
Routing rules
If user requests single-point energy/electronic SCF: route to dft-vasp/static.
If user requests geometry optimization: route to dft-vasp/relax.
If user requests density of states workflow: route to dft-vasp/dos.
If user requests band-structure workflow: route to dft-vasp/band.
If intent is ambiguous, ask one focused clarification question before routing.
Shared policy for all subskills
do not invent pseudopotentials
expose assumptions explicitly
report unresolved scientific choices
return handoff-ready task directory
if execution is requested, hand off to dpdisp-submit