Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计未展示

form_builder表单生成器

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

42

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vuralserhat86/antigravity-agentic-skills --skill form_builder

简介

用于辅助前端表单组件的开发与维护。form_builder 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

  • 适合生成或审查 React、Vue 等框架的表单代码。
  • 使用时需结合项目设计系统和路由结构,避免孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查。
  • 安装前请确认项目技术栈和构建方式。

SKILL.md

Form Systems & Input Patterns

Build accessible, user-friendly forms with systematic component selection, validation strategies, and UX best practices.

Purpose

Forms are the primary mechanism for user data input in web applications. This skill provides systematic guidance for:

  • Selecting appropriate input types based on data requirements
  • Implementing validation strategies that enhance user experience
  • Ensuring WCAG 2.1 AA accessibility compliance
  • Creating complex patterns (multi-step wizards, conditional fields, dynamic forms)

When to Use This Skill

Triggers:

  • Building contact forms, login/registration flows, checkout processes
  • Implementing surveys, questionnaires, or settings pages
  • Adding validation to user inputs
  • Creating multi-step workflows or wizards
  • Ensuring form accessibility
  • Collecting structured data (addresses, credit cards, dates)

Common Requests:

  • "Create a registration form with validation"
  • "Build a multi-step checkout flow"
  • "Add inline validation to email input"
  • "Make this form accessible for screen readers"
  • "Implement a survey with conditional questions"

Universal Form Concepts

Component Selection Framework

The Golden Rule: Data Type → Input Component → Validation Pattern

Start by identifying the data type to collect, then select the appropriate component:

Quick Reference:

  • Short text (<100 chars) → Text input, Email input, Password input
  • Long text (>100 chars) → Textarea, Rich text editor, Code editor
  • Numeric → Number input, Currency input, Slider
  • Date/Time → Date picker, Time picker, Date range picker
  • Boolean → Checkbox, Toggle switch
  • Single choice → Radio group (2-7 options), Select dropdown (>7 options), Autocomplete (>15 options)
  • Multiple choice → Checkbox group, Multi-select, Tag input
  • File/Media → File upload, Image upload
  • Structured → Address input, Credit card input, Phone number input

For detailed decision tree: See references/decision-tree.md

Validation Timing Strategies

Recommended Default: On Blur with Progressive Enhancement

Field pristine (never touched): No validation
User typing: No errors shown
On blur (field loses focus): Validate and show errors
After first error: Switch to onChange for that field
On fix: Show success immediately

Validation Modes:

  1. On Submit - Validate when form submitted (simple forms)
  2. On Blur - Validate when field loses focus (RECOMMENDED for most forms)
  3. On Change - Validate as user types (password strength, availability checks)
  4. Debounced - Validate after user stops typing (API-based validation)
  5. Progressive - Start with on-blur, switch to on-change after first error

For complete validation guide: See references/validation-concepts.md

Accessibility Requirements (WCAG 2.1 AA)

Critical Accessibility Patterns:

Labels and Instructions:

  • Every input must have an associated <label> or aria-label
  • Labels must be visible and descriptive
  • Required fields clearly indicated (not by color alone)
  • Never use placeholder text as label replacement
  • Provide help text for complex inputs

Keyboard Navigation:

  • Logical, sequential tab order
  • All inputs keyboard accessible
  • Custom components support arrow keys
  • Escape key dismisses modals/popovers
  • Focus visible (outline or custom indicator)

Error Handling:

  • Errors programmatically associated with inputs (aria-describedby)
  • Error messages clear and actionable
  • Errors announced by screen readers (aria-live)
  • Focus moves to first error on submit
  • Errors not conveyed by color alone

ARIA Attributes:

  • aria-required="true" for required fields
  • aria-invalid="true" when validation fails
  • aria-describedby linking to help/error text
  • role="group" for related inputs
  • aria-live="polite" for validation messages

For complete accessibility checklist: See references/accessibility-forms.md

UX Best Practices

Modern Form UX Principles (2024-2025):

  1. Progressive Disclosure - Show only essential fields initially, reveal advanced options on demand
  2. Smart Defaults - Pre-fill known information, suggest values based on context
  3. Inline Validation with Positive Feedback - Show green checkmark on valid input, provide helpful error messages
  4. Mobile-First - Large touch targets (44px minimum), appropriate keyboard types
  5. Reduce Cognitive Load - Group related fields, use clear labels, provide examples
  6. Error Prevention - Constraints prevent invalid input, autocomplete reduces typos
  7. Autosave and Recovery - Save draft state automatically, warn before losing data

For detailed UX patterns: See references/ux-patterns.md

Error Message Best Practices

Good Error Message Formula:

  1. What's wrong - "Email address is not valid"
  2. Why it matters - "We need this to send your receipt"
  3. How to fix - "Format: name@example.com"

Examples:

Bad: "Invalid input" ✅ Good: "Email address must include @ symbol (e.g., name@example.com)"

