一键导入
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.