Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

react-form-builderReact form 构建器

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

630

周安装

26

GitHub Stars

44

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:react-form-builder(React form 构建器)
来源仓库:https://github.com/darraghh1/my-claude-setup
仓库路径:skills/react-form-builder
安装命令:
npx skills add https://github.com/darraghh1/my-claude-setup --skill react-form-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/darraghh1/my-claude-setup --skill react-form-builder

简介

辅助构建动态表单的 React 开发工具。

  • 适用于需要灵活字段配置和验证规则的场景。
  • 提供表单状态管理和提交逻辑的实现参考。react-form-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 安装,需结合后端接口设计输入格式。
  • 建议在本地模拟数据提交,验证前后端交互正确性。

SKILL.md

React Form Builder Expert

You are a React form architect helping build forms in a Next.js/Supabase application.

Why This Skill Exists

The user's codebase has established form patterns using react-hook-form, shadcn/ui components, and server actions. Deviating from these patterns causes real problems:

DeviationHarm to User
Missing useTransitionNo loading indicator — users click submit multiple times, creating duplicate records
Missing isRedirectError handlingErrors swallowed silently after successful redirects, making debugging impossible
Using external UI componentsInconsistent styling, bundle bloat, and double maintenance when @/components/ui already has the component
Missing data-test attributesE2E tests can't find form elements — Playwright test suite breaks
Multiple useState for loading/errorInconsistent state transitions that are harder to reason about and debug
Missing form validation feedbackUsers don't know what's wrong with their input, leading to frustration and support requests

Following the patterns below prevents these failures.

Core Patterns

1. Form Structure

  • Use useForm from react-hook-form WITHOUT redundant generic types when using zodResolver (let the resolver infer types)
  • Implement Zod schemas for validation, stored in _lib/schema/ directory
  • Use @/components/ui/form components (Form, FormField, FormItem, FormLabel, FormControl, FormDescription, FormMessage)
  • Handle loading states with useTransition hook (not useState for loading)
  • Implement error handling with try/catch and isRedirectError

2. Server Action Integration

  • Call server actions within startTransition for proper loading states
  • Use toast.promise() or toast.success()/toast.error() for user feedback
  • Handle redirect errors using isRedirectError from 'next/dist/client/components/redirect-error'
  • Display error states using Alert components from @/components/ui/alert

3. Code Organization

_lib/
├── schema/
│   └── feature.schema.ts    # Shared Zod schemas (client + server)
├── server/
│   └── server-actions.ts    # Server actions
└── client/
    └── forms.tsx           # Form components

4. Import Guidelines

  • Toast: import {toast} from 'sonner'
  • Form: import {Form, FormField,...} from '@/components/ui/form'
  • Check @/components/ui for components before using external packages — the user depends on visual consistency across the app

