form-creator

form-creator is a skill for Claude Code from Indie-Kit/nextjs-saas-starter. It costs 14 tokens per session (327 once invoked), scanned A, original, MIT.

A guide for building web forms with React Hook Form and Zod. React Hook Form manages form state, while Zod checks that submitted data has the expected shape and values.

In plain words
What is it for?
Creating React forms, defining validation rules, handling submissions, and checking incoming API request bodies.
Why use it?
It sets one validation approach for both browser forms and API requests, helping prevent invalid data from being accepted.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Good fit Creating React forms, defining validation rules, handling submissions, and checking incoming API request bodies.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/indie-kit/nextjs-saas-starter/form-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Indie-Kit/nextjs-saas-starter --skill form-creator
Clone the repo
git clone --depth 1 https://github.com/Indie-Kit/nextjs-saas-starter

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for form-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/indie-kit/nextjs-saas-starter/form-creator.svg)](https://agentmods.dev/skills/indie-kit/nextjs-saas-starter/form-creator)
Your own site
<a href="https://agentmods.dev/skills/indie-kit/nextjs-saas-starter/form-creator"><img src="https://agentmods.dev/badge/skills/indie-kit/nextjs-saas-starter/form-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 327 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00014 $0.00327
Opus 5 $0.00007 $0.00163
Sonnet 5 $0.00003 $0.00065
Haiku 4.5 $0.00001 $0.00033

Measured 8d ago against content hash d8fdac7742d7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

form-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/form-creator/SKILL.md · 57 lines

What it actually says

Form Creator

Instructions

1. Client-Side Forms

  • Use react-hook-form for state management.
  • Use zod for schema validation.
  • Integrate using @hookform/resolvers/zod.
  • Use the Form components from @/components/ui/form.
  • Define schemas using z.object({...}).

2. API Validation

  • MANDATORY: Use zod schemas to validate incoming request bodies in API routes.
  • Share schemas between client and server if possible (e.g., in a separate file or exported from the component file if simple).

Example

Client

const form = useForm<z.infer<typeof schema>>({
  resolver: zodResolver(schema),
  defaultValues: { ... },
});

<Form {...form}>
  <form onSubmit={form.handleSubmit(onSubmit)}>
    {/* ... fields ... */}
  </form>
</Form>

Server (API Route)

import { z } from "zod";

const schema = z.object({
  name: z.string().min(2),
});

export async function POST(req: Request) {
  const body = await req.json();
  const result = schema.safeParse(body);

  if (!result.success) {
    return NextResponse.json({ error: result.error }, { status: 400 });
  }

  // ... process valid data ...
}
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 57 lines · 14 tokens per session scan A d8fdac7742d7

Subscribe to this mod's changes

form-creator is a skill published in the GitHub repository Indie-Kit/nextjs-saas-starter (26 stars, last pushed 1mo ago), licensed MIT. It adds 14 tokens to every session and 327 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

shadcn

Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json…

kriasoft/react-starter-kit · 94 tokens

lenis-react

Integrate Lenis smooth scroll into React and Next.js projects. Use when the user wants smooth scrolling, scroll-linked animations, parallax effects, GSAP ScrollTrigger sync, Framer Motion sync, programmatic scroll-to navigation, or scroll event listening in a React app. Covers ReactLenis provider setup, useLenis hook…

12-Studio/Tackl · 84 tokens

styled-components

Styles React components with styled-components and the Tackl design system. Use when the user mentions styled-components, styles.ts, theme tokens, Tackl primitives, responsive breakpoints (bp), or component styling in this project.

12-Studio/Tackl · 47 tokens

react-hook-creator

Create react hook creator operations. Auto-activating skill for Frontend Development. Triggers on react hook creator, react hook creator Part of the Frontend Development skill category. Use when working with react hook creator functionality. Trigger with phrases like "react hook creator", "react creator", "react".

12-Studio/Tackl · 65 tokens

supastarter-nextjs-skill

Guides development with supastarter for Next.js only (not Vue/Nuxt): tech stack, setup, configuration, database (Prisma), API (Hono/oRPC), auth (Better Auth), organizations, payments (Stripe), AI, customization, storage, mailing, i18n, SEO, deployment, background tasks, analytics, monitoring, E2E. Use when building or…

OscarDRT/supastarter-nextjs-skill · 124 tokens

react-three-fiber

Build declarative 3D scenes with React Three Fiber (R3F) - a React renderer for Three.js. Use when building interactive 3D experiences in React applications with component-based architecture, state management, and reusable abstractions. Ideal for product configurators, portfolios, games, data visualization, and…

12-Studio/Tackl · 71 tokens