@akagilnc/pi-workflow-roles 0.1.3771 → 0.1.3789
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 +1 -1
- package/README.zh-CN.md +1 -1
- package/dist/acp-host/production-host.js +793 -393
- package/dist/atomic-write.js +23 -0
- package/dist/collector-handbook.js +142 -0
- package/dist/collector-ledger.js +39 -47
- package/dist/collector-role.js +103 -14
- package/dist/collector-tool-schemas.js +25 -1
- package/dist/headless-host/description.js +77 -0
- package/dist/headless-host/mcp-relay.mjs +119 -0
- package/dist/headless-host/production-host.js +26841 -0
- package/dist/host-descriptions.js +44 -3
- package/dist/public-cli/load-production-external-host.js +19 -0
- package/dist/public-cli/load-production-headless-host.js +36 -0
- package/dist/public-cli/main.js +244 -234
- package/dist/public-cli/option-definitions.js +2 -2
- package/dist/public-role-summons.js +40 -5
- package/dist/role-runtime.js +3 -0
- package/extensions/role-runtime.ts +2 -0
- package/package.json +1 -1
- package/resources/collector-bot-handbook.md +33 -0
- package/scripts/build-package.mjs +28 -0
- package/src/acp-host/production-host.ts +4 -0
- package/src/acp-host/role-envelope.ts +141 -84
- package/src/acp-host/role-turn-host.ts +12 -0
- package/src/collector-handbook.ts +194 -0
- package/src/collector-ledger.ts +42 -62
- package/src/collector-role.ts +117 -11
- package/src/collector-tool-schemas.ts +25 -1
- package/src/headless-host/description.ts +123 -0
- package/src/headless-host/production-host.ts +75 -0
- package/src/headless-host/role-turn-host.ts +424 -0
- package/src/host-descriptions.ts +53 -6
- package/src/public-cli/cli.ts +2 -2
- package/src/public-cli/load-production-external-host.ts +29 -0
- package/src/public-cli/load-production-headless-host.ts +48 -0
- package/src/public-cli/main.ts +5 -0
- package/src/public-cli/option-definitions.ts +2 -2
- package/src/public-role-summons.ts +62 -9
- package/src/role-runtime.ts +5 -0
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ ak-role coder apply --attach ./plan.md "Implement the approved slice."
|
|
|
92
92
|
# reviewer — fixed-target two-axis review; completed ≠ approved, read the findings
|
|
93
93
|
ak-role reviewer --base main "Review the branch."
|
|
94
94
|
|
|
95
|
-
# collector — GitHub PR review evidence (
|
|
95
|
+
# collector — GitHub PR review evidence (bind target, read handbook/field activity, trigger as needed, return materials)
|
|
96
96
|
ak-role collector --pr 42 --repo owner/repository "Collect findings for the assigned issue."
|
|
97
97
|
ak-role collector --repo owner/repository "Collect findings for #42"
|
|
98
98
|
|
package/README.zh-CN.md
CHANGED
|
@@ -86,7 +86,7 @@ ak-role coder apply --attach ./plan.md "Implement the approved slice."
|
|
|
86
86
|
# 御史台——固定目标双轴察举;completed ≠ 准行,findings 在 Terminal 里
|
|
87
87
|
ak-role reviewer --base main "Review the branch."
|
|
88
88
|
|
|
89
|
-
# 通进司——GitHub PR
|
|
89
|
+
# 通进司——GitHub PR 收证(认票、读手册/现场活动、按需触发、交回材料)
|
|
90
90
|
ak-role collector --pr 42 --repo owner/repository "为所指 issue 收证。"
|
|
91
91
|
ak-role collector --repo owner/repository "为 #42 收证。"
|
|
92
92
|
|