import { z } from "zod"; export const reviewerMetaSchema = z.object({ approved: z.boolean().describe("true if the diff is clean and ready for tester validation"), }); export type ReviewerMeta = z.infer;