소스 정보
- 저장소
- lamm-mit/scienceclaw
- 최근 소스 활동
- 2026년 4월 1일 15:40
- 감지된 SKILL.md 언어
- 영어
- 스타
- 242
- 포크
- 42
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lamm-mit/scienceclaw --skill phonon명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
SOC 직업 분류 기준
SKILL.md 표시 중
| name | phonon |
| description | Compute phonon properties and assess dynamic stability using ML potentials via phonopy |
| metadata | null |
Compute phonon properties (frequencies, DOS, thermal properties) and assess dynamic stability of crystal structures using the finite-displacement method via phonopy with forces from ML interatomic potentials (UMA/fairchem).
A structure is dynamically stable if all phonon frequencies are real (no imaginary modes). Imaginary frequencies indicate the structure is at a saddle point on the potential energy surface and would spontaneously distort.
phonopy installed (pip install phonopy)fairchem-core installed (for UMA calculator)ase installedphonon_stability.py — Check dynamic stability of crystal structuresFrom a directory of CIF files:
python3 {baseDir}/scripts/phonon_stability.py \
--structures-dir ./relaxed_structures \
--format json
From a single CIF file:
python3 {baseDir}/scripts/phonon_stability.py \
--structure relaxed_LaH10.cif \
--format json
With custom supercell size:
python3 {baseDir}/scripts/phonon_stability.py \
--structures-dir ./candidates \
--supercell 2,2,2 \
--model uma-s-1p2 \
--format json
| Parameter | Description |
|---|---|
--structure | Path to a single CIF/POSCAR file |
--structures-dir | Directory of CIF files to analyze |
--after-job | SLURM job ID to wait for before starting (e.g. wait for UMA screening to finish) |
--supercell | Supercell dimensions (default: auto, typically 2,2,2) |
--displacement | Finite displacement distance in Angstrom (default: 0.01) |
--model | UMA checkpoint (default: uma-m-1p1) |
--task | UMA task (default: omat) |
--device | cuda (default) or cpu |
--imaginary-threshold | Frequency threshold in THz for instability (default: -0.5) |
--output-dir | Directory for output files |
--format | summary | json |
{
"status": "COMPLETED",
"results": [
{
"label": "LaH10_relaxed",
"formula": "LaH10",
"dynamically_stable": true,
"min_frequency_THz": 0.23,
"max_frequency_THz": 45.2,
"n_imaginary_modes": 0,
"n_modes": 33,
"thermal_properties": {
"300K": {
"free_energy_kJ_per_mol": -12.5,
"entropy_J_per_mol_K": 45.2,
"heat_capacity_J_per_mol_K": 38.1
}
A structure is flagged as dynamically unstable if:
Small negative frequencies near Gamma (> -0.5 THz) are typically numerical artifacts from the acoustic sum rule and are ignored.