← Back to list

data-modeling
by jhlee0409
세상에서 가장 맛있는 사이드 프로젝트 레스토랑
⭐ 0🍴 0📅 Jan 3, 2026
SKILL.md
name: data-modeling description: Firestore 데이터 모델링과 스키마 설계 패턴을 적용합니다. 새 컬렉션 추가, 관계 설계, 인덱스 최적화, 데이터 마이그레이션 시 사용하세요. NoSQL 특성에 맞는 비정규화 전략을 포함합니다. allowed-tools: Read, Glob, Grep
Data Modeling Skill
Instructions
- Denormalize frequently accessed data (NoSQL has no joins)
- Use composite keys for unique relationships (e.g.,
${userId}_${projectId}) - Maintain counters on parent documents for read optimization
- Use soft delete for legal compliance
- Apply consistent timestamp patterns
Current Collections
firestore/
├── projects # Main content
├── users # User profiles
├── comments # Project comments
├── whispers # Private feedback
├── ai_usage # AI rate limiting
├── likes # User-project likes (composite key)
├── digests # Newsletter digests
└── subscriptions # Newsletter subscriptions
Key Patterns
// Denormalization: embed author info
const project = {
authorId: 'user123',
authorName: '홍길동', // Copied from user
}
// Composite Key: unique constraint
const likeId = `${userId}_${projectId}`
// Counter Pattern
await docRef.update({ likes: FieldValue.increment(1) })
For complete schemas, design patterns, and migration strategies, 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