huangjia2019/react 最佳实践
React 组件设计模式、Hooks 使用指南、性能优化技巧
npx skills add https://github.com/huangjia2019/claude-code-engineering --skill React 最佳实践
本技能包含 React 开发的最佳实践,帮助你编写高质量的 React 代码。
当用户需要特定主题时,加载对应章节:
只在用户明确需要时加载完整内容,避免浪费上下文窗口。
// 好的命名
useUser()
useLocalStorage()
useDebounce()
// 不好的命名
fetchUser() // 不是 use 开头
useData() // 太模糊
ComponentName/
├── index.ts # 导出
├── ComponentName.tsx # 组件实现
├── ComponentName.test.tsx
├── ComponentName.styles.ts
└── types.ts # 类型定义
Take huangjia2019/react 最佳实践 from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.