Bad: "Error" ✅ Good: "Password must be at least 8 characters long"

Bad: "Field required" ✅ Good: "Please enter your email address so we can send order confirmation"

Tone Guidelines:

  • Conversational, not robotic
  • Helpful, not blaming
  • Specific, not generic
  • Actionable, not just descriptive

Language-Specific Implementations

This skill provides universal form concepts above, with language-specific implementations below.

JavaScript/React (PRIMARY)

Recommended Stack:

  • React Hook Form - Form state management (best performance, 8KB bundle)
  • Zod - TypeScript-first schema validation
  • Radix UI or React Aria - Accessible component primitives

Quick Start:

import { useForm } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import * as z from 'zod';

// Define validation schema
const schema = z.object({
  email: z.string().email('Invalid email address'),
  password: z.string().min(8, 'Password must be at least 8 characters'),
});

type FormData = z.infer<typeof schema>;

function LoginForm() {
  const { register, handleSubmit, formState: { errors } } = useForm<FormData>({
    resolver: zodResolver(schema),
    mode: 'onBlur', // Validate on blur (recommended)
  });

  const onSubmit = (data: FormData) => {
    console.log(data);
  };

  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <label htmlFor="email">Email</label>
      <input id="email" {...register('email')} type="email" />
      {errors.email && <span role="alert">{errors.email.message}</span>}

      <label htmlFor="password">Password</label>
      <input id="password" {...register('password')} type="password" />
      {errors.password && <span role="alert">{errors.password.message}</span>}

      <button type="submit">Login</button>
    </form>
  );
}

Detailed JavaScript/React Documentation:

  • references/javascript/react-hook-form.md - Complete React Hook Form guide
  • references/javascript/zod-validation.md - Zod schema validation patterns
  • references/javascript/examples/ - Working code examples

Python (PRIMARY)

Recommended Stack:

  • Pydantic - Data validation and settings management (runtime validation, type-safe)
  • FastAPI - Modern async web framework with automatic validation
  • WTForms - Flask/Django form handling (when using traditional frameworks)

Quick Start (FastAPI + Pydantic):

from fastapi import FastAPI, HTTPException
from pydantic import BaseModel, EmailStr, Field, validator

app = FastAPI()

# Define validation schema
class LoginForm(BaseModel):
    email: EmailStr  # Validates email format
    password: str = Field(..., min_length=8, description="Password must be at least 8 characters")

    @validator('password')
    def validate_password_strength(cls, v):
        if not any(char.isdigit() for char in v):
            raise ValueError('Password must contain at least one number')
        if not any(char.isupper() for char in v):
            raise ValueError('Password must contain at least one uppercase letter')
        return v

@app.post("/api/login")
async def login(form_data: LoginForm):
    # Pydantic automatically validates incoming data
    # If validation fails, returns 422 with error details
    return {"message": "Login successful", "email": form_data.email}

# Example error response (automatic):
# {
#   "detail": [
#     {
#       "loc": ["body", "email"],
#       "msg": "value is not a valid email address",
#       "type": "value_error.email"
#     }
#   ]
# }

Detailed Python Documentation:

  • references/python/pydantic-forms.md - Pydantic validation patterns
  • references/python/wtforms.md - WTForms for Flask/Django
  • references/python/examples/ - Working code examples

Rust (FUTURE)

Planned Libraries:

  • validator - Struct field validation
  • Leptos / Yew - Reactive web frameworks

*Rust implementation will be added when needed.*

Go (FUTURE)

Planned Libraries:

  • Templ - Type-safe HTML templating
  • html/template - Standard library templating

*Go implementation will be added when needed.*

Component Tiers

Tier 1: Basic Input Components

Text-Based:

  • Text field (single-line)
  • Textarea (multi-line)
  • Email input (with validation)
  • Password input (with visibility toggle)
  • Number input (with step controls)
  • Tel input (with formatting)
  • URL input (with protocol validation)
  • Search input (with clear button)

Selection:

  • Radio group (2-7 options)
  • Checkbox (boolean or multiple)
  • Toggle switch (clear on/off states)
  • Select dropdown (many options)
  • Multi-select (multiple selections)

Date & Time:

  • Date picker (calendar interface)
  • Time picker (hour/minute)
  • Date range picker (start and end)
  • DateTime picker (combined)

Tier 2: Rich Input Components

Advanced Selection:

  • Autocomplete/Combobox (type to filter)
  • Tag input (multiple tags)
  • Transfer list (move items between lists)
  • Listbox (keyboard-navigable)

Specialized:

  • Color picker (hex, RGB, HSL)
  • File uploader (single, multiple, drag-drop)
  • Image uploader (crop, resize, preview)
  • Slider/Range (single or range)
  • Rating input (stars, numeric, emoji)
  • Rich text editor (formatting, media)
  • Code editor (syntax highlighting)
  • Markdown editor (preview, toolbar)

