원클릭으로
import-run
Use when starting a new Eve run seeded from one or more prior runs, e.g. keep the good solvers but try a fresh optimizer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when starting a new Eve run seeded from one or more prior runs, e.g. keep the good solvers but try a fresh optimizer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Use when creating new subagents, editing existing subagents, or verifying subagents work before deployment
Use when choosing, editing, or overriding EvE driver settings for codex_smoke, codex_max, or interactive/debug runs.
Use when an Eve agent is behaving wrong (stuck, gaming the score, bad reasoning) and you need to read its own rollout to find out why
Use when implementing a sanity check subagent for the phase 2 optimization in Eve loop.
Use when implementing a subagent.
| name | import-run |
| description | Use when starting a new Eve run seeded from one or more prior runs, e.g. keep the good solvers but try a fresh optimizer |
import starts a new run (new run id) whose initial population is seeded from one or more prior runs. Use it to keep what worked and change what didn't. To continue the same run instead, see ../resume-run/SKILL.md.
The classic case: the optimizer evolved poorly but some solvers are good. Keep the solvers, start a fresh optimizer.
uv run python -m scaling_evolve.algorithms.eve.runner --config-name=<config> \
'import_from={path: <old_run_root>, import_solvers: true, import_optimizers: false}' \
+optimizer.seed_initial_on_import=true
import_solvers / import_optimizers select, per side, which populations carry over (both default true); they live inside the per-source mapping.import_optimizers: false, the optimizer population starts empty unless you also pass +optimizer.seed_initial_on_import=true, which seeds the new run's initial_guidance/. Omit it and the run has no optimizer. The + is required (this key is not pre-declared in the config).initial_guidance/ before launching. Unlike resume, import does seed it.import_from accepts a list; sources import in order, additively:
'import_from=[{path: <run_a>, import_solvers: true, import_optimizers: false}, {path: <run_b>, import_solvers: true, import_optimizers: false}]'
It is a normal new run: supervise with ../supervise-run/SKILL.md, inspect with ../inspect-population/SKILL.md.
import_from and resume_from are mutually exclusive.