원클릭으로
bo-init-run
Initialize a BO run from a dataset or explicit search-space JSON.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Initialize a BO run from a dataset or explicit search-space JSON.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Orchestrate an end-to-end chemistry or materials optimization study from a plain-English research question to BO execution and a paper draft.
BO execution layer — initializes a run from a resolved experiment spec, records observations, and continues through suggest/observe/report.
Generate a final BO report and summarize optimization status.
Run an external evaluator loop for a BO run using a pre-provisioned backend id.
Design and stabilize an expensive or fragile chemistry evaluator before BO setup.
Produce a lightweight chemistry or materials literature summary for research-agent, focused on baselines, key variables, and known constraints.
| name | bo-init-run |
| description | Initialize a BO run from a dataset or explicit search-space JSON. |
Use this skill when the user asks to start an optimization campaign.
Dataset-backed init:
uv run python -m bo_workflow.cli init \
--dataset <CSV_PATH> --target <TARGET_COL> --objective <min|max>
Search-space init:
uv run python -m bo_workflow.cli init \
--search-space-json '<JSON_OR_PATH>' --target <TARGET_COL> --objective <min|max>
Optional flags: --engine <hebo|bo_lcb|random|botorch> (default hebo), --hebo-model <gp|rf> (HEBO only, default gp), --seed <N> (default 7), --init-random <N> (default 10), --batch-size <N> (default 1), --run-id <ID>, --intent-json <JSON_OR_PATH>, --drop-cols <col1,col2>, --simplex-groups <cols:total> (repeatable).
Engine constraints:
bo_lcb: batch-size 1 onlybotorch: prefer this for small-to-medium search spaces with many categorical choices, especially when evaluations are expensive and sample efficiency mattershebo: still a good general default for broader mixed tabular spaces and many routine BO runshebo --hebo-model rf: preferred first fallback when hebo --hebo-model gp shows repeated jitter / GP fitting failures on mixed spacesReasonable engine-choice heuristic:
botorch when the search space is mostly or entirely categorical, the all-categorical candidate count is still modest enough to reason about (default threshold <= 2000 combinations), and each evaluation is expensive enough that finding a strong basin early matters more than cheap optimizer overhead.hebo when the space is broader and more mixed numeric/categorical, when you want the repo's general-purpose default, or when there is no clear reason to bias toward BoTorch.hebo --hebo-model gp looks numerically unstable on a mixed space, try hebo --hebo-model rf before abandoning HEBO entirely.Simplex constraints:
Use --simplex-groups when the problem has compositional variables that must sum to a fixed total. This is domain knowledge — infer it from the user's problem description, not from the data.
# OER: metal proportions must sum to 100
--simplex-groups 'Metal_1_Proportion,Metal_2_Proportion,Metal_3_Proportion:100'
# HEA: elemental fractions must sum to 1
--simplex-groups 'x_Co,x_Cu,x_Mn,x_Fe,x_V:1'
# Multiple independent simplex groups
--simplex-groups 'A,B,C:1' --simplex-groups 'D,E:100'
Constraints are stored in state.json under "constraints" and enforced at every suggest call by normalizing the group columns to sum to total.
run_idactive_featuresconstraints list (empty if none specified)input_spec.json persisted under the run directorybo_runs/<run_id>/state.json--target and --objective.--intent-json to preserve the user's original prompt for provenance.--search-space-json when an upstream agent has already resolved design_parameters and fixed_features.experiment_spec.bo_engine, pass it explicitly via --engine instead of relying on the repo default.