blockmatic/basilic-skills已通过检查
SKILL DETAIL
w-form
blockmatic/basilic-skills/w-form
Build a Next.js form using the app's existing mutation path, not a second stack.
安装量 · 405查看来源
Installation
npx skills add https://github.com/blockmatic/basilic-skills --skill w-form
技能文件
SKILL.md
最近同步 · 2026年9月21日
SKILL.md›
---
name: w-form
description: Build a Next.js form using the app's existing mutation path, not a second stack.
disable-model-invocation: true
---
Implement a form in the current Next app. Follow `next-v16` and `shadcn-v3`. If the app already mutates through an API client (Fastify + TanStack Query), do not introduce Server Actions, `useFormStatus`, or `useOptimistic` for those flows.
1. Inspect how neighboring forms submit. Reuse that path.
2. Share one Zod schema for client UX and server validation.
3. Wire accessible labels, errors, pending, and empty/error/success states with existing UI primitives.
4. Run lint and exercise submit, validation failure, and keyboard path.
5. Docs: `/w-docs` if behavior or commands changed.