@evo-hq/pi-evo 0.7.0-alpha.2 → 0.7.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/skills/discover/SKILL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: discover
|
|
3
3
|
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.
|
|
4
4
|
argument-hint: <optional context about what to optimize>
|
|
5
|
-
evo_version: 0.7.0-alpha.
|
|
5
|
+
evo_version: 0.7.0-alpha.3
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Discover
|
|
@@ -119,20 +119,20 @@ evo --version
|
|
|
119
119
|
The output must be exactly:
|
|
120
120
|
|
|
121
121
|
```
|
|
122
|
-
evo-hq-cli 0.7.0-alpha.
|
|
122
|
+
evo-hq-cli 0.7.0-alpha.3
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
Three outcomes:
|
|
126
126
|
|
|
127
127
|
1. **Matches exactly** — continue to step 1.
|
|
128
128
|
2. **Reports a different version** (`evo-hq-cli 0.4.2`, etc.) — the host refetched a newer/older skill bundle than the CLI on PATH. Drift breaks skills silently. Stop and tell the user:
|
|
129
|
-
> Your installed evo CLI is on a different version than this skill (`0.7.0-alpha.
|
|
129
|
+
> Your installed evo CLI is on a different version than this skill (`0.7.0-alpha.3`). Run:
|
|
130
130
|
> ```
|
|
131
|
-
> uv tool install --force evo-hq-cli==0.7.0-alpha.
|
|
131
|
+
> uv tool install --force evo-hq-cli==0.7.0-alpha.3
|
|
132
132
|
> ```
|
|
133
133
|
> Then re-invoke this skill.
|
|
134
134
|
3. **`command not found`, or reports a different package** (commonly `evo 1.x` — the unrelated SLAM tool) — the CLI isn't installed. Tell the user:
|
|
135
|
-
> `evo-hq-cli` isn't on your PATH. Install it: `uv tool install evo-hq-cli==0.7.0-alpha.
|
|
135
|
+
> `evo-hq-cli` isn't on your PATH. Install it: `uv tool install evo-hq-cli==0.7.0-alpha.3` (or `pipx install evo-hq-cli==0.7.0-alpha.3`). Then re-invoke this skill.
|
|
136
136
|
|
|
137
137
|
Do not try to auto-install. Host sandbox + network policy may block it; leaving the install as a user action keeps failure modes clear.
|
|
138
138
|
|
package/skills/optimize/SKILL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: optimize
|
|
3
3
|
description: 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 changes in an evo workspace. The orchestrator plans and spawns optimization subagents; candidate edits/runs belong to those subagents. Width is set via subagents=N (1 for serial workloads, larger for parallel); the loop's structural value applies at any width.
|
|
4
4
|
argument-hint: "[subagents=N] [budget=N] [stall=N]"
|
|
5
|
-
evo_version: 0.7.0-alpha.
|
|
5
|
+
evo_version: 0.7.0-alpha.3
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Run the `evo` optimization loop. Each round, the orchestrator writes structured briefs and spawns subagents that execute within them. Each subagent is semi-autonomous: it reads the pointer traces, forms the concrete edit, runs experiments, and can iterate within its branch. Runs until interrupted or the stall limit is reached.
|
package/skills/report/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: report
|
|
3
3
|
description: 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 benchmarks, gates, Slurm commands, evo run, or ad-hoc verification scripts for report requests.
|
|
4
|
-
evo_version: 0.7.0-alpha.
|
|
4
|
+
evo_version: 0.7.0-alpha.3
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Report
|
package/skills/ship/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ship
|
|
3
3
|
description: 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 maintainer merges on (scope discipline, test integrity, style adherence), then attaches an advisory mergeability report. Use when the user invokes /evo:ship, asks to land/merge/ship the best result, or wants to turn a finished optimization into a pull request.
|
|
4
|
-
evo_version: 0.7.0-alpha.
|
|
4
|
+
evo_version: 0.7.0-alpha.3
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Ship
|
package/skills/subagent/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: subagent
|
|
3
3
|
description: 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 emit -- useful when writing briefs or debugging a subagent's behavior.
|
|
4
|
-
evo_version: 0.7.0-alpha.
|
|
4
|
+
evo_version: 0.7.0-alpha.3
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Evo Subagent Protocol
|