@akagilnc/pi-workflow-roles 0.1.1772 → 0.1.1774
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 +1 -1
- package/src/reviewer-role.ts +2 -1
package/package.json
CHANGED
package/src/reviewer-role.ts
CHANGED
|
@@ -119,7 +119,8 @@ export function createReviewerRoleRuntime(pi: ExtensionAPI, dependencies: Review
|
|
|
119
119
|
|
|
120
120
|
if (!registered) {
|
|
121
121
|
registered = true;
|
|
122
|
-
pi.registerTool({ name: REVIEWER_OUTPUT_TOOL_NAME, label: "Reviewer Output", description: "Submit the thin Reviewer receipt after semantic compliance audit.", promptSnippet: "Submit the final Reviewer receipt", promptGuidelines: [`Use ${REVIEWER_OUTPUT_TOOL_NAME} as the sole final action
|
|
122
|
+
pi.registerTool({ name: REVIEWER_OUTPUT_TOOL_NAME, label: "Reviewer Output", description: "Submit the thin Reviewer receipt after semantic compliance audit.", promptSnippet: "Submit the final Reviewer receipt", promptGuidelines: [`Use ${REVIEWER_OUTPUT_TOOL_NAME} as the sole final action.`,
|
|
123
|
+
"This runtime provides no sub-agent tool; produce the Standards and Spec review legs sequentially in this session yourself — that is the canonical execution of the review Skill here."], parameters: reviewerOutputSchema,
|
|
123
124
|
async execute(id, parameters, signal, _update, toolCtx): Promise<AgentToolResult<unknown>> {
|
|
124
125
|
if (!soul || !binding) throw new Error("Reviewer inputs were not loaded");
|
|
125
126
|
requireSoleReviewerOutputCall(id, toolCtx);
|