@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: "\
|
|
21912
|
-
spec: Type23.Optional(Type23.String({ description: "\
|
|
21913
|
-
}, { additionalProperties: true, description: "\
|
|
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: "\
|
|
22036
|
-
spec: Type23.Optional(Type23.String({ description: "\
|
|
22037
|
-
}, { additionalProperties: true, description: "\
|
|
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
|
@@ -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
|
|
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 }>
|
package/src/reviewer-role.ts
CHANGED
|
@@ -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: "
|
|
26
|
-
spec: Type.Optional(Type.String({ description: "
|
|
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).
|