import { z } from "zod"; export const plannerMetaSchema = z.object({ ready: z.boolean().describe("true if requirements are clear and a workflow can be implemented"), }); export type PlannerMeta = z.infer;