4c1413d925
* fix(action): flip wasUpdated on substantive MCP write tools (#563) Review/Respond/etc. agents that submit a `create_pull_request_review`, `create_issue_comment`, or `update_pull_request_body` and exit without calling `report_progress` were being marked as workflow failures by the strict completion check in handleAgentResult. Extend the set of tools that flip toolState.wasUpdated so a substantive user-visible artifact satisfies the check. The isReviewMode bypass is retained for IncrementalReview's non-substantive path. Flag is set BEFORE patchWorkflowRunFields / deleteProgressComment in each tool so a best-effort cleanup failure does not undo the signal. * fix(action): use finalSummaryWritten for stranded progress cleanup The stranded-progress-comment cleanup at the end of main() previously fired only when toolState.wasUpdated was false (or the tracker was the last writer). With wasUpdated now set by additional MCP write tools (create_issue_comment, update_pull_request_body), an agent that produced a substantive artifact via one of those tools and skipped report_progress would leave the placeholder "Leaping into action" comment intact — the post-script then converted it into an error message on a successful run. Key the cleanup off finalSummaryWritten instead. That flag is only set when report_progress actually wrote the progress comment, so it cleanly distinguishes "comment is finalized" from "agent did other work but never touched the progress comment". * refactor(mcp): extract markSubstantiveArtifact() helper replaces 4 inline `ctx.toolState.wasUpdated = true` flips in CreateCommentTool, UpdatePullRequestBodyTool, and CreatePullRequestReviewTool with a single helper in mcp/server.ts. JSDoc on the helper documents the contract (call BEFORE downstream patch/cleanup; gates the strict completion check and stranded-comment cleanup) so future MCP write tool authors only need to grep for one symbol. no behavioral change. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(mcp): only flip finalSummaryWritten after non-skipped write Previously the flag was set unconditionally on any non-plan call, including paths where reportProgress skipped (silent events, deleted comment, no issue/PR target). The cleanup check in main.ts is safeguarded by toolState.progressComment so the bug doesn't manifest today, but aligning the flag with actual writes matches the wasUpdated pattern and the design intent in the cleanup plan. * refactor(mcp): inline markSubstantiveArtifact helper --------- Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com> Co-authored-by: David Blass <david@arktype.io> Co-authored-by: Cursor <cursoragent@cursor.com>
61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import type { AgentResult } from "../agents/shared.ts";
|
|
import type { MainResult } from "../main.ts";
|
|
import type { ToolState } from "../mcp/server.ts";
|
|
import { log } from "./cli.ts";
|
|
import { reportErrorToComment } from "./errorReport.ts";
|
|
|
|
export interface HandleAgentResultParams {
|
|
result: AgentResult;
|
|
toolState: ToolState;
|
|
silent: boolean | undefined;
|
|
}
|
|
|
|
export async function handleAgentResult(ctx: HandleAgentResultParams): Promise<MainResult> {
|
|
if (!ctx.result.success) {
|
|
return {
|
|
success: false,
|
|
error: ctx.result.error || "Agent execution failed",
|
|
output: ctx.result.output!,
|
|
};
|
|
}
|
|
|
|
// IncrementalReview's non-substantive path exits cleanly without
|
|
// submitting any review, so no MCP write tool flips wasUpdated and the
|
|
// strict completion check below would otherwise fail the run. The
|
|
// isReviewMode skip is load-bearing for that path: the agent's exit
|
|
// code is the completion signal, not a progress-comment write.
|
|
// (Review mode that submits a real review now flips wasUpdated via
|
|
// create_pull_request_review, so the skip is redundant for the
|
|
// substantive-review path but kept for symmetry with IncrementalReview.)
|
|
// See plans/review_progress_comment_cleanup_b0120f6c.plan.md.
|
|
const mode = ctx.toolState.selectedMode;
|
|
const isReviewMode = mode === "Review" || mode === "IncrementalReview";
|
|
if (
|
|
!isReviewMode &&
|
|
!ctx.toolState.wasUpdated &&
|
|
ctx.toolState.hadProgressComment &&
|
|
!ctx.silent
|
|
) {
|
|
const error = ctx.result.error || "agent completed without reporting progress";
|
|
try {
|
|
await reportErrorToComment({
|
|
toolState: ctx.toolState,
|
|
error,
|
|
title: "Error",
|
|
});
|
|
} catch {}
|
|
return {
|
|
success: false,
|
|
error,
|
|
output: ctx.result.output || "",
|
|
};
|
|
}
|
|
|
|
log.success("Task complete.");
|
|
|
|
return {
|
|
success: true,
|
|
output: ctx.result.output || "",
|
|
};
|
|
}
|