@akagilnc/pi-workflow-roles 0.1.2464 → 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 +1 -1
- package/resources/engines/sonnet.md +27 -0
package/package.json
CHANGED
|
@@ -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.
|