68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import { END } from "@uncaged/nerve-core";
|
|
import type { Moderator } from "@uncaged/nerve-core";
|
|
import type { PlannerMeta } from "./roles/planner/index.js";
|
|
import type { CoderMeta } from "./roles/coder/index.js";
|
|
import type { ReviewerMeta } from "./roles/reviewer/index.js";
|
|
import type { TesterMeta } from "./roles/tester/index.js";
|
|
import type { CommitterMeta } from "./roles/committer/index.js";
|
|
|
|
export type WorkflowMeta = {
|
|
planner: PlannerMeta;
|
|
coder: CoderMeta;
|
|
reviewer: ReviewerMeta;
|
|
tester: TesterMeta;
|
|
committer: CommitterMeta;
|
|
};
|
|
|
|
const MAX_CODER_ROUNDS = 20;
|
|
const MAX_TOTAL_REJECTIONS = 10;
|
|
|
|
function coderRounds(steps: { role: string }[]): number {
|
|
return steps.filter((s) => s.role === "coder").length;
|
|
}
|
|
|
|
function totalRejections(steps: { role: string; meta: unknown }[]): number {
|
|
return steps.filter((s) => {
|
|
if (s.role === "reviewer") return !(s.meta as Record<string, boolean>).approved;
|
|
if (s.role === "tester") return !(s.meta as Record<string, boolean>).passed;
|
|
if (s.role === "committer") return !(s.meta as Record<string, boolean>).success;
|
|
return false;
|
|
}).length;
|
|
}
|
|
|
|
function canRetryCoder(steps: { role: string; meta: unknown }[]): boolean {
|
|
return coderRounds(steps) < MAX_CODER_ROUNDS && totalRejections(steps) < MAX_TOTAL_REJECTIONS;
|
|
}
|
|
|
|
export const moderator: Moderator<WorkflowMeta> = (context) => {
|
|
if (context.steps.length === 0) return "planner";
|
|
|
|
const last = context.steps[context.steps.length - 1];
|
|
|
|
if (last.role === "planner") {
|
|
return last.meta.ready ? "coder" : END;
|
|
}
|
|
|
|
if (last.role === "coder") {
|
|
if (last.meta.done) return "reviewer";
|
|
return canRetryCoder(context.steps) ? "coder" : END;
|
|
}
|
|
|
|
if (last.role === "reviewer") {
|
|
if (last.meta.approved) return "tester";
|
|
return canRetryCoder(context.steps) ? "coder" : END;
|
|
}
|
|
|
|
if (last.role === "tester") {
|
|
if (last.meta.passed) return "committer";
|
|
return canRetryCoder(context.steps) ? "coder" : END;
|
|
}
|
|
|
|
if (last.role === "committer") {
|
|
if (last.meta.success) return END;
|
|
return canRetryCoder(context.steps) ? "coder" : END;
|
|
}
|
|
|
|
return END;
|
|
};
|