Materials Screening (Meta Skill)
This meta-skill orchestrates a computational materials screening pipeline by
combining database querying, property-based filtering, structural analysis,
and multi-criteria ranking. It coordinates three specialized skills to
systematically identify and evaluate candidate materials for target applications.
Workflow
Step 1: Database Search and Candidate Retrieval
Query the Materials Project API to build an initial candidate pool based on
application-specific criteria:
- Chemical system constraints (e.g., Li-containing oxides for battery cathodes)
- Space group or crystal system requirements
- Elemental composition filters (include/exclude specific elements)
- Property range pre-filters (band gap, formation energy, density)
Retrieve structural data (CIF files), computed properties, and literature
references for each candidate material.
Step 2: Property-Based Filtering
Apply quantitative property thresholds to narrow the candidate pool:
- Electronic: Band gap range for semiconductors, metals, or insulators
- Thermodynamic: Formation energy cutoffs for synthesizability
- Mechanical: Bulk/shear modulus for structural applications
- Physical: Density, volume per atom, coordination preferences
- Magnetic: Magnetic ordering for spintronic applications
Define application-specific filter chains (e.g., for photovoltaics: band gap
1.0-1.8 eV, direct gap preferred, low effective mass).
Step 3: Structure Analysis with Pymatgen
Perform detailed structural characterization on filtered candidates:
- Symmetry analysis: space group verification, site symmetries
- Bonding analysis: coordination environments, bond lengths and angles
- Defect tolerance: vacancy formation energies, anti-site energies
- Surface analysis: slab models, surface energy estimation
- Structural similarity: comparison across candidates using fingerprints
Step 4: Stability Assessment
Evaluate thermodynamic and dynamic stability of remaining candidates:
- Thermodynamic: Energy above the convex hull (Ehull < 25 meV/atom typical)
- Phase stability: Competing phases, decomposition products
- Phonon stability: Check for imaginary frequencies indicating dynamic instability
- Aqueous stability: Pourbaix diagram analysis for electrochemical applications
- Thermal stability: Estimated decomposition temperatures
Flag materials with marginal stability for experimental verification.
Step 5: Multi-Criteria Ranking and Selection
Use scipy optimization to rank candidates through weighted scoring:
- Define objective function combining normalized property values
- Apply Pareto front analysis for multi-objective screening
- Weight criteria by application importance (user-configurable)
- Calculate composite figure of merit for final ranking
- Sensitivity analysis on weight choices to assess ranking robustness
Output a ranked shortlist with property cards and selection rationale.
Integration Points
- materials-project -- Database queries, computed properties, phase diagrams, crystal structures
- pymatgen-materials -- Structure manipulation, symmetry, bonding, surface analysis, fingerprints
- scipy-analysis -- Optimization, Pareto analysis, statistical ranking, sensitivity analysis
Output Formats
- Candidate table: Formula, space group, key properties, stability metrics
- Property cards: Per-material summary with structure visualization description
- Ranking report: Ordered list with composite scores and contributing factors
- Stability summary: Ehull values, competing phases, phonon stability flags
- Comparison matrix: Side-by-side property comparison of top candidates
Best Practices
- Define the target application clearly before constructing filter chains
- Start with broad chemical systems and narrow progressively to avoid missing candidates
- Use energy above hull as a primary stability filter before detailed analysis
- Validate database-computed properties against experimental values when available
- Consider synthesizability alongside thermodynamic stability
- Apply cost and toxicity filters for practical applications
- Use multiple ranking weight schemes to test sensitivity of the final shortlist
- Cross-reference with ICSD or experimental databases for synthesis precedent
- Document all filter thresholds and ranking weights for reproducibility
- Flag materials requiring experimental validation of computed properties
1---2name: materials-screening3description: Orchestrates a materials screening workflow from database search through property filtering to stability assessment and ranking. Use when identifying candidate materials for batteries, catalysts, semiconductors, or other applications. NOT for molecular chemistry or biological compound analysis.4---5
6# Materials Screening (Meta Skill)
7
8This meta-skill orchestrates a computational materials screening pipeline by
9combining database querying, property-based filtering, structural analysis,
10and multi-criteria ranking. It coordinates three specialized skills to
11systematically identify and evaluate candidate materials for target applications.
12
13## Workflow
14
15### Step 1: Database Search and Candidate Retrieval
16
17Query the Materials Project API to build an initial candidate pool based on
18application-specific criteria:
19- Chemical system constraints (e.g., Li-containing oxides for battery cathodes)
20- Space group or crystal system requirements
21- Elemental composition filters (include/exclude specific elements)
22- Property range pre-filters (band gap, formation energy, density)
23
24Retrieve structural data (CIF files), computed properties, and literature
25references for each candidate material.
26
27### Step 2: Property-Based Filtering
28
29Apply quantitative property thresholds to narrow the candidate pool:
30- **Electronic**: Band gap range for semiconductors, metals, or insulators
31- **Thermodynamic**: Formation energy cutoffs for synthesizability
32- **Mechanical**: Bulk/shear modulus for structural applications
33- **Physical**: Density, volume per atom, coordination preferences
34- **Magnetic**: Magnetic ordering for spintronic applications
35
36Define application-specific filter chains (e.g., for photovoltaics: band gap
371.0-1.8 eV, direct gap preferred, low effective mass).
38
39### Step 3: Structure Analysis with Pymatgen
40
41Perform detailed structural characterization on filtered candidates:
42- Symmetry analysis: space group verification, site symmetries
43- Bonding analysis: coordination environments, bond lengths and angles
44- Defect tolerance: vacancy formation energies, anti-site energies
45- Surface analysis: slab models, surface energy estimation
46- Structural similarity: comparison across candidates using fingerprints
47
48### Step 4: Stability Assessment
49
50Evaluate thermodynamic and dynamic stability of remaining candidates:
51- **Thermodynamic**: Energy above the convex hull (Ehull < 25 meV/atom typical)
52- **Phase stability**: Competing phases, decomposition products
53- **Phonon stability**: Check for imaginary frequencies indicating dynamic instability
54- **Aqueous stability**: Pourbaix diagram analysis for electrochemical applications
55- **Thermal stability**: Estimated decomposition temperatures
56
57Flag materials with marginal stability for experimental verification.
58
59### Step 5: Multi-Criteria Ranking and Selection
60
61Use scipy optimization to rank candidates through weighted scoring:
62- Define objective function combining normalized property values
63- Apply Pareto front analysis for multi-objective screening
64- Weight criteria by application importance (user-configurable)
65- Calculate composite figure of merit for final ranking
66- Sensitivity analysis on weight choices to assess ranking robustness
67
68Output a ranked shortlist with property cards and selection rationale.
69
70## Integration Points
71
72- **materials-project** -- Database queries, computed properties, phase diagrams, crystal structures
73- **pymatgen-materials** -- Structure manipulation, symmetry, bonding, surface analysis, fingerprints
74- **scipy-analysis** -- Optimization, Pareto analysis, statistical ranking, sensitivity analysis
75
76## Output Formats
77
78- **Candidate table**: Formula, space group, key properties, stability metrics
79- **Property cards**: Per-material summary with structure visualization description
80- **Ranking report**: Ordered list with composite scores and contributing factors
81- **Stability summary**: Ehull values, competing phases, phonon stability flags
82- **Comparison matrix**: Side-by-side property comparison of top candidates
83
84## Best Practices
85
861. Define the target application clearly before constructing filter chains
872. Start with broad chemical systems and narrow progressively to avoid missing candidates
883. Use energy above hull as a primary stability filter before detailed analysis
894. Validate database-computed properties against experimental values when available
905. Consider synthesizability alongside thermodynamic stability
916. Apply cost and toxicity filters for practical applications
927. Use multiple ranking weight schemes to test sensitivity of the final shortlist
938. Cross-reference with ICSD or experimental databases for synthesis precedent
949. Document all filter thresholds and ranking weights for reproducibility
9510. Flag materials requiring experimental validation of computed properties