← Back to list

debugging
by jhlee0409
세상에서 가장 맛있는 사이드 프로젝트 레스토랑
⭐ 0🍴 0📅 Jan 3, 2026
SKILL.md
name: debugging description: Debugs common issues in SideDish. Use when fixing errors, investigating bugs, troubleshooting API failures, or resolving build issues. Includes common error patterns, logging strategies, and debugging tools.
Debugging Skill
Instructions
- Check browser console & Network tab
- Review server logs in terminal
- Verify environment variables
- Check Firebase console for auth/db issues
- Clear cache if needed:
rm -rf .next && pnpm dev
Common Error Patterns
401 "인증이 필요합니다"
const { user, isAuthenticated } = useAuth()
console.log('Auth state:', { user, isAuthenticated })
Fix: Wrap with useRequireAuth(), check Firebase config
403 "권한이 없습니다"
console.log('authorId:', doc.data()?.authorId)
console.log('user:', authUser.uid)
Fix: Verify ownership check logic
404 "찾을 수 없습니다"
const doc = await db.collection('projects').doc(id).get()
console.log('exists:', doc.exists, 'id:', id)
Hydration Errors
const [mounted, setMounted] = useState(false)
useEffect(() => setMounted(true), [])
if (!mounted) return null
Quick Checklist
- Browser console errors
- Network tab failed requests
- Environment variables set
- Firebase console status
- TypeScript errors (
pnpm build) - Server logs in terminal
For complete debugging templates and TypeScript error fixes, see reference.md.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon