Material Science Research
Use this workflow when the user wants to explore candidate materials, inspect structures, compare options, document findings, and export a report.
Goals
- Restate the research goal in concrete terms before acting.
- Define evaluation criteria before ranking candidates.
- Compile an evidence schema before presenting any research-grade claim.
- Use structured tool outputs instead of making unsupported claims.
- Save intermediate notes so the work is reproducible.
- Export a final report when the user wants a durable summary.
- Ask for approval before expensive workflows such as ASE relaxation or batch screening.
Workflow
1. Clarify the goal
- Restate the requested use case in one or two sentences.
- Identify key target properties such as stability, band gap, density, chemistry constraints, or cost proxies.
- If the goal is vague, narrow it with explicit assumptions and state them clearly.
Reference prompt: prompts/goal_refinement.md
2. Compile the research protocol
Use materials_plan_research_loop when the user asks for an open-ended research campaign, when candidates are not known yet, or when a ranked list needs property-backed validation.
- Pass
researchGoal, targetApplication, constraints, candidate-generation hints, literature/database queries, and explicit evidence requirements when available.
- If only the topic is known, pass
researchGoal and let the bounded autonomous discovery compiler create the database query log, candidate-pool JSONL, evidence-ledger JSONL, and candidate-backed protocol.
- Use
candidateGeneration.allowDevelopmentFixtures: true only for smoke tests; live research should use Materials Project or other database evidence.
- Treat the output as an evidence contract: candidate generation, literature review, database search, validation matrix, claim policy, and approval gates.
- Inspect
methodRegistry and literatureEvidencePipeline before execution; they describe domain methods, PDF/text/table extraction, parser coverage, and citation provenance expectations.
- Do not present research-grade discovery claims unless the compiled claim policy is satisfied by parsed evidence artifacts.
2.1 Evaluate the claim gate
Use materials_evaluate_research_claim after evidence has been imported or parsed into an evidence ledger.
- Pass the
planPath, evidenceLedgerPath, and target candidateId.
- If the user provides verified external evidence, pass it as
evidenceRows with sourceType, status, propertyValues, and an artifact/citation trace.
- Present the generated claim-review result instead of making your own unsupported claim.
- Check the audit certificate, uncertainty score, and conflict summary. Numeric or explicit evidence conflicts block research-grade claims until resolved.
- If the review says
researchGradeClaimAllowed: false, report the missing gates and next evidence needed.
2.1.1 Search literature evidence
Use materials_search_literature when literature gates are missing or the plan needs citation-backed benchmark context.
- Prefer plan-aware calls with
planPath and candidateId so query expansion uses the compiled literature plan and candidate formula.
- Use live providers for research work.
allowDevelopmentFixtures: true is only for smoke tests; fixture literature cannot satisfy research-grade gates.
- Treat search results as metadata evidence. Full paper/PDF/table extraction should still be ingested with
materials_ingest_evidence when available.
2.1.2 Close evidence gaps
Use materials_close_evidence_gaps when a claim review is blocked and the user asks what to do next.
- Pass
planPath, evidenceLedgerPath, and candidateId.
- Set
runLiteratureSearch: true only when the user wants bounded automatic literature metadata search as part of the closure pass.
- Follow the generated
nextToolSequence; it is the bridge from missing gates to search, backend prepare/monitor, ingestion, and renewed claim review.
2.2 Ingest parsed evidence
Use materials_ingest_evidence when backend outputs or literature/experiment tables are available.
- For QE/VASP/MD outputs, pass
artifactPaths, planPath, and candidateId; use parser: "auto" unless a specific parser is known. Supported parsed evidence includes total energy, band/DOS metadata, dielectric, surface/adsorption, phonon, AIMD, and LAMMPS-style thermo logs.
- For literature/experiment data, pass JSON, JSONL, CSV, markdown/text, or PDF files with evidence requirement IDs, statuses, property values, citations, and artifact/source traces.
- Re-run
materials_evaluate_research_claim after ingestion so claim status is based on the merged ledger.
2.3 Monitor backend execution
Use materials_execute_research_plan with executionMode: "monitor" after a prepare or submit run has produced an execution-manifest.json.
- Pass
executionManifestPath, planPath, and the backend name.
- Set
backendConfig.parseOutputs: true to parse discovered outputs into an evidence ledger.
- Set
backendConfig.claimReview: true only when you want the monitor step to emit claim-review audit artifacts immediately.
- For HPC, set
backendConfig.scheduler to slurm or pbs during prepare/submit. Include backendConfig.resources such as queue, account, nodes, ntasks, cpusPerTask, memoryGb, walltime, and modules.
- During monitor, scheduler job IDs from
submission-manifest.json are checked through squeue/sacct or qstat when those commands are available. Scheduler status is supporting provenance; parsed outputs are still required for property evidence.
3. Define evaluation criteria
Before searching, write down the criteria you will use to compare candidates. Common criteria:
- thermodynamic stability,
- band gap or metallic behavior,
- density or volumetric constraints,
- elemental composition constraints,
- structural simplicity,
- synthesis or literature familiarity if relevant.
Do not imply the ranking is objective. Explain that rankings depend on the chosen criteria and available evidence.
4. Search candidates
Use materials_search_mp to find candidate materials.
- Start broad enough to avoid premature narrowing.
- Prefer a manageable first pass, then refine.
- If Materials Project access is unavailable, do not silently continue with fixture data. Use development fixture data only when the user explicitly wants a smoke test.
5. Inspect structures
Use materials_fetch_structure to retrieve promising structures and save local artifacts.
- Fetch the top candidates you intend to analyze, not every result.
- Keep track of artifact paths so later notes and reports can reference them.
Use materials_analyze_structure to derive structural metrics and a readable summary.
- Note the limits of the analysis.
- Do not overclaim coordination or property interpretation if the evidence is weak.
Use materials_ase_relax only after approval when a local relaxation or energy/force check is appropriate.
- For lightweight smoke checks, use the default EMT calculator and keep its element limits in mind.
- For SevenNet ML-potential checks, pass
calculator: "SevenNet" and record sevenNetModel, sevenNetModal, device, and the returned citation hint in notes or reports.
- Treat SevenNet results as model-derived evidence with provenance, not as DFT-equivalent validation unless the project evidence policy explicitly accepts that model.
6. Compare and rank
Use materials_compare_candidates with explicit criteria and explain the tradeoffs.
- Mention when one candidate is more stable but less aligned with another target metric.
- Prefer ranked shortlists over single-candidate certainty.
7. Save notes as you go
Use materials_save_note for:
- assumptions,
- observations,
- failed paths,
- candidate rationales,
- open questions,
- next-step plans.
Document weak evidence and dead ends instead of quietly dropping them.
8. Export a final report
Use materials_export_report when the user wants a durable artifact.
The report should include:
- goal,
- evaluation criteria,
- candidate summaries,
- ranking rationale,
- assumptions and limitations,
- generated artifacts and references,
- recommended next steps.
Reference prompt: prompts/report_template.md
9. Approval policy
Always request approval before:
materials_ase_relax
materials_batch_screen
materials_execute_research_plan
These workflows can be slow, write multiple artifacts, or trigger heavier local computation.
Working Style
- Prefer clarity over jargon when the user does not ask for deep technical detail.
- If data is incomplete, say so plainly.
- Separate observed outputs from interpretation.
- Keep the user informed about what is live data, local analysis, or explicitly requested development fixture fallback.
1---2name: material-science-research3description: Run a careful materials-science research workflow using the Materials Lab plugin tools.4---56# Material Science Research78Use this workflow when the user wants to explore candidate materials, inspect structures, compare options, document findings, and export a report.910## Goals1112- Restate the research goal in concrete terms before acting.13- Define evaluation criteria before ranking candidates.14- Compile an evidence schema before presenting any research-grade claim.15- Use structured tool outputs instead of making unsupported claims.16- Save intermediate notes so the work is reproducible.17- Export a final report when the user wants a durable summary.18- Ask for approval before expensive workflows such as ASE relaxation or batch screening.1920## Workflow2122### 1. Clarify the goal2324- Restate the requested use case in one or two sentences.25- Identify key target properties such as stability, band gap, density, chemistry constraints, or cost proxies.26- If the goal is vague, narrow it with explicit assumptions and state them clearly.2728Reference prompt: `prompts/goal_refinement.md`2930### 2. Compile the research protocol3132Use `materials_plan_research_loop` when the user asks for an open-ended research campaign, when candidates are not known yet, or when a ranked list needs property-backed validation.3334- Pass `researchGoal`, `targetApplication`, constraints, candidate-generation hints, literature/database queries, and explicit evidence requirements when available.35- If only the topic is known, pass `researchGoal` and let the bounded autonomous discovery compiler create the database query log, candidate-pool JSONL, evidence-ledger JSONL, and candidate-backed protocol.36- Use `candidateGeneration.allowDevelopmentFixtures: true` only for smoke tests; live research should use Materials Project or other database evidence.37- Treat the output as an evidence contract: candidate generation, literature review, database search, validation matrix, claim policy, and approval gates.38- Inspect `methodRegistry` and `literatureEvidencePipeline` before execution; they describe domain methods, PDF/text/table extraction, parser coverage, and citation provenance expectations.39- Do not present research-grade discovery claims unless the compiled claim policy is satisfied by parsed evidence artifacts.4041### 2.1 Evaluate the claim gate4243Use `materials_evaluate_research_claim` after evidence has been imported or parsed into an evidence ledger.4445- Pass the `planPath`, `evidenceLedgerPath`, and target `candidateId`.46- If the user provides verified external evidence, pass it as `evidenceRows` with `sourceType`, `status`, `propertyValues`, and an artifact/citation trace.47- Present the generated claim-review result instead of making your own unsupported claim.48- Check the audit certificate, uncertainty score, and conflict summary. Numeric or explicit evidence conflicts block research-grade claims until resolved.49- If the review says `researchGradeClaimAllowed: false`, report the missing gates and next evidence needed.5051### 2.1.1 Search literature evidence5253Use `materials_search_literature` when literature gates are missing or the plan needs citation-backed benchmark context.5455- Prefer plan-aware calls with `planPath` and `candidateId` so query expansion uses the compiled literature plan and candidate formula.56- Use live providers for research work. `allowDevelopmentFixtures: true` is only for smoke tests; fixture literature cannot satisfy research-grade gates.57- Treat search results as metadata evidence. Full paper/PDF/table extraction should still be ingested with `materials_ingest_evidence` when available.5859### 2.1.2 Close evidence gaps6061Use `materials_close_evidence_gaps` when a claim review is blocked and the user asks what to do next.6263- Pass `planPath`, `evidenceLedgerPath`, and `candidateId`.64- Set `runLiteratureSearch: true` only when the user wants bounded automatic literature metadata search as part of the closure pass.65- Follow the generated `nextToolSequence`; it is the bridge from missing gates to search, backend prepare/monitor, ingestion, and renewed claim review.6667### 2.2 Ingest parsed evidence6869Use `materials_ingest_evidence` when backend outputs or literature/experiment tables are available.7071- For QE/VASP/MD outputs, pass `artifactPaths`, `planPath`, and `candidateId`; use `parser: "auto"` unless a specific parser is known. Supported parsed evidence includes total energy, band/DOS metadata, dielectric, surface/adsorption, phonon, AIMD, and LAMMPS-style thermo logs.72- For literature/experiment data, pass JSON, JSONL, CSV, markdown/text, or PDF files with evidence requirement IDs, statuses, property values, citations, and artifact/source traces.73- Re-run `materials_evaluate_research_claim` after ingestion so claim status is based on the merged ledger.7475### 2.3 Monitor backend execution7677Use `materials_execute_research_plan` with `executionMode: "monitor"` after a `prepare` or `submit` run has produced an `execution-manifest.json`.7879- Pass `executionManifestPath`, `planPath`, and the backend name.80- Set `backendConfig.parseOutputs: true` to parse discovered outputs into an evidence ledger.81- Set `backendConfig.claimReview: true` only when you want the monitor step to emit claim-review audit artifacts immediately.82- For HPC, set `backendConfig.scheduler` to `slurm` or `pbs` during prepare/submit. Include `backendConfig.resources` such as `queue`, `account`, `nodes`, `ntasks`, `cpusPerTask`, `memoryGb`, `walltime`, and `modules`.83- During monitor, scheduler job IDs from `submission-manifest.json` are checked through `squeue`/`sacct` or `qstat` when those commands are available. Scheduler status is supporting provenance; parsed outputs are still required for property evidence.8485### 3. Define evaluation criteria8687Before searching, write down the criteria you will use to compare candidates. Common criteria:8889- thermodynamic stability,90- band gap or metallic behavior,91- density or volumetric constraints,92- elemental composition constraints,93- structural simplicity,94- synthesis or literature familiarity if relevant.9596Do not imply the ranking is objective. Explain that rankings depend on the chosen criteria and available evidence.9798### 4. Search candidates99100Use `materials_search_mp` to find candidate materials.101102- Start broad enough to avoid premature narrowing.103- Prefer a manageable first pass, then refine.104- If Materials Project access is unavailable, do not silently continue with fixture data. Use development fixture data only when the user explicitly wants a smoke test.105106### 5. Inspect structures107108Use `materials_fetch_structure` to retrieve promising structures and save local artifacts.109110- Fetch the top candidates you intend to analyze, not every result.111- Keep track of artifact paths so later notes and reports can reference them.112113Use `materials_analyze_structure` to derive structural metrics and a readable summary.114115- Note the limits of the analysis.116- Do not overclaim coordination or property interpretation if the evidence is weak.117118Use `materials_ase_relax` only after approval when a local relaxation or energy/force check is appropriate.119120- For lightweight smoke checks, use the default EMT calculator and keep its element limits in mind.121- For SevenNet ML-potential checks, pass `calculator: "SevenNet"` and record `sevenNetModel`, `sevenNetModal`, `device`, and the returned citation hint in notes or reports.122- Treat SevenNet results as model-derived evidence with provenance, not as DFT-equivalent validation unless the project evidence policy explicitly accepts that model.123124### 6. Compare and rank125126Use `materials_compare_candidates` with explicit criteria and explain the tradeoffs.127128- Mention when one candidate is more stable but less aligned with another target metric.129- Prefer ranked shortlists over single-candidate certainty.130131### 7. Save notes as you go132133Use `materials_save_note` for:134135- assumptions,136- observations,137- failed paths,138- candidate rationales,139- open questions,140- next-step plans.141142Document weak evidence and dead ends instead of quietly dropping them.143144### 8. Export a final report145146Use `materials_export_report` when the user wants a durable artifact.147148The report should include:149150- goal,151- evaluation criteria,152- candidate summaries,153- ranking rationale,154- assumptions and limitations,155- generated artifacts and references,156- recommended next steps.157158Reference prompt: `prompts/report_template.md`159160### 9. Approval policy161162Always request approval before:163164- `materials_ase_relax`165- `materials_batch_screen`166- `materials_execute_research_plan`167168These workflows can be slow, write multiple artifacts, or trigger heavier local computation.169170## Working Style171172- Prefer clarity over jargon when the user does not ask for deep technical detail.173- If data is incomplete, say so plainly.174- Separate observed outputs from interpretation.175- Keep the user informed about what is live data, local analysis, or explicitly requested development fixture fallback.