/discover
Initialize evo for the current repository by exploring the codebase, proposing unexplored optimization dimensions, constructing the benchmark inside a baseline worktree, and running the first experiment. Use when the user invokes /evo:discover, mentions setting up evo, wants to
$ npx -y skills add evo-hq/evo --skill discover --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/discover
Context preview
The summary Claude sees to decide when to auto-load this skill.
Initialize evo for the current repository by exploring the codebase, proposing unexplored optimization dimensions, constructing the benchmark inside a baseline worktree, and running the first experiment. Use when the user invokes /evo:discover, mentions setting up evo, wants to
SKILL.md
discover.SKILL.mdname: discover
description: Initialize evo for the current repository by exploring the codebase, proposing unexplored optimization dimensions, constructing the benchmark inside a baseline worktree, and running the first experiment. Use when the user invokes /evo:discover, mentions setting up evo, wants to instrument a codebase for autonomous optimization, or asks to start a new evo run on a project.
argument-hint: <optional context about what to optimize>
evo_version: 0.8.0
Discover
Internal procedure for `evo:discover`. The user only sees the user-facing prompts, the dashboard URL, and the baseline score -- everything else is the agent's choreography.
Evo surface
General guidance on the skills and tools available in evo. Each line is a triggering condition: if you're about to do X, pull/dispatch/read this. Don't preload -- act when the trigger fires.
**Always have a sense of the skill before jumping into its references.** A skill body carries the decision-making; references are concrete contracts that assume a decision has been made.
evo plugin
│
├── Main thread (the orchestrator -- you, inside /evo:discover or /evo:optimize)
│ │
│ ├── Skills (Skill tool)
│ │ ├── evo:discover starting a new evo workspace / instrumenting a project
│ │ ├── evo:optimize after discover commits the baseline -- drives the loop.
│ │ │ Args: subagents=N (read sizing-the-round FIRST),
│ │ │ autonomous, subagents-only, budget=N, stall=N
│ │ ├── evo:ship after the loop stops -- distills the best valid
│ │ │ experiment into a mergeable change (PR if remote,
│ │ │ else merge) + a mergeability report
│ │ ├── evo:finetuning task is finetuning / post-training / training a model
│ │ └── evo:infra-setup need a remote backend, pooled workspaces, lease/slot
│ │ management, or specific provider auth/setup
│ │
│ └── Subagents to dispatch (Task tool, subagent_type=...)
│ ├── evo:benchmark-reviewer before the baseline run, or whenever the
│ │ benchmark command / harness changes
│ └── evo:ideator stalled, or every ~5 committed experiments.
│ One subagent per brief:
│ failure_analysis, literature, frontier_extrapolation
│
├── Subagent thread (each subagent spawned by /optimize step 5)
│ │
│ ├── Skills (the subagent loads this on first turn -- the brief's first
│ │ sentence mandates it; not auto-loaded by the host)
│ │ └── evo:subagent load FIRST -- defines the iteration protocol
│ │ + brief field shape the subagent operates under
│ │
│ └── Subagents to dispatch (Task tool, subagent_type=...)
│ └── evo:verifier ALWAYS dispatch pre AND post every evo run.
│ Pre: ~30s static analysis before the experiment runs.
│ Post: result-validity audit after it commits.
│ Not optional. Not ad-hoc.
│
└── Key references (Read tool, on demand)
├── discover/references/
│ ├── constructing-benchmark.md designing + assembling a benchmark from scratch
│ ├── sdk_python.py / sdk_node.js wiring per-task instrumentation -- preferred path
│ ├── inline_instrumentation.py inline fallback when SDK can't be used.
│ │ Copy as-is; do not reimplement (file header
│ │ explains why)
│ ├── sizing-the-round.md BEFORE invoking /evo:optimize with any
│ │ specific subagents=N. Single-GPU /
│ │ single-exclusive-resource -> subagents=1
│ ├── proposing-dimensions.md choosing what to optimize when not obvious
│ └── instrumentation-contract.md the format evo reads (result + traces shapes)
│
├── finetuning/references/
│ ├── glue.md writing train.py -- I/O contract evo expects
│ ├── diagnostics.md per-failure-mode diagnostics
│ ├── false-progress.md what doesn't count as improvement
│ ├── trace-schema.md per-task trace JSON schema for training runs
│ ├── rl/ RL framework references
│ │ └── art.md ART (Algorithm-Refined Training)
│ ├── sft/ SFT framework references
│ │ └── tinker.md Tinker SFT
│ └── serving/ eval-time inference references
│ └── vllm.md vLLM serving config + LoRA-multi
│
├── infra-setup/references/
│ └── provider-matrix.md provider/backend summary (auth, setup, costs)
│
└── references/ (shared across skills)
├── evo-wait.md any time you need to wait without burning
│ context (subagent completion, training,
│ ideators, GPU activity, any long-running)
├── agent-sdk-reference.md SDK API surface
└── cli-quick-reference.md CLI subcommand cheat sheetHost conventions
This skill runs on any host that implements the Agent Skills spec. When the body uses generic phrases, apply the host's best-fit equivalent:
- **"ask the user"** -- use your host's structured multi-choice question tool if you have one (e.g. `AskUserQuestion`, `request_user_input`). If the host has none, phrase the question as plain text in your next reply and wait for the user's answer.
- **File paths like `references/...`** -- relative to this `SKILL.md`; resolve from the skill directory.
- **Slash c
Read more
name: discover description: Initialize evo for the current repository by exploring the codebase, proposing unexplored optimization dimensions, constructing the benchmark inside a baseline worktree, and running the first experiment. Use when the user invokes /evo:discover, mentions setting up evo, wants to instrument a codebase for autonomous optimization, or asks to start a new evo run on a project. argument-hint: <optional context about what to optimize> evo_version: 0.8.0
Discover
Internal procedure for `evo:discover`. The user only sees the user-facing prompts, the dashboard URL, and the baseline score -- everything else is the agent's choreography.
Evo surface
General guidance on the skills and tools available in evo. Each line is a triggering condition: if you're about to do X, pull/dispatch/read this. Don't preload -- act when the trigger fires.
**Always have a sense of the skill before jumping into its references.** A skill body carries the decision-making; references are concrete contracts that assume a decision has been made.
evo plugin
│
├── Main thread (the orchestrator -- you, inside /evo:discover or /evo:optimize)
│ │
│ ├── Skills (Skill tool)
│ │ ├── evo:discover starting a new evo workspace / instrumenting a project
│ │ ├── evo:optimize after discover commits the baseline -- drives the loop.
│ │ │ Args: subagents=N (read sizing-the-round FIRST),
│ │ │ autonomous, subagents-only, budget=N, stall=N
│ │ ├── evo:ship after the loop stops -- distills the best valid
│ │ │ experiment into a mergeable change (PR if remote,
│ │ │ else merge) + a mergeability report
│ │ ├── evo:finetuning task is finetuning / post-training / training a model
│ │ └── evo:infra-setup need a remote backend, pooled workspaces, lease/slot
│ │ management, or specific provider auth/setup
│ │
│ └── Subagents to dispatch (Task tool, subagent_type=...)
│ ├── evo:benchmark-reviewer before the baseline run, or whenever the
│ │ benchmark command / harness changes
│ └── evo:ideator stalled, or every ~5 committed experiments.
│ One subagent per brief:
│ failure_analysis, literature, frontier_extrapolation
│
├── Subagent thread (each subagent spawned by /optimize step 5)
│ │
│ ├── Skills (the subagent loads this on first turn -- the brief's first
│ │ sentence mandates it; not auto-loaded by the host)
│ │ └── evo:subagent load FIRST -- defines the iteration protocol
│ │ + brief field shape the subagent operates under
│ │
│ └── Subagents to dispatch (Task tool, subagent_type=...)
│ └── evo:verifier ALWAYS dispatch pre AND post every evo run.
│ Pre: ~30s static analysis before the experiment runs.
│ Post: result-validity audit after it commits.
│ Not optional. Not ad-hoc.
│
└── Key references (Read tool, on demand)
├── discover/references/
│ ├── constructing-benchmark.md designing + assembling a benchmark from scratch
│ ├── sdk_python.py / sdk_node.js wiring per-task instrumentation -- preferred path
│ ├── inline_instrumentation.py inline fallback when SDK can't be used.
│ │ Copy as-is; do not reimplement (file header
│ │ explains why)
│ ├── sizing-the-round.md BEFORE invoking /evo:optimize with any
│ │ specific subagents=N. Single-GPU /
│ │ single-exclusive-resource -> subagents=1
│ ├── proposing-dimensions.md choosing what to optimize when not obvious
│ └── instrumentation-contract.md the format evo reads (result + traces shapes)
│
├── finetuning/references/
│ ├── glue.md writing train.py -- I/O contract evo expects
│ ├── diagnostics.md per-failure-mode diagnostics
│ ├── false-progress.md what doesn't count as improvement
│ ├── trace-schema.md per-task trace JSON schema for training runs
│ ├── rl/ RL framework references
│ │ └── art.md ART (Algorithm-Refined Training)
│ ├── sft/ SFT framework references
│ │ └── tinker.md Tinker SFT
│ └── serving/ eval-time inference references
│ └── vllm.md vLLM serving config + LoRA-multi
│
├── infra-setup/references/
│ └── provider-matrix.md provider/backend summary (auth, setup, costs)
│
└── references/ (shared across skills)
├── evo-wait.md any time you need to wait without burning
│ context (subagent completion, training,
│ ideators, GPU activity, any long-running)
├── agent-sdk-reference.md SDK API surface
└── cli-quick-reference.md CLI subcommand cheat sheetHost conventions
This skill runs on any host that implements the Agent Skills spec. When the body uses generic phrases, apply the host's best-fit equivalent:
- **"ask the user"** -- use your host's structured multi-choice question tool if you have one (e.g. `AskUserQuestion`, `request_user_input`). If the host has none, phrase the question as plain text in your next reply and wait for the user's answer.
- **File paths like `references/...`** -- relative to this `SKILL.md`; resolve from the skill directory.
- **Slash c
Get started with autoresearch on any codebase - with two simple commands. Do you want to do more with autoresearch or need a custom, hands-on deployment? Request access to evo platform or email hello@evo-hq.com.
Other skills on evo.
- /infra-setup
Non-user-invocable provider/setup reference for evo backend switching, prerequisite checks, and auth/install guidance.
Open skill - /optimize
Drive structured autoresearch iteration after evo:discover and the baseline commit. Use when the user invokes /evo:optimize or asks to try ideas, try variants, run experiments, use available GPUs, improve the current best/frontier, continue an evo search, or compare candidate
Open skill - /report
Read-only evo run reporting. Use when the user invokes /evo:report, asks what happened overnight, asks what improved recently, asks for the best/frontier candidates, asks for a quick score chart without opening the dashboard, or wants the scatter plot in chat output. Never run
Open skill - /ship
Land the winning experiment from an evo run as a clean, mergeable change -- open a PR when the repo has a remote, otherwise merge into the working branch. Distills the best-scoring experiment down to the minimal diff that reproduces its behaviour, shaped for the qualities a
Open skill - /subagent
Protocol that evo optimization subagents follow when dispatched from /optimize. Auto-loaded by spawned subagents via their host's skill loader. The orchestrator may also invoke this skill to understand the brief shape its dispatched subagents expect + what they're required to
Open skill - /finetuning
This skill should be used when picking or diagnosing a training move (SFT, LoRA, DPO/KTO/ORPO, RFT, GRPO/PPO/RLOO, RLHF), or when the user mentions fine-tuning, post-training, training recipe, reward design, or weight updates. Decision tree by reward shape, smoke-run gate, three
Open skill

