원클릭으로
development-workflow
Complete workflow from new Hook/Component/Util development to deployment. Use when starting new feature development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Complete workflow from new Hook/Component/Util development to deployment. Use when starting new feature development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design React APIs and abstractions in a React-like way. Covers declarative interfaces, lifecycle-safe abstractions, minimal surfaces, zero-dependency bias, type safety, and documentation.
Review React hooks against design philosophy. Checks return values, SSR safety, state design, effect usage, TypeScript patterns, and performance.
Write React hooks following design philosophy. Covers naming, return values, SSR safety, state design, effect patterns, TypeScript, and performance.
Create branches following repo conventions. Use when creating branches, starting new features.
PR/code review. 100% coverage, SSR safety, JSDoc validation. Use when reviewing code, checking PRs.
Create commits following repo conventions. Use when committing changes, creating commit messages.
| name | development-workflow |
| description | Complete workflow from new Hook/Component/Util development to deployment. Use when starting new feature development. |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
Scaffold → Implementation → Testing → Documentation → Review → Changeset → Merge
yarn scaffold useNewHook --type h # Hook
yarn scaffold MyComponent --type c # Component
yarn test:spec
yarn test:coverage
yarn test # Full validation
yarn test:type # Type check
yarn test:lint # Lint
yarn changeset
# patch: Bug fix
# minor: New feature
# major: Breaking change
git checkout -b feat/add-use-new-hook
git add . && git commit -m "feat: add useNewHook"
gh pr create