import { z } from "zod"; export const coderMetaSchema = z.object({ done: z.boolean().describe("true if the workflow files were created and build passes"), }); export type CoderMeta = z.infer;