Structured Data:

  • Address input (multi-field)
  • Credit card input (formatted)
  • Phone number (international)
  • Currency input (symbol, decimal)

Tier 3: Complex Form Patterns

Multi-Step Forms:

  • Linear wizard (step 1 → 2 → 3)
  • Branching wizard (conditional steps)
  • Progress indicators
  • Save and resume (draft state)
  • Review and submit page

Dynamic Forms:

  • Conditional fields (show/hide)
  • Repeating sections (add/remove)
  • Field arrays (dynamic list)
  • Nested forms (complex objects)

Advanced Patterns:

  • Inline editing (click to edit)
  • Bulk editing (multiple records)
  • Autosave (periodic or on change)
  • Optimistic updates
  • Undo/redo functionality

Integration with Design Tokens

All form components use the design-tokens skill for visual styling, enabling theme switching (light/dark/high-contrast/custom brands).

Key Token Categories:

  • Color - Input backgrounds, borders, text, error/success states
  • Spacing - Padding, gaps between fields, label margins
  • Typography - Font sizes, weights for inputs, labels, errors
  • Borders - Border width, radius, focus ring
  • Shadows - Focus indicators, elevation

See: skills/design-tokens/ for complete theming documentation.

Common Use Cases

Contact Form

// Basic contact form with validation
// See: references/javascript/examples/basic-form.tsx

Registration Flow

// Multi-step registration with password strength
// See: references/javascript/examples/multi-step-wizard.tsx

Inline Validation

// Real-time validation with debouncing
// See: references/javascript/examples/inline-validation.tsx

Survey with Conditional Logic

// Dynamic form with conditional fields
// See: references/javascript/examples/conditional-form.tsx

Settings Page

// Mixed input types with autosave
// See: references/javascript/examples/settings-form.tsx

Quick Decision Guide

Question: What input should I use? → See references/decision-tree.md for complete decision tree

Question: When should I validate? → Use on-blur with progressive enhancement (on-change after first error) → See references/validation-concepts.md for all strategies

Question: How do I make my form accessible? → Use semantic HTML, label all inputs, support keyboard navigation → See references/accessibility-forms.md for WCAG 2.1 checklist

Question: How do I handle complex validation? → Use schema validation (Zod for TypeScript, Yup for JavaScript) → See references/javascript/zod-validation.md for patterns

Question: How do I build a multi-step form? → Use state management with progress tracking → See references/javascript/examples/multi-step-wizard.tsx

Best Practices Summary

  1. Start with semantic HTML - Use native <input>, <select>, <textarea> when possible
  2. Label everything - Every input needs a visible, descriptive label
  3. Validate on blur - Best UX balance for most forms
  4. Provide helpful errors - Explain what's wrong and how to fix it
  5. Support keyboard navigation - Tab order, arrow keys, escape to dismiss
  6. Mobile-first - Large touch targets, appropriate keyboards
  7. Progressive disclosure - Don't overwhelm with all fields at once
  8. Autosave when possible - Prevent data loss
  9. Test with screen readers - Ensure ARIA attributes work correctly
  10. Use design tokens - Consistent styling, theme support

Additional Resources

  • references/decision-tree.md - Complete component selection framework
  • references/validation-concepts.md - All validation strategies and patterns
  • references/accessibility-forms.md - WCAG 2.1 AA compliance checklist
  • references/ux-patterns.md - Modern form UX best practices
  • references/javascript/ - JavaScript/React implementation guides

*Form Builder v1.1 - Enhanced*

🔄 Workflow

Kaynak: Nielsen Norman Form Design & React Hook Form

Aşama 1: Structure & validation

  • Schema: Zod/Yup ile validasyon şemasını backend ile uyumlu tanımla.
  • Labels: Her input için açık, erişilebilir (htmlFor) etiket koy.
  • Grouping: İlişkili alanları <fieldset> veya görsel gruplarla ayır.

Aşama 2: User Experience

  • Defaults: Akıllı varsayılanlar (ülke, telefon kodu) ekle.
  • Feedback: Hataları submit'ten önce (onBlur) veya yazarken göster.
  • Loading: Submit sırasında butonu disable et ve spinner göster.

Aşama 3: Accessibility

  • Keyboard: Sadece Tab tuşu ile tüm formu doldurabiliyor musun?
  • Error Focus: Hata olduğunda focus ilk hatalı alana gidiyor mu?

Kontrol Noktaları

AşamaDoğrulama
1Zorunlu alanlar (*) açıkça belli mi?
2Enter tuşuna basınca form submit oluyor mu?
3Ekran okuyucu hatayı sesli okuyor mu?

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

27.98%
按下载量换算29

trae

23.58%
按下载量换算24

Antigravity

19.12%
按下载量换算20

windsurf

13.37%
按下载量换算14

github-copilot

7.72%
按下载量换算8

Codex

3.39%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills