@akagilnc/pi-workflow-roles 0.1.3988 → 0.1.3999
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/README.md +4 -0
- package/README.zh-CN.md +4 -0
- package/dist/acp-host/production-host.js +242 -121
- package/dist/engine-detour-tool.js +8 -2
- package/dist/engine-detour.js +9 -0
- package/dist/headless-host/production-host.js +250 -129
- package/dist/package-resources/engine-material.js +24 -2
- package/dist/public-cli/config.js +76 -12
- package/dist/public-cli/diarist-run.js +3 -3
- package/dist/public-cli/doctor-run.js +6 -3
- package/dist/public-cli/inspector-run.js +3 -3
- package/dist/public-cli/instruction-seat-run.js +3 -3
- package/dist/public-cli/invocation.js +10 -4
- package/dist/public-cli/judge-run.js +5 -5
- package/dist/public-cli/main.js +242 -71
- package/dist/public-cli/notary-run.js +3 -3
- package/dist/public-cli/option-definitions.js +5 -1
- package/dist/public-cli/post-admission.js +9 -6
- package/dist/public-cli/run-lifecycle.js +10 -4
- package/dist/public-cli/turn-request.js +2 -1
- package/dist/public-role-summons.js +2 -1
- package/package.json +1 -1
- package/resources/engines/cursor.md +2 -1
- package/src/engine-detour-tool.ts +13 -2
- package/src/engine-detour.ts +17 -0
- package/src/host-contracts.ts +2 -0
- package/src/package-resources/engine-material.ts +39 -2
- package/src/public-cli/cli.ts +83 -12
- package/src/public-cli/coder-run.ts +5 -5
- package/src/public-cli/collector-run.ts +9 -3
- package/src/public-cli/config.ts +108 -15
- package/src/public-cli/countersign-run.ts +3 -3
- package/src/public-cli/diarist-run.ts +3 -3
- package/src/public-cli/doctor-run.ts +9 -3
- package/src/public-cli/fixer-run.ts +5 -5
- package/src/public-cli/gleaner-left-run.ts +3 -3
- package/src/public-cli/inspector-run.ts +3 -3
- package/src/public-cli/instruction-seat-run.ts +3 -3
- package/src/public-cli/invocation.ts +9 -3
- package/src/public-cli/judge-run.ts +5 -5
- package/src/public-cli/merger-run.ts +6 -5
- package/src/public-cli/notary-run.ts +3 -3
- package/src/public-cli/option-definitions.ts +5 -1
- package/src/public-cli/post-admission.ts +17 -6
- package/src/public-cli/reviewer-run.ts +5 -5
- package/src/public-cli/run-lifecycle.ts +10 -1
- package/src/public-cli/turn-request.ts +4 -1
- package/src/public-role-summons.ts +7 -3
- package/src/role-envelope.ts +8 -3
package/README.md
CHANGED
|
@@ -40,7 +40,11 @@ ak-role config set inspector <provider/model[:thinking]>
|
|
|
40
40
|
ak-role config set notary <provider/model[:thinking]>
|
|
41
41
|
ak-role config unset gatekeeper
|
|
42
42
|
# persistent labor engine (callable roles); one-shot override remains --engine
|
|
43
|
+
# optional model id for multi-model engines (cursor/opencode/agy); omit for name-is-model engines
|
|
43
44
|
ak-role config set-engine judge opus
|
|
45
|
+
ak-role config set-engine coder cursor cursor-grok-4.6-high
|
|
46
|
+
ak-role config set-engine-model coder cursor-grok-4.6-high
|
|
47
|
+
ak-role config unset-engine-model coder
|
|
44
48
|
ak-role config unset-engine judge
|
|
45
49
|
# persistent main-session host (callable roles); one-shot override remains --host
|
|
46
50
|
ak-role config set-host judge grok-build
|
package/README.zh-CN.md
CHANGED
|
@@ -40,7 +40,11 @@ ak-role config set inspector <provider/model[:thinking]>
|
|
|
40
40
|
ak-role config set notary <provider/model[:thinking]>
|
|
41
41
|
ak-role config unset gatekeeper
|
|
42
42
|
# 持久劳务引擎(可调用角色);一次性覆盖仍用 --engine
|
|
43
|
+
# 多模型引擎(cursor/opencode/agy)可附型号;名字即模型的引擎可省略
|
|
43
44
|
ak-role config set-engine judge opus
|
|
45
|
+
ak-role config set-engine coder cursor cursor-grok-4.6-high
|
|
46
|
+
ak-role config set-engine-model coder cursor-grok-4.6-high
|
|
47
|
+
ak-role config unset-engine-model coder
|
|
44
48
|
ak-role config unset-engine judge
|
|
45
49
|
# 持久主会话宿主(可调用角色);一次性覆盖仍用 --host
|
|
46
50
|
ak-role config set-host judge grok-build
|