一键导入
svelte-form-builder
// Workflow for generating form JSON and using the Svelte Form Builder (svelte-form-builder.vercel.app) to scaffold SvelteKit remote function forms with Valibot validation. Use when creating forms via the form builder.
// Workflow for generating form JSON and using the Svelte Form Builder (svelte-form-builder.vercel.app) to scaffold SvelteKit remote function forms with Valibot validation. Use when creating forms via the form builder.
| name | svelte-form-builder |
| description | Workflow for generating form JSON and using the Svelte Form Builder (svelte-form-builder.vercel.app) to scaffold SvelteKit remote function forms with Valibot validation. Use when creating forms via the form builder. |
This skill applies only to forms implemented with SvelteKit remote functions (form(schema, handler)).
Before using this workflow, confirm the form is a remote-form candidate via your project's form decision tree.
Generate a form JSON structure for the Svelte form builder using this exact schema:
"id" (string), "fields" (array)"id": unique string (e.g., "field-1")"name": display name (e.g., "Input", "Email")"type": field type — text, email, password, number, textarea, boolean, select, radio, date-picker, slider, input-otp, phone, combobox, tags-input, file, location-input"category": same as type for most fields, or "checkbox"/"switch" for boolean"label": field label shown to user"description": helper text (optional)"placeholder": placeholder text"required": boolean"position": "full" (or "left"/"right" for side-by-side, max 2 per row)"options": array for select/radio/combobox (each with "id", "value", "label")"multiple": boolean (optional) for select/combobox (false=single, true=multiple)[
{
"id": "row-1",
"fields": [
{
"id": "field-1",
"name": "Input",
"type": "text",
"category": "text",
"label": "Full Name",
"description": "Enter your full name",
"placeholder": "John Doe",
"required": true,
"position": "full"
}
]
}
]
A brief description of what this skill does
Iterativer Plan-Review-Loop mit OpenAI Codex als zweiter Meinung. Use when the user runs /pair-review, asks for cross-model verification of a plan file in ~/.claude/plans/, or — most importantly — before calling ExitPlanMode in plan mode to validate the proposed plan with adversarial review.
Fetch PR review comments, verify each against real code/docs, fix valid issues, commit and push
Skill for integrating Autumn - the billing and entitlements layer over Stripe.
This skill encodes Emil Kowalski's philosophy on UI polish, component design, animation decisions, and the invisible details that make software feel great.
Canonical Convex backend coding patterns — validators, function registration, queries, mutations, actions, schemas, pagination, cron jobs, file storage, and Better Auth integration. Use when writing or reviewing any Convex backend code.