@akagilnc/pi-workflow-roles 0.1.4204 → 0.1.4211

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.
@@ -21908,9 +21908,9 @@ init_reviewer_pinned_git();
21908
21908
  init_reviewer_output();
21909
21909
  import { Type as Type23 } from "typebox";
21910
21910
  var reviewerAmendmentsSchema = Type23.Object({
21911
- standards: Type23.Optional(Type23.String({ description: "\u76F8\u5BF9 Standards \u5B50\u62A5\u544A\u7684\u589E\u91CF\uFF1A\u589E finding\u3001\u64A4\u56DE\u6216\u4E8B\u5B9E\u66F4\u6B63" })),
21912
- spec: Type23.Optional(Type23.String({ description: "\u76F8\u5BF9 Spec \u5B50\u62A5\u544A\u7684\u589E\u91CF\uFF1A\u589E finding\u3001\u64A4\u56DE\u6216\u4E8B\u5B9E\u66F4\u6B63" }))
21913
- }, { additionalProperties: true, description: "\u76F8\u5BF9\u5B50\u62A5\u544A\u7684\u53EF\u9009\u8F74\u589E\u91CF\uFF1B\u975E\u66FF\u4EE3\u62A5\u544A\u3002\u65E0\u589E\u91CF\u7684\u8F74\u53EF\u7701\u7565\u3002" });
21911
+ standards: Type23.Optional(Type23.String({ description: "\u6807\u51C6\u8F74\u5F39\u7AE0\u6B63\u6587" })),
21912
+ spec: Type23.Optional(Type23.String({ description: "\u89C4\u683C\u8F74\u5F39\u7AE0\u6B63\u6587" }))
21913
+ }, { additionalProperties: true, description: "\u9010\u8F74\u5F39\u7AE0\u6B63\u6587\uFF1B\u65E0\u5F39\u7AE0\u7684\u8F74\u53EF\u7701\u7565\u3002" });
21914
21914
  var REVIEWER_STATUS_DESCRIPTION = "completed | refused \u2014 \u5F62\u72B6\u6307\u5F15\uFF0C\u975E schema \u95F8";
21915
21915
  var reviewerOutputVariants = Type23.Union([
21916
21916
  Type23.Object({
@@ -22032,9 +22032,9 @@ init_reviewer_pinned_git();
22032
22032
  init_reviewer_output();
22033
22033
  import { Type as Type23 } from "typebox";
22034
22034
  var reviewerAmendmentsSchema = Type23.Object({
22035
- standards: Type23.Optional(Type23.String({ description: "\u76F8\u5BF9 Standards \u5B50\u62A5\u544A\u7684\u589E\u91CF\uFF1A\u589E finding\u3001\u64A4\u56DE\u6216\u4E8B\u5B9E\u66F4\u6B63" })),
22036
- spec: Type23.Optional(Type23.String({ description: "\u76F8\u5BF9 Spec \u5B50\u62A5\u544A\u7684\u589E\u91CF\uFF1A\u589E finding\u3001\u64A4\u56DE\u6216\u4E8B\u5B9E\u66F4\u6B63" }))
22037
- }, { additionalProperties: true, description: "\u76F8\u5BF9\u5B50\u62A5\u544A\u7684\u53EF\u9009\u8F74\u589E\u91CF\uFF1B\u975E\u66FF\u4EE3\u62A5\u544A\u3002\u65E0\u589E\u91CF\u7684\u8F74\u53EF\u7701\u7565\u3002" });
22035
+ standards: Type23.Optional(Type23.String({ description: "\u6807\u51C6\u8F74\u5F39\u7AE0\u6B63\u6587" })),
22036
+ spec: Type23.Optional(Type23.String({ description: "\u89C4\u683C\u8F74\u5F39\u7AE0\u6B63\u6587" }))
22037
+ }, { additionalProperties: true, description: "\u9010\u8F74\u5F39\u7AE0\u6B63\u6587\uFF1B\u65E0\u5F39\u7AE0\u7684\u8F74\u53EF\u7701\u7565\u3002" });
22038
22038
  var REVIEWER_STATUS_DESCRIPTION = "completed | refused \u2014 \u5F62\u72B6\u6307\u5F15\uFF0C\u975E schema \u95F8";
22039
22039
  var reviewerOutputVariants = Type23.Union([
22040
22040
  Type23.Object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akagilnc/pi-workflow-roles",
3
- "version": "0.1.4204",
3
+ "version": "0.1.4211",
4
4
  "description": "Soul-bound workflow roles for Pi",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -3,7 +3,7 @@
3
3
  export const REVIEWER_OUTPUT_TOOL_NAME = "ak_reviewer_output";
4
4
  export const REVIEWER_ACCEPTED_TEXT = "御史台回执已接受";
5
5
 
6
- /** Seat-owned per-axis delta relative to child reports — not a replacement report. */
6
+ /** Seat-owned per-axis finding body text (standards / spec). */
7
7
  export type ReviewerAmendments = Readonly<Partial<Record<"standards" | "spec", string>>>;
8
8
  export type ReviewerIntent =
9
9
  | Readonly<{ status: "completed"; amendments?: ReviewerAmendments }>
@@ -22,9 +22,9 @@ export type ReviewerAdmittedInputs = Readonly<{
22
22
  }>;
23
23
 
24
24
  const reviewerAmendmentsSchema = Type.Object({
25
- standards: Type.Optional(Type.String({ description: "相对 Standards 子报告的增量:增 finding、撤回或事实更正" })),
26
- spec: Type.Optional(Type.String({ description: "相对 Spec 子报告的增量:增 finding、撤回或事实更正" })),
27
- }, { additionalProperties: true, description: "相对子报告的可选轴增量;非替代报告。无增量的轴可省略。" });
25
+ standards: Type.Optional(Type.String({ description: "标准轴弹章正文" })),
26
+ spec: Type.Optional(Type.String({ description: "规格轴弹章正文" })),
27
+ }, { additionalProperties: true, description: "逐轴弹章正文;无弹章的轴可省略。" });
28
28
  // #836 r16 class 1: diagnostic is LLM/human-read narrative content — no code
29
29
  // branches on its length (src/reviewer-role.ts consumer: reviewer content is
30
30
  // returned as submitted, ADR 0057).