@akagilnc/pi-workflow-roles 0.1.3884 → 0.1.3886
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
|
@@ -29,7 +29,8 @@ cursor-agent -p -f --output-format text --model <MODEL_ID> "YOUR_LABOR_PROMPT"
|
|
|
29
29
|
`cursor-grok-4.6-high`, plus `-fast` variants); some models also accept a
|
|
30
30
|
bracket override form (`'claude-opus-4-8[context=1m,effort=high]'` — see
|
|
31
31
|
`cursor-agent --help`).
|
|
32
|
-
-
|
|
32
|
+
- This note does not pin a model id. The dispatch order (owner pool
|
|
33
|
+
directive) names the model to pass verbatim via `--model`.
|
|
33
34
|
- Always `--output-format text`; never `stream-json` (the event stream goes back
|
|
34
35
|
into the seat's context as noise — see `opus.md`).
|
|
35
36
|
|
|
@@ -39,9 +40,10 @@ wrap this engine behind `ak-role` flags.
|
|
|
39
40
|
## Smoke test (run before first labor leg of a session)
|
|
40
41
|
|
|
41
42
|
```bash
|
|
42
|
-
cursor-agent -p -f --output-format text --model
|
|
43
|
+
cursor-agent -p -f --output-format text --model <MODEL_ID> "Reply with exactly one word: OK"
|
|
43
44
|
```
|
|
44
45
|
|
|
45
|
-
Expected: stdout ends with exactly `OK`, exit code 0.
|
|
46
|
-
this host (Cursor subscription login)
|
|
46
|
+
Expected: stdout ends with exactly `OK`, exit code 0. Mechanics verified
|
|
47
|
+
2026-08-28 on this host (Cursor subscription login) with a dispatch-order
|
|
48
|
+
model id substituted for `<MODEL_ID>`. If it asks about directory trust, the
|
|
47
49
|
`-f` flag (or `--trust`) is missing.
|
|
@@ -13,11 +13,13 @@ The machine entrypoint is `opencode`. Run from the role project root.
|
|
|
13
13
|
Non-interactive labor uses `run` with an explicit model:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
opencode run -m
|
|
16
|
+
opencode run -m <MODEL_ID> "YOUR_LABOR_PROMPT"
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
-
|
|
20
|
-
|
|
19
|
+
- Model id is not pinned by this note; it comes from the dispatch order
|
|
20
|
+
(owner pool directive), passed verbatim as `provider/model`. **Always
|
|
21
|
+
confirm the current id with `opencode models` first** — provider prefixes
|
|
22
|
+
migrate (verified 2026-08-21:
|
|
21
23
|
GLM lives under `opencode-go/`, e.g. `opencode-go/glm-5.2`; the older
|
|
22
24
|
`zai/glm-5.2` id errors with "Unexpected server error").
|
|
23
25
|
- Plain text output only (never `--format json` for labor — the returned body
|