com um clique
create-hook
Scaffold a new UI hook with the correct naming, tests, and docblocks
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Scaffold a new UI hook with the correct naming, tests, and docblocks
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Create a changeset entry describing changes to workspace packages
Scaffold a new UI component with the correct folder structure, styles, tests, and docblocks
Scaffold a new class with the correct file structure, naming, tests, and docblocks
Scaffold a new runtime type guard with the correct naming and docblocks
Scaffold a new utility function with the correct naming, tests, and docblocks
Write tests following this project's testing conventions, file patterns, and placement rules
| name | create-hook |
| description | Scaffold a new UI hook with the correct naming, tests, and docblocks |
| user-invocable | false |
When creating a new UI hook in this project, follow these conventions exactly.
src/ui-hooks/
├── useMyHook.ts
└── specs/
└── useMyHook.unit.tsx
use prefix. Filename matches the hook name.*.unit.tsx file.src/ui-hooks/use<HookName>.ts with a single named exportsrc/ui-hooks/specs/use<HookName>.unit.tsx with unit testssrc/index.ts if the hook is part of the public APIpnpm run check to verify