Create a type-safe form with TanStack Form and Zod validation
/plugin marketplace add marcioaltoe/claude-craftkit/plugin install ui@claude-craftkit# Create Form Generate a type-safe form using TanStack Form (@tanstack/react-form) with Zod validation and shadcn/ui components. ## Instructions 1. Install TanStack Form if not already installed: 2. Optionally, install shadcn/ui components for UI: 3. Ask for form fields and validation rules 4. Create Zod schema for form validation 5. Generate form component with: - TanStack Form `useForm` hook - Zod validators (`onChange`, `onSubmit`) - `form.Field` components for each field - Proper TypeScript types - Error handling and display - Submit handler with loading sta...