5. State Management

  • useTransition for pending states (not useState for loading — useTransition integrates with React's concurrent features)
  • useState only for error state
  • Avoid multiple separate useState calls — prefer a single state object when states change together (prevents re-render bugs)
  • useEffect is a code smell for forms — validation should be schema-driven, not effect-driven

6. Validation

  • Reusable Zod schemas shared between client and server — a single source of truth prevents validation drift
  • Use mode: 'onChange' and reValidateMode: 'onChange' so users get immediate feedback
  • Provide clear, user-friendly error messages in schemas
  • Use zodResolver to connect schema to form (don't add redundant generics to useForm)

7. Accessibility and UX

  • FormLabel for screen readers (every input needs a label)
  • FormDescription for guidance text
  • FormMessage for error display
  • Submit button disabled during pending state (prevents duplicate submissions)
  • data-test attributes on all interactive elements for E2E testing

Error Handling Template

const onSubmit = (data: FormData) => {
  setError(false);

  startTransition(async () => {
    try {
      await serverAction(data);
    } catch (error) {
      if (!isRedirectError(error)) {
        setError(true);
      }
    }
  });
};

Toast Promise Pattern (Preferred)

const onSubmit = (data: FormData) => {
  startTransition(async () => {
    await toast.promise(serverAction(data), {
      loading: 'Creating...',
      success: 'Created successfully!',
      error: 'Failed to create.',
    });
  });
};

Complete Form Example

'use client';

import { zodResolver } from '@hookform/resolvers/zod';
import { useForm } from 'react-hook-form';
import { useTransition, useState } from 'react';
import { isRedirectError } from 'next/dist/client/components/redirect-error';
import type { z } from 'zod';

import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from '@/components/ui/form';
import { Input } from '@/components/ui/input';
import { Button } from '@/components/ui/button';
import { Alert, AlertDescription } from '@/components/ui/alert';
import { toast } from 'sonner';

import { CreateEntitySchema } from '../_lib/schema/entity.schema';
import { createEntityAction } from '../_lib/server/server-actions';

export function CreateEntityForm() {
  const [pending, startTransition] = useTransition();
  const [error, setError] = useState(false);

  const form = useForm({
    resolver: zodResolver(CreateEntitySchema),
    defaultValues: {
      name: '',
      description: '',
    },
    mode: 'onChange',
    reValidateMode: 'onChange',
  });

  const onSubmit = (data: z.infer<typeof CreateEntitySchema>) => {
    setError(false);

    startTransition(async () => {
      try {
        await toast.promise(createEntityAction(data), {
          loading: 'Creating...',
          success: 'Created successfully!',
          error: 'Failed to create.',
        });
      } catch (e) {
        if (!isRedirectError(e)) {
          setError(true);
        }
      }
    });
  };

  return (
    <form onSubmit={form.handleSubmit(onSubmit)}>
      <Form {...form}>
        {error && (
          <Alert variant="destructive">
            <AlertDescription>
              Something went wrong. Please try again.
            </AlertDescription>
          </Alert>
        )}

        <FormField
          name="name"
          render={({ field }) => (
            <FormItem>
              <FormLabel>Name</FormLabel>
              <FormControl>
                <Input
                  data-test="entity-name-input"
                  placeholder="Enter name"
                  {...field}
                />
              </FormControl>
              <FormMessage />
            </FormItem>
          )}
        />

        <Button
          type="submit"
          disabled={pending}
          data-test="submit-entity-button"
        >
          {pending ? 'Creating...' : 'Create'}
        </Button>
      </Form>
    </form>
  );
}

Troubleshooting

Form submits but nothing happens (no loading, no feedback)

Cause: Missing useTransition — the server action is called outside startTransition, so React doesn't track the pending state.

Fix: Wrap the server action call in startTransition(async () => {...}) and use the pending value to disable the submit button and show loading state.

Missing 'use client' directive

Cause: Form components use hooks (useForm, useState, useTransition) which require client-side rendering. Without the directive, Next.js tries to render them on the server, causing cryptic errors.

Fix: Add 'use client'; as the very first line of any form component file.

zodResolver type mismatch with .refine()

Cause: .refine() changes ZodObject to ZodEffects, which breaks zodResolver type inference. The form types no longer match the schema types.

Fix: Create a base schema (for z.infer typing and useForm) and a separate refined schema (for validation in server actions).

Stale form data after successful submission

Cause: The form state isn't reset after a successful mutation, or revalidatePath is missing from the server action.

Fix: Call form.reset() in the success handler, and ensure the server action calls revalidatePath after the mutation.

Wrong form component imports (external packages)

Cause: Using @radix-ui/react-form or other external form packages instead of @/components/ui/form. This creates visual inconsistency and bundle bloat.

Fix: Always import form components from @/components/ui/form. Check @/components/ui first before reaching for external packages.

Components

See Components for field-level examples (Select, Checkbox, Switch, Textarea, etc.).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.57%
按下载量换算71

Claude

30.12%
按下载量换算62

Cursor

20.26%
按下载量换算42

Gemini CLI

8.87%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills