multiAI Summary Pending
form-creator
Create forms, validation schemas, and CRUD API endpoints. Use when building new data entry features or managing existing forms.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/form-creator/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/aayushbaniya2006/form-creator/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/form-creator/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How form-creator Compares
| Feature / Agent | form-creator | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Create forms, validation schemas, and CRUD API endpoints. Use when building new data entry features or managing existing forms.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Form Creator
## Instructions
### 1. Validation Schema
- **File**: `src/lib/validations/{feature}.schema.ts`
- **Action**: Define Zod schema and export inferred type.
```typescript
export const featureSchema = z.object({ ... });
export type FeatureFormValues = z.infer<typeof featureSchema>;
```
### 2. Form Component
- **File**: `src/components/forms/{feature}-form.tsx`
- **Directives**: `"use client";` required.
- **Setup**: Use `useForm` with `zodResolver`.
- **Props**: Accept `initialData` and `onSubmit`.
- **UI**: Use Shadcn components (`Form`, `FormField`, `Input`).
### 3. API Routes
- **File**: `src/app/api/{feature}/route.ts`
- **Security**: Wrap with `withAuthRequired` or `withSuperAdminAuthRequired`.
- **Logic**:
- `GET`: Handle pagination/search.
- `POST`: Validate body against schema -> Insert to DB.
- `PATCH`: Validate partial body -> Update DB.
## Reference
For code patterns, best practices, and examples, see [reference.md](reference.md).