skill-creation
Guide for creating, checking, and evaluating reusable ADK skill bundles under the user-global MatCreator skill root.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide for creating, checking, and evaluating reusable ADK skill bundles under the user-global MatCreator skill root.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate VASP inputs (INCAR/POSCAR/POTCAR/KPOINTS) via pymatgen.io.vasp.sets for DFT calculations: MPRelaxSet (geometry relaxation), MPStaticSet (SCF), MPNonSCFSet (band structure), MatPESStaticSet (MLFF energy/force labeling). INCAR is driven by pymatgen defaults; the agent only supplies user_incar_settings overrides. Use when the user asks to prepare VASP calculations, run DFT, or generate MLFF training data from structures. Do NOT use for VASP result post-processing / analysis, non-VASP DFT codes, or molecular dynamics — this skill only generates input files and submits jobs.
Deep potential models finetuning and testing using the DeePMD-kit. Use this skill whenever finetuning a Deep Potential (DPA-1 / DPA-2 / DPA-3 / DPA-4) model or running model tests on a dataset. The oldest DP descriptors such as se_e2_a, se_e2_r, and se_e3 are no longer supported. Training from scratch is NEVER advised unless distilling a student model from a teacher model. Multitask fine-tuning is NOT supported.
Skill for running ASE calculations, including energy/force/stress evaluation, molecular dynamics (MD) and structure optimization. Now only use machine-learned force fields (MLFFs) as calculators.
Concept skill for Machine Learning Force Fields (MLFFs). Describes what MLFFs are, the distinction between fine-tuning and distillation, and which tool skills to use. Load this before selecting a specific MLFF framework (DeePMD, MatterSim, etc.).
Concept skill for Molecular Dynamics (MD) simulation. Describes MD ensembles, key parameters, and which tool skills to invoke for MD runs. Use this to understand MD concepts before selecting a specific simulation tool.
Equation-of-State (EOS) benchmark skill — compare DFT, pretrained, and finetuned model E(V) curves to evaluate force-field quality for bulk crystals and simple systems.
| name | skill-creation |
| description | Guide for creating, checking, and evaluating reusable ADK skill bundles under the user-global MatCreator skill root. |
| metadata | {"tools":["get_user_skills_root","run_python","run_bash","refresh_skills"],"tags":["skill-authoring","adk","validation"]} |
Use this guide when the user asks to create, improve, or evaluate a reusable MatCreator skill.
get_user_skills_root() before writing any skill files.<user_skills_root>/<skill-name>/<user_skills_root>/<skill-name>/SKILL.mdUse the standard ADK skill layout:
<skill-name>/
SKILL.md
references/ optional long-form references
assets/ optional examples, templates, or static data
scripts/ optional executable helper scripts
tests/ optional validation scripts or fixtures
Keep SKILL.md concise. Move lengthy command references, scientific background, examples, or API notes into references/ or assets/.
SKILL.md FormatUse YAML frontmatter followed by Markdown instructions:
---
name: <kebab-case-or-snake_case-name>
description: <one sentence that helps the planner decide when to use the skill>
metadata:
tools:
- run_bash
dependent_skills: []
tags:
- relevant-tag
---
# <Human-readable title>
Clear, operational instructions for the agent.
Rules:
metadata.tools.metadata.dependent_skills.SKILL.md.After creating or changing a skill, run these checks and fix failures before reporting success:
google.adk.skills.load_skill_from_dir(<skill_dir>) loads the bundle.refresh_skills() so the current session can discover the new skill.Report:
SKILL.md.