@evo-hq/pi-evo 0.4.2 → 0.4.3-alpha.1
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 +1 -1
- package/skills/optimize/SKILL.md +1 -0
package/package.json
CHANGED
package/skills/optimize/SKILL.md
CHANGED
|
@@ -214,6 +214,7 @@ Per host, the spawn shape matters because evo's loop depends on *completion noti
|
|
|
214
214
|
- **openclaw** — `sessions_spawn deliver:false`; notifications delivered similarly.
|
|
215
215
|
- **opencode** — *batch-parallel only* (no background notifications). Fire N `task` calls in ONE assistant message; all `tool_result`s return together when the slowest finishes. Plan all parallel work (including non-task tools) in that single message — opencode cannot interleave reasoning across turns while subagents run.
|
|
216
216
|
- **pi** — *batch-parallel via extension*. Pi's default toolkit has no subagent primitive; `evo install pi` ensures the `pi-subagents` package is present, which registers a `subagent` tool. Fire N `subagent` calls in ONE assistant message; all results return together when the slowest finishes (same shape as opencode). If the `subagent` tool isn't available, fall back to running experiments sequentially in your own turn (`evo new` → `evo run` per attempt) and tell the user to `pi install npm:pi-subagents` for proper fanout.
|
|
217
|
+
- **cursor** — use Cursor's native Subagents to run each brief in parallel (own context per subagent), and fan them out in a single batch. If native subagents aren't available, fall back to one `cursor-agent -p "<brief>" --force` per brief (background+notify shape, like claude-code) so each runs its brief to completion in its own headless session. Inject reaches the orchestrator via the `postToolUse`/`sessionStart` hooks `evo install cursor` wires; the directive banner can arrive on either channel.
|
|
217
218
|
|
|
218
219
|
Respect the host's concurrency cap; batch if N exceeds it.
|
|
219
220
|
|