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