@akagilnc/pi-workflow-roles 0.1.2377 → 0.1.2381
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
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`.
|
package/src/auditor-soul.ts
CHANGED
|
@@ -21,7 +21,12 @@ function auditorSoulRelativePath(role: AuditorSoulRole): string {
|
|
|
21
21
|
* not (御批四: 参审四席 = 大理寺/御史台主会话 + 两审计席; 太医线不动).
|
|
22
22
|
*/
|
|
23
23
|
export const AUDITOR_SESSION_MATERIALS = {
|
|
24
|
-
judge: [
|
|
24
|
+
judge: [
|
|
25
|
+
"CLAUDE.md",
|
|
26
|
+
"souls/judge-auditor.md",
|
|
27
|
+
"souls/audit-law.md",
|
|
28
|
+
"souls/quality-law.md",
|
|
29
|
+
],
|
|
25
30
|
reviewer: ["CLAUDE.md", "souls/reviewer-auditor.md", "souls/audit-law.md"],
|
|
26
31
|
doctor: ["CLAUDE.md", "souls/doctor-auditor.md"],
|
|
27
32
|
} as const satisfies Record<
|
|
@@ -29,7 +29,13 @@ export async function joinPackageMaterials(
|
|
|
29
29
|
|
|
30
30
|
/** Seven public main roles + Navigator. Ticket #443 injection roster. */
|
|
31
31
|
export const MAIN_ROLE_SESSION_MATERIALS = {
|
|
32
|
-
judge: [
|
|
32
|
+
judge: [
|
|
33
|
+
"CLAUDE.md",
|
|
34
|
+
"souls/judge.md",
|
|
35
|
+
"souls/audit-law.md",
|
|
36
|
+
"souls/quality-law.md",
|
|
37
|
+
"souls/judge-output-guide.md",
|
|
38
|
+
],
|
|
33
39
|
fixer: [
|
|
34
40
|
"CLAUDE.md",
|
|
35
41
|
"souls/fixer.md",
|