| 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 |
Development Workflow Guide
Quick Start
Scaffold → Implementation → Testing → Documentation → Review → Changeset → Merge
Workflow Steps
1. Scaffold
yarn scaffold useNewHook --type h
yarn scaffold MyComponent --type c
2. Implementation
- Write JSDoc
- Implement functionality
- Ensure accurate TypeScript types
3. Testing (100% coverage required)
yarn test:spec
yarn test:coverage
- SSR testing required
- Handle edge cases
4. Documentation
- @description, @param, @returns, @example
5. Review
yarn test
yarn test:type
yarn test:lint
6. Changeset
yarn changeset
7. Merge
git checkout -b feat/add-use-new-hook
git add . && git commit -m "feat: add useNewHook"
gh pr create
References