@akagilnc/pi-workflow-roles 0.1.2365 → 0.1.2367
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 +15 -0
package/package.json
CHANGED
package/resources/engines/agy.md
CHANGED
|
@@ -17,3 +17,18 @@ log file for diagnostics:
|
|
|
17
17
|
```bash
|
|
18
18
|
agy --sandbox --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
|
|
19
19
|
```
|
|
20
|
+
|
|
21
|
+
## Model selection
|
|
22
|
+
|
|
23
|
+
Pin the model per invocation with `--model <id>`; without it the CLI uses its
|
|
24
|
+
own session default. List installed ids with `agy models`. Examples observed on
|
|
25
|
+
this host (2026-08-26): `gemini-3.7-flash-high`, `gemini-3.7-flash-medium`,
|
|
26
|
+
`gemini-3.7-flash-low`, and 3.6 equivalents.
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
agy --sandbox --model gemini-3.7-flash-high --print 'YOUR_LABOR_PROMPT' --log-file /tmp/agy-labor.log
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
When the dispatch order names a model, pass it verbatim via `--model`; an
|
|
33
|
+
unknown model id is an engine-process failure (typed failure, stop — per
|
|
34
|
+
`../engine-dispatch.md`).
|