Validate API schemas with Zod
/plugin marketplace add IvanTorresEdge/molcajete.ai/plugin install ivantorresedge-node-tech-stacks-js-node@IvanTorresEdge/molcajete.ai# Validate API Schemas Validate all Zod schemas and ensure type consistency. Use the Task tool to launch the **api-builder** agent with instructions: 1. Find all Zod schema files: - `src/schemas/*.ts` - `src/routes/**/schema.ts` - Inline schemas in route files 2. Validate schema definitions: - All schemas export properly - Type inference works (`z.infer<typeof Schema>`) - No circular dependencies 3. Run type-check: 4. Check for common issues: - Unused schemas - Missing required fields - Inconsistent naming 5. Generate schema documentation (optional): ...