← Back to list

react-tooling
by HoangNguyen0403
A collection of Agent Skills Standard and Best Practice for Programming Languages, Frameworks that help our AI Agent follow best practies on frameworks and programming laguages
⭐ 111🍴 40📅 Jan 23, 2026
SKILL.md
name: React Tooling description: Debugging, build analysis, and ecosystem tools. metadata: labels: [react, tooling, debug, performance] triggers: files: ['package.json'] keywords: [devtool, bundle, strict mode, profile]
React Tooling
Priority: P2 (OPTIONAL)
Tools for analysis and debugging.
Implementation Guidelines
- DevTools: Use "Highlight Updates" to spot re-renders.
- Debugger:
useDebugValuefor custom hooks. - Performance:
why-did-you-renderto catch wasted renders. - Bundle:
source-map-explorerorbundle-visualizer. - Linting:
eslint-plugin-react-hooks(Errors) +react-refresh. - Strict Mode: Enable for double-invoke checks (effects/reducers).
Code
// Debugging Hooks
useDebugValue(isOnline ? 'Online' : 'Offline');
// why-did-you-render
if (process.env.NODE_ENV === 'development') {
const whyDidYouRender = require('@welldone-software/why-did-you-render');
whyDidYouRender(React, {
trackAllPureComponents: true,
});
}
Score
Total Score
85/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
✓人気
GitHub Stars 100以上
+5
✓最近の活動
1ヶ月以内に更新
+10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

