@akagilnc/pi-workflow-roles 0.1.2462 → 0.1.2466
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
|
@@ -65,9 +65,8 @@ hermes -z "YOUR_LABOR_PROMPT" --in /path/to/project --no-restore-cwd \
|
|
|
65
65
|
simultaneously, losing legs saw sustained HTTP 429 across 9-29 detour
|
|
66
66
|
attempts while the 1-2 winners completed normally (Ming_LLM books runs
|
|
67
67
|
01a046ec-*/01a046f4-*, 14:55-15:04 window).
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
the typed engine failure in the receipt — do not hammer retries.
|
|
68
|
+
No concurrency ceiling has been measured beyond this observation; policy on
|
|
69
|
+
concurrency and retries is the dispatcher's call, not this note's.
|
|
71
70
|
|
|
72
71
|
## Smoke test (run before first labor leg of a session)
|
|
73
72
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# sonnet engine method material
|
|
2
|
+
|
|
3
|
+
This file is packaged technical material for the optional `sonnet` labor engine
|
|
4
|
+
(Claude Code CLI on the host, pinned to the Sonnet model).
|
|
5
|
+
|
|
6
|
+
Before invoking the engine, read `../engine-dispatch.md`, resolving that path
|
|
7
|
+
relative to this note. This note only covers this engine's CLI technical
|
|
8
|
+
parameters.
|
|
9
|
+
|
|
10
|
+
## Invocation
|
|
11
|
+
|
|
12
|
+
Same host CLI as the `opus` engine: the machine entrypoint is `claude`, and all
|
|
13
|
+
CLI mechanics (print mode, `--output-format=stream-json` requiring `--verbose`,
|
|
14
|
+
fd layout, result-row extraction) are documented in `../opus.md` — read that
|
|
15
|
+
note for them; they are not duplicated here.
|
|
16
|
+
|
|
17
|
+
The only difference is the model pin:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
claude -p --model sonnet --verbose --output-format=stream-json "YOUR_LABOR_PROMPT"
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
`--model sonnet` is verified accepted on this host (Claude Code 2.1.233); the
|
|
24
|
+
stream-json init event reports `claude-sonnet-5` (host-verified 2026-08-28).
|
|
25
|
+
|
|
26
|
+
Prefer `claude --help` on the host over any remembered flag set. Do not wrap
|
|
27
|
+
this engine behind `ak-role` flags.
|