@akagilnc/pi-workflow-roles 0.1.2377 → 0.1.2379
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 +10 -2
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 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
|
|
18
|
+
agy --sandbox --dangerously-skip-permissions --print-timeout 30m --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,9 +31,17 @@ this host (2026-08-26): `gemini-3.7-flash-high`, `gemini-3.7-flash-medium`,
|
|
|
31
31
|
`gemini-3.7-flash-low`, and 3.6 equivalents.
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
agy --sandbox --dangerously-skip-permissions --model gemini-3.7-flash-high --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
|
|
34
|
+
agy --sandbox --dangerously-skip-permissions --print-timeout 30m --model gemini-3.7-flash-high --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`).
|
|
40
|
+
|
|
41
|
+
## Print-mode timeout
|
|
42
|
+
|
|
43
|
+
`--print-timeout` defaults to 5m0s — too short for labor turns; a full apply
|
|
44
|
+
labor exceeded it (host-verified 2026-08-26, run 01a03dae-5635@coder,
|
|
45
|
+
"timeout waiting for response"). Labor invocations pass `--print-timeout 30m`.
|
|
46
|
+
A timeout that still fires is an engine-process failure: typed failure and
|
|
47
|
+
STOP per `../engine-dispatch.md`.
|