$npx -y skills add jinzhezenggroup/computational-chemistry-agent-skills --skill ase-calculatorsRoute ASE calculator-backend requests to adapter subskills based on backend choice. Use when ASE workflows need backend-specific calculator setup (for example GPAW or MACE) while keeping workflow logic backend-agnostic.
| 1 | # ASE Calculators Router |
| 2 | |
| 3 | Use this skill as the top-level ASE calculator adapter layer. |
| 4 | |
| 5 | ## Purpose |
| 6 | |
| 7 | This skill routes backend selection to one adapter subskill path: |
| 8 | |
| 9 | - `ase/ase-calculators/gpaw` |
| 10 | - `ase/ase-calculators/mace` |
| 11 | |
| 12 | ## Scope |
| 13 | |
| 14 | This router skill should: |
| 15 | |
| 16 | - identify backend requested by user or workflow |
| 17 | - verify minimum backend prerequisites |
| 18 | - delegate backend-specific calculator configuration |
| 19 | - return adapter configuration summary to workflow layer |
| 20 | |
| 21 | This router skill should not: |
| 22 | |
| 23 | - own workflow-level logic (`relax`, `md`, `neb` controls) |
| 24 | - execute calculations directly |
| 25 | |
| 26 | ## Routing rules |
| 27 | |
| 28 | 1. GPAW backend requested -> `ase/ase-calculators/gpaw` |
| 29 | 1. MACE backend requested -> `ase/ase-calculators/mace` |
| 30 | 1. if backend unspecified, propose options and ask one focused question |
| 31 | |
| 32 | ## Shared output contract |
| 33 | |
| 34 | Return: |
| 35 | |
| 36 | 1. selected adapter path |
| 37 | 1. backend configuration summary |
| 38 | 1. unresolved backend prerequisites |