Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Bin-Cao/BaiZe --skill effect명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when a user asks to simulate powder diffraction patterns, run GSAS-II Rietveld/Pawley/Le Bail refinement, fit powder diffraction data, inspect GSAS-II service health, or build workflows combining CIF structures with XRD/neutron powder data through the deployed chemistry gateway.
Use when a user asks to parse material formulas, inspect compositions, parse or summarize crystal structures, convert CIF/POSCAR/JSON/CSSR/XSF structures, or analyze symmetry through the deployed chemistry pymatgen gateway service. Triggers on pymatgen, materials, composition, formula parsing, CIF, POSCAR, crystal structure, lattice, space group, symmetry, primitive cell, or structure conversion.
Design and prioritize candidate materials from tabular experimental or computational data. Use when identifying controllable material descriptors and one or more target properties, fitting and validating surrogate models, defining a feasible search space, optimizing single- or multi-objective performance, quantifying uncertainty, or preparing a reproducible materials-discovery recommendation report.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | effect |
| description | Work with Effect v4 / effect-smol TypeScript code in this repo |
This codebase uses Effect for typed, composable TypeScript services, schemas, and workflows.
Use the current Effect v4 / effect-smol source, not memory or older Effect v2/v3 examples.
.baize/references/effect-smol is missing, clone https://github.com/Effect-TS/effect-smol there. Do this in the project, not in the skill folder..baize/references/effect-smol for exact APIs, examples, tests, and naming patterns before answering or implementing Effect-specific code.Effect.gen(function* () { ... }) for multi-step workflows.Effect.fn("Name") or Effect.fnUntraced(...) for named effects when adding reusable service methods or important workflows.Schema for API and domain data shapes. Use branded schemas for IDs and Schema.TaggedErrorClass for typed domain errors when modeling new error surfaces.any, non-null assertions, unchecked casts, or older Effect APIs just to satisfy types..baize/references/effect-smol or nearby code first.testEffect(...) from packages/baize/test/lib/effect.ts for tests that exercise Effect services, layers, runtime context, scoped resources, or platform integrations.it.live(...) for filesystem, git repositories, HTTP servers, sockets, child processes, locks, real time, and other live platform behavior.packages/baize; never run package tests from the repo root.