Route SIESTA requests to task-specific subskills based on user intent. Use when the user asks for SIESTA workflows and you must decide between static, relaxation, molecular dynamics, or electronic-analysis preparation. This orchestration skill dispatches to the correct SIESTA subskill and enforces consistent handoff to submission skills.
v0.1.0Requires a runnable SIESTA environment and compatible pseudopotential/basis setup for target elements.repositorysource
Please install the OpenClaw skill "dft-siesta" on the OpenClaw host.
Steps:
- Download: https://skills.computchem.cn/skill-zips/dft-siesta.zip
- Unzip it to get dft-siesta/
- Copy dft-siesta/ 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-siesta
Prerequisites: Requires a runnable SIESTA environment and compatible pseudopotential/basis setup for target elements.
If you have shell access on the OpenClaw host, run the commands below.
·Direct download
# Download
wget -O dft-siesta.zip https://skills.computchem.cn/skill-zips/dft-siesta.zip
# Unzip. You will get a folder like:
# dft-siesta/
unzip dft-siesta.zip
# Copy into a loaded skills root:
# <workspace>/skills/dft-siesta/SKILL.md
mkdir -p <workspace>/skills
cp -r dft-siesta <workspace>/skills/
# Start a NEW OpenClaw session so the skill is loaded
# Verify:
openclaw skills list --eligible
openclaw skills info dft-siesta
Prerequisites: Requires a runnable SIESTA environment and compatible pseudopotential/basis setup for target elements.
SIESTA Task Router
Use this skill as the top-level SIESTA orchestration layer.
Purpose
This skill routes requests to one task-specific SIESTA subskill path:
dft-siesta/static
dft-siesta/relax
dft-siesta/md
dft-siesta/electronic
Scope
This router skill should:
require user-provided structure or prerequisite context
classify request intent into one SIESTA task type
collect minimal shared context before dispatch
delegate detailed parameter handling to selected subskill
enforce consistent output/handoff policy across subskills
This router skill should not:
own detailed templates for all SIESTA tasks
execute or submit calculations
bypass subskill-specific guardrails
Hard requirement
The user must provide enough starting context:
structure input for static / relax / md
prerequisite converged context for electronic
If prerequisites are missing, stop and ask for them.
Routing rules
If user requests single-point SCF/energy: route to dft-siesta/static.
If user requests geometry optimization: route to dft-siesta/relax.
If user requests molecular dynamics: route to dft-siesta/md.
If user requests electronic analysis workflow: route to dft-siesta/electronic.
If intent is ambiguous, ask one focused clarification question before routing.
Shared policy for all subskills
do not invent missing pseudopotential files
expose assumptions and unresolved scientific choices explicitly
return handoff-ready task layout
if execution is requested, hand off to dpdisp-submit