You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keep wait_agents live and strip leftover fleet ads
The fused task wrapper is gone, so wait_agents is a long-lived parent
tool and spawn_agent progress lasts the worker lifetime. Exec overlay
tests now pin that mountFleet:false drops fleet verbs, not merely the
old task name.
|`--provider <name>` / `--model <id>`| Required unless `--matrix`. Single-variant via `loadConfig`. Not inferred from local settings |
190
-
|`--matrix <cells>`| Alternative to `--provider`/`--model`. Multi-variant: `p:m,p2:m2` or `label=p:m` (comma-separated). Every cell must include both sides |
|`--repeats <n>`| Runs per case×variant cell (default `1`; gate runs use `5`, baseline freezes `3`). Results record every repeat plus per-cell aggregates |
198
-
|`--concurrency <n>`| Independent case×variant×repeat cells in parallel (default `1`, env `CORBITS_EVAL_CONCURRENCY`). Each cell still uses its own temp workdir. Use `--concurrency 4` (or similar) to run a live matrix faster |
199
-
|`--dry-run`| Load cases × variants and print plan; no inference. Still requires `--provider`/`--model` or `--matrix`|
200
-
|`--director <id>`| Exec overlay: run the product `corbits exec` path with this director's system prompt and initially-advertised tool set (default: skywalker). Eval/CI override, not single-agent mode. Directors that cannot spawn (for example `build`) do not mount `task`. |
|`--provider <name>` / `--model <id>`| Required unless `--matrix`. Single-variant via `loadConfig`. Not inferred from local settings |
190
+
|`--matrix <cells>`| Alternative to `--provider`/`--model`. Multi-variant: `p:m,p2:m2` or `label=p:m` (comma-separated). Every cell must include both sides |
|`--repeats <n>`| Runs per case×variant cell (default `1`; gate runs use `5`, baseline freezes `3`). Results record every repeat plus per-cell aggregates |
198
+
|`--concurrency <n>`| Independent case×variant×repeat cells in parallel (default `1`, env `CORBITS_EVAL_CONCURRENCY`). Each cell still uses its own temp workdir. Use `--concurrency 4` (or similar) to run a live matrix faster |
199
+
|`--dry-run`| Load cases × variants and print plan; no inference. Still requires `--provider`/`--model` or `--matrix`|
200
+
|`--director <id>`| Exec overlay: run the product `corbits exec` path with this director's system prompt and initially-advertised tool set (default: skywalker). Eval/CI override, not single-agent mode. Directors that cannot spawn (for example `build`) do not mount `spawn_agent` / `wait_agents`. |
Copy file name to clipboardExpand all lines: plugins/corbits-skills/skills/opsh/SKILL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ description: Write scripts using opsh and its built-in libraries. Tiny scripts:
6
6
7
7
# opsh Scripting
8
8
9
-
How to write scripts with opsh and its libraries. Tiny / single-file scripts: DIY with write_file/edit_file using these rules. Substantial script work: spawn `spawn_agent(agent="builder")` with these rules copied into the brief(workers do not mount `use_skill`). For a review, spawn `spawn_agent(agent="critic")` (or `spawn_agent(agent="neckbeard")` for hygiene-only) with the same rules copied in.
9
+
How to write scripts with opsh and its libraries. Tiny / single-file scripts: DIY with write_file/edit_file using these rules. Substantial script work: spawn `spawn_agent(agent="builder")` with these rules copied into the brief, then collect with `wait_agents`(workers do not mount `use_skill`). For a review, spawn `spawn_agent(agent="critic")` (or `spawn_agent(agent="neckbeard")` for hygiene-only) with the same rules copied in, then `wait_agents`.
10
10
11
11
Shell for agent commands is `run_shell`. Bash-the-language in the examples below stays — opsh scripts are bash.
0 commit comments