@akagilnc/pi-workflow-roles 0.1.2365 → 0.1.2369

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akagilnc/pi-workflow-roles",
3
- "version": "0.1.2365",
3
+ "version": "0.1.2369",
4
4
  "description": "Soul-bound workflow roles for Pi",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -15,5 +15,25 @@ 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 --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
18
+ agy --sandbox --dangerously-skip-permissions --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
19
19
  ```
20
+
21
+ `--dangerously-skip-permissions` is required in headless labor: the CLI's
22
+ permission prompts cannot be answered without a TTY and are auto-denied,
23
+ which yields "no output produced" (host-verified 2026-08-26, run
24
+ 01a03d96-3897@judge). The sandbox stays on and provides the containment.
25
+
26
+ ## Model selection
27
+
28
+ Pin the model per invocation with `--model <id>`; without it the CLI uses its
29
+ own session default. List installed ids with `agy models`. Examples observed on
30
+ this host (2026-08-26): `gemini-3.7-flash-high`, `gemini-3.7-flash-medium`,
31
+ `gemini-3.7-flash-low`, and 3.6 equivalents.
32
+
33
+ ```bash
34
+ agy --sandbox --dangerously-skip-permissions --model gemini-3.7-flash-high --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
35
+ ```
36
+
37
+ When the dispatch order names a model, pass it verbatim via `--model`; an
38
+ unknown model id is an engine-process failure (typed failure, stop — per
39
+ `../engine-dispatch.md`).