@akagilnc/pi-workflow-roles 0.1.3900 → 0.1.3902
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/resources/engines/agy.md +2 -10
package/package.json
CHANGED
package/resources/engines/agy.md
CHANGED
|
@@ -15,7 +15,7 @@ sandboxed print mode with the prompt as the positional/print argument and a
|
|
|
15
15
|
log file for diagnostics:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
agy --sandbox --dangerously-skip-permissions --print
|
|
18
|
+
agy --sandbox --dangerously-skip-permissions --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
`--dangerously-skip-permissions` is required in headless labor: the CLI's
|
|
@@ -31,18 +31,10 @@ current Gemini Flash release — that default is the owner's standing choice.
|
|
|
31
31
|
List the ids this host offers with `agy models` when an order names one.
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
agy --sandbox --dangerously-skip-permissions --print
|
|
34
|
+
agy --sandbox --dangerously-skip-permissions --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
When the dispatch order names a model, pass it verbatim via `--model`; an
|
|
38
38
|
unknown model id is an engine-process failure (typed failure, stop — per
|
|
39
39
|
`../engine-dispatch.md`). Never copy a model id from this note or from a
|
|
40
40
|
previous run — ids here would go stale.
|
|
41
|
-
|
|
42
|
-
## Print-mode timeout
|
|
43
|
-
|
|
44
|
-
`--print-timeout` defaults to 5m0s — too short for labor turns; a full apply
|
|
45
|
-
labor exceeded it (host-verified 2026-08-26, run 01a03dae-5635@coder,
|
|
46
|
-
"timeout waiting for response"). Labor invocations pass `--print-timeout 30m`.
|
|
47
|
-
A timeout that still fires is an engine-process failure: typed failure and
|
|
48
|
-
STOP per `../engine-dispatch.md`